• Home
  • Raw
  • Download

Lines Matching refs:srcChars

441   inline int8_t compare(ConstChar16Ptr srcChars,
460 const char16_t *srcChars) const;
481 const char16_t *srcChars,
595 inline int8_t compareCodePointOrder(ConstChar16Ptr srcChars,
619 const char16_t *srcChars) const;
644 const char16_t *srcChars,
768 inline int8_t caseCompare(ConstChar16Ptr srcChars,
794 const char16_t *srcChars,
821 const char16_t *srcChars,
886 inline UBool startsWith(ConstChar16Ptr srcChars,
898 inline UBool startsWith(const char16_t *srcChars,
933 inline UBool endsWith(ConstChar16Ptr srcChars,
946 inline UBool endsWith(const char16_t *srcChars,
1023 inline int32_t indexOf(const char16_t *srcChars,
1039 inline int32_t indexOf(ConstChar16Ptr srcChars,
1060 int32_t indexOf(const char16_t *srcChars,
1206 inline int32_t lastIndexOf(const char16_t *srcChars,
1222 inline int32_t lastIndexOf(ConstChar16Ptr srcChars,
1243 int32_t lastIndexOf(const char16_t *srcChars,
1995 inline UnicodeString& setTo(const char16_t *srcChars,
2189 inline UnicodeString& append(const char16_t *srcChars,
2202 inline UnicodeString& append(ConstChar16Ptr srcChars,
2267 const char16_t *srcChars,
2281 ConstChar16Ptr srcChars,
2367 const char16_t *srcChars,
2385 ConstChar16Ptr srcChars,
3501 const char16_t *srcChars,
3514 const char16_t *srcChars,
3529 const char16_t *srcChars,
3569 const char16_t *srcChars,
3574 UnicodeString& doAppend(const char16_t *srcChars, int32_t srcStart, int32_t srcLength);
3991 UnicodeString::compare(ConstChar16Ptr srcChars, in compare() argument
3993 { return doCompare(0, length(), srcChars, 0, srcLength); } in compare()
4006 const char16_t *srcChars) const in compare() argument
4007 { return doCompare(start, _length, srcChars, 0, _length); } in compare()
4012 const char16_t *srcChars, in compare() argument
4015 { return doCompare(start, _length, srcChars, srcStart, srcLength); } in compare()
4052 UnicodeString::compareCodePointOrder(ConstChar16Ptr srcChars, in compareCodePointOrder() argument
4054 { return doCompareCodePointOrder(0, length(), srcChars, 0, srcLength); } in compareCodePointOrder()
4067 const char16_t *srcChars) const in compareCodePointOrder() argument
4068 { return doCompareCodePointOrder(start, _length, srcChars, 0, _length); } in compareCodePointOrder()
4073 const char16_t *srcChars, in compareCodePointOrder() argument
4076 { return doCompareCodePointOrder(start, _length, srcChars, srcStart, srcLength); } in compareCodePointOrder()
4117 UnicodeString::caseCompare(ConstChar16Ptr srcChars, in caseCompare() argument
4120 return doCaseCompare(0, length(), srcChars, 0, srcLength, options); in caseCompare()
4136 const char16_t *srcChars, in caseCompare() argument
4138 return doCaseCompare(start, _length, srcChars, 0, _length, options); in caseCompare()
4144 const char16_t *srcChars, in caseCompare() argument
4148 return doCaseCompare(start, _length, srcChars, srcStart, srcLength, options); in caseCompare()
4195 UnicodeString::indexOf(const char16_t *srcChars, in indexOf() argument
4199 return indexOf(srcChars, 0, srcLength, start, length() - start); in indexOf()
4203 UnicodeString::indexOf(ConstChar16Ptr srcChars, in indexOf() argument
4207 { return indexOf(srcChars, 0, srcLength, start, _length); } in indexOf()
4244 UnicodeString::lastIndexOf(ConstChar16Ptr srcChars, in lastIndexOf() argument
4248 { return lastIndexOf(srcChars, 0, srcLength, start, _length); } in lastIndexOf()
4251 UnicodeString::lastIndexOf(const char16_t *srcChars, in lastIndexOf() argument
4255 return lastIndexOf(srcChars, 0, srcLength, start, length() - start); in lastIndexOf()
4338 UnicodeString::startsWith(ConstChar16Ptr srcChars, int32_t srcLength) const { in startsWith() argument
4340 srcLength = u_strlen(toUCharPtr(srcChars)); in startsWith()
4342 return doCompare(0, srcLength, srcChars, 0, srcLength) == 0; in startsWith()
4346 UnicodeString::startsWith(const char16_t *srcChars, int32_t srcStart, int32_t srcLength) const { in startsWith() argument
4348 srcLength = u_strlen(toUCharPtr(srcChars)); in startsWith()
4350 return doCompare(0, srcLength, srcChars, srcStart, srcLength) == 0; in startsWith()
4368 UnicodeString::endsWith(ConstChar16Ptr srcChars, in endsWith() argument
4371 srcLength = u_strlen(toUCharPtr(srcChars)); in endsWith()
4374 srcChars, 0, srcLength) == 0; in endsWith()
4378 UnicodeString::endsWith(const char16_t *srcChars, in endsWith() argument
4382 srcLength = u_strlen(toUCharPtr(srcChars + srcStart)); in endsWith()
4385 srcChars, srcStart, srcLength) == 0; in endsWith()
4408 ConstChar16Ptr srcChars, in replace() argument
4410 { return doReplace(start, _length, srcChars, 0, srcLength); } in replace()
4415 const char16_t *srcChars, in replace() argument
4418 { return doReplace(start, _length, srcChars, srcStart, srcLength); } in replace()
4600 UnicodeString::setTo(const char16_t *srcChars, in setTo() argument
4604 return doReplace(0, length(), srcChars, 0, srcLength); in setTo()
4632 UnicodeString::append(const char16_t *srcChars, in append() argument
4635 { return doAppend(srcChars, srcStart, srcLength); } in append()
4638 UnicodeString::append(ConstChar16Ptr srcChars, in append() argument
4640 { return doAppend(srcChars, 0, srcLength); } in append()
4673 const char16_t *srcChars, in insert() argument
4676 { return doReplace(start, 0, srcChars, srcStart, srcLength); } in insert()
4680 ConstChar16Ptr srcChars, in insert() argument
4682 { return doReplace(start, 0, srcChars, 0, srcLength); } in insert()