mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 05:55:35 +00:00
ICU-12140 Pass StringPiece by value, internally.
R=markus.icu@gmail.com Review URL: https://codereview.appspot.com/305000043 . X-SVN-Rev: 39024
This commit is contained in:
parent
5a2700f313
commit
de579d3bf9
13 changed files with 19 additions and 19 deletions
|
@ -37,7 +37,7 @@ class BytesTrieElement : public UMemory {
|
|||
public:
|
||||
// Use compiler's default constructor, initializes nothing.
|
||||
|
||||
void setTo(const StringPiece &s, int32_t val, CharString &strings, UErrorCode &errorCode);
|
||||
void setTo(StringPiece s, int32_t val, CharString &strings, UErrorCode &errorCode);
|
||||
|
||||
StringPiece getString(const CharString &strings) const {
|
||||
int32_t offset=stringOffset;
|
||||
|
@ -88,7 +88,7 @@ private:
|
|||
};
|
||||
|
||||
void
|
||||
BytesTrieElement::setTo(const StringPiece &s, int32_t val,
|
||||
BytesTrieElement::setTo(StringPiece s, int32_t val,
|
||||
CharString &strings, UErrorCode &errorCode) {
|
||||
if(U_FAILURE(errorCode)) {
|
||||
return;
|
||||
|
|
|
@ -146,7 +146,7 @@ UBool CharString::ensureCapacity(int32_t capacity,
|
|||
return TRUE;
|
||||
}
|
||||
|
||||
CharString &CharString::appendPathPart(const StringPiece &s, UErrorCode &errorCode) {
|
||||
CharString &CharString::appendPathPart(StringPiece s, UErrorCode &errorCode) {
|
||||
if(U_FAILURE(errorCode)) {
|
||||
return *this;
|
||||
}
|
||||
|
|
|
@ -41,7 +41,7 @@ template class U_COMMON_API MaybeStackArray<char, 40>;
|
|||
class U_COMMON_API CharString : public UMemory {
|
||||
public:
|
||||
CharString() : len(0) { buffer[0]=0; }
|
||||
CharString(const StringPiece &s, UErrorCode &errorCode) : len(0) {
|
||||
CharString(StringPiece s, UErrorCode &errorCode) : len(0) {
|
||||
buffer[0]=0;
|
||||
append(s, errorCode);
|
||||
}
|
||||
|
@ -78,7 +78,7 @@ public:
|
|||
CharString &truncate(int32_t newLength);
|
||||
|
||||
CharString &append(char c, UErrorCode &errorCode);
|
||||
CharString &append(const StringPiece &s, UErrorCode &errorCode) {
|
||||
CharString &append(StringPiece s, UErrorCode &errorCode) {
|
||||
return append(s.data(), s.length(), errorCode);
|
||||
}
|
||||
CharString &append(const CharString &s, UErrorCode &errorCode) {
|
||||
|
@ -117,7 +117,7 @@ public:
|
|||
* First appends a U_FILE_SEP_CHAR if necessary.
|
||||
* Does nothing if s is empty.
|
||||
*/
|
||||
CharString &appendPathPart(const StringPiece &s, UErrorCode &errorCode);
|
||||
CharString &appendPathPart(StringPiece s, UErrorCode &errorCode);
|
||||
|
||||
/**
|
||||
* Appends a U_FILE_SEP_CHAR if this string is not empty
|
||||
|
|
|
@ -42,9 +42,9 @@ U_NAMESPACE_BEGIN
|
|||
* in a "const char*" or a "string" wherever a "StringPiece" is
|
||||
* expected.
|
||||
*
|
||||
* Functions or methods may use const StringPiece& parameters to accept either
|
||||
* a "const char*" or a "string" value that will be implicitly converted to
|
||||
* a StringPiece.
|
||||
* Functions or methods may use StringPiece parameters to accept either a
|
||||
* "const char*" or a "string" value that will be implicitly converted to a
|
||||
* StringPiece.
|
||||
*
|
||||
* Systematic usage of StringPiece is encouraged as it will reduce unnecessary
|
||||
* conversions from "const char*" to "string" and back again.
|
||||
|
|
|
@ -3394,7 +3394,7 @@ protected:
|
|||
|
||||
private:
|
||||
// For char* constructors. Could be made public.
|
||||
UnicodeString &setToUTF8(const StringPiece &utf8);
|
||||
UnicodeString &setToUTF8(StringPiece utf8);
|
||||
// For extract(char*).
|
||||
// We could make a toUTF8(target, capacity, errorCode) public but not
|
||||
// this version: New API will be cleaner if we make callers create substrings
|
||||
|
|
|
@ -1301,7 +1301,7 @@ UnicodeString::setTo(UChar *buffer,
|
|||
return *this;
|
||||
}
|
||||
|
||||
UnicodeString &UnicodeString::setToUTF8(const StringPiece &utf8) {
|
||||
UnicodeString &UnicodeString::setToUTF8(StringPiece utf8) {
|
||||
unBogus();
|
||||
int32_t length = utf8.length();
|
||||
int32_t capacity;
|
||||
|
|
|
@ -156,7 +156,7 @@ private:
|
|||
IDNAInfo &info, UErrorCode &errorCode) const;
|
||||
|
||||
void
|
||||
processUTF8(const StringPiece &src,
|
||||
processUTF8(StringPiece src,
|
||||
UBool isLabel, UBool toASCII,
|
||||
ByteSink &dest,
|
||||
IDNAInfo &info, UErrorCode &errorCode) const;
|
||||
|
@ -403,7 +403,7 @@ UTS46::process(const UnicodeString &src,
|
|||
}
|
||||
|
||||
void
|
||||
UTS46::processUTF8(const StringPiece &src,
|
||||
UTS46::processUTF8(StringPiece src,
|
||||
UBool isLabel, UBool toASCII,
|
||||
ByteSink &dest,
|
||||
IDNAInfo &info, UErrorCode &errorCode) const {
|
||||
|
|
|
@ -353,7 +353,7 @@ CompactDecimalFormat::format(
|
|||
|
||||
UnicodeString&
|
||||
CompactDecimalFormat::format(
|
||||
const StringPiece& /* number */,
|
||||
StringPiece /* number */,
|
||||
UnicodeString& appendTo,
|
||||
FieldPositionIterator* /* posIter */,
|
||||
UErrorCode& status) const {
|
||||
|
|
|
@ -427,7 +427,7 @@ DecimalFormatImpl::format(
|
|||
|
||||
UnicodeString &
|
||||
DecimalFormatImpl::format(
|
||||
const StringPiece &number,
|
||||
StringPiece number,
|
||||
UnicodeString &appendTo,
|
||||
FieldPositionIterator *posIter,
|
||||
UErrorCode &status) const {
|
||||
|
|
|
@ -219,7 +219,7 @@ UnicodeString &format(
|
|||
FieldPositionIterator *posIter,
|
||||
UErrorCode &status) const;
|
||||
UnicodeString &format(
|
||||
const StringPiece &number,
|
||||
StringPiece number,
|
||||
UnicodeString &appendTo,
|
||||
FieldPositionIterator *posIter,
|
||||
UErrorCode &status) const;
|
||||
|
|
|
@ -736,7 +736,7 @@ DigitList::set(int64_t source)
|
|||
* be acceptable for a public API.
|
||||
*/
|
||||
void
|
||||
DigitList::set(const StringPiece &source, UErrorCode &status, uint32_t /*fastpathBits*/) {
|
||||
DigitList::set(StringPiece source, UErrorCode &status, uint32_t /*fastpathBits*/) {
|
||||
if (U_FAILURE(status)) {
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -269,7 +269,7 @@ public:
|
|||
* @param source The value to be set. The string must be nul-terminated.
|
||||
* @param fastpathBits special flags for fast parsing
|
||||
*/
|
||||
void set(const StringPiece &source, UErrorCode &status, uint32_t fastpathBits = 0);
|
||||
void set(StringPiece source, UErrorCode &status, uint32_t fastpathBits = 0);
|
||||
|
||||
/**
|
||||
* Multiply this = this * arg
|
||||
|
|
|
@ -276,7 +276,7 @@ public:
|
|||
* @return Reference to 'appendTo' parameter.
|
||||
* @internal
|
||||
*/
|
||||
virtual UnicodeString& format(const StringPiece &number,
|
||||
virtual UnicodeString& format(StringPiece number,
|
||||
UnicodeString& appendTo,
|
||||
FieldPositionIterator* posIter,
|
||||
UErrorCode& status) const;
|
||||
|
|
Loading…
Add table
Reference in a new issue