Home
last modified time | relevance | path

Searched refs:srcChars (Results 1 – 5 of 5) sorted by relevance

/external/icu4c/common/unicode/
Dunistr.h333 inline int8_t compare(const UChar *srcChars,
352 const UChar *srcChars) const;
373 const UChar *srcChars,
487 inline int8_t compareCodePointOrder(const UChar *srcChars,
511 const UChar *srcChars) const;
536 const UChar *srcChars,
660 inline int8_t caseCompare(const UChar *srcChars,
686 const UChar *srcChars,
713 const UChar *srcChars,
778 inline UBool startsWith(const UChar *srcChars,
[all …]
/external/icu4c/common/
Dunistr_case.cpp40 const UChar *srcChars, in doCaseCompare() argument
54 if(srcChars == NULL) { in doCaseCompare()
62 srcChars += srcStart; in doCaseCompare()
64 if(chars != srcChars) { in doCaseCompare()
66 int32_t result=u_strcmpFold(chars, length, srcChars, srcLength, in doCaseCompare()
74 srcLength = u_strlen(srcChars + srcStart); in doCaseCompare()
Dunistr.cpp572 const UChar *srcChars, in doCompare() argument
585 if(srcChars == NULL) { in doCompare()
593 srcChars += srcStart; in doCompare()
600 srcLength = u_strlen(srcChars + srcStart); in doCompare()
625 if(minLength > 0 && chars != srcChars) { in doCompare()
630 result = uprv_memcmp(chars, srcChars, minLength * sizeof(UChar)); in doCompare()
637 result = ((int32_t)*(chars++) - (int32_t)*(srcChars++)); in doCompare()
651 const UChar *srcChars, in doCompareCodePointOrder() argument
664 if(srcChars == NULL) { in doCompareCodePointOrder()
668 …int32_t diff = uprv_strCompare(getArrayStart() + start, length, srcChars + srcStart, srcLength, FA… in doCompareCodePointOrder()
[all …]
/external/icu4c/test/cintltst/
Dcbiditst.c85 const char *srcChars, const char *destChars,
88 static UBool checkResultLength(UBiDi *pBiDi, const char *srcChars,
496 static UBool checkWhatYouCan(UBiDi *bidi, const char *srcChars, const char *dstChars) in checkWhatYouCan() argument
531 accumDst[idx] = srcChars[i]; in checkWhatYouCan()
532 if (!matchingPair(bidi, i, srcChars[i], dstChars[idx])) { in checkWhatYouCan()
543 printCaseInfo(bidi, srcChars, dstChars); in checkWhatYouCan()
560 printCaseInfo(bidi, srcChars, dstChars); in checkWhatYouCan()
580 if (!matchingPair(bidi, idx, srcChars[idx], dstChars[i])) { in checkWhatYouCan()
591 printCaseInfo(bidi, srcChars, dstChars); in checkWhatYouCan()
608 printCaseInfo(bidi, srcChars, dstChars); in checkWhatYouCan()
[all …]
/external/collada/src/dae/
DdaeAtomicType.cpp592 daeStringRefType::stringToMemory(daeChar* srcChars, daeChar* dstMemory) in stringToMemory() argument
594 *((daeStringRef*)dstMemory) = srcChars; in stringToMemory()
640 daeBoolType::stringToMemory(daeChar* srcChars, daeChar* dstMemory) in stringToMemory() argument
642 if (strncmp(srcChars,"true",4)==0 || strncmp(srcChars,"1",1)==0) in stringToMemory()