Home
last modified time | relevance | path

Searched refs:resultChars (Results 1 – 2 of 2) sorted by relevance

/external/icu/icu4c/source/test/cintltst/
Dcloctst.c583 static int32_t UCharsToEscapedAscii(const UChar* utext, int32_t len, char* resultChars, int32_t buf… in UCharsToEscapedAscii() argument
609 if(utext==NULL || resultChars==NULL || buflen<0) { in UCharsToEscapedAscii()
625 resultChars[resultLen++]='\\'; in UCharsToEscapedAscii()
626 resultChars[resultLen++]=ESCAPE_MAP[j].escapedChar; in UCharsToEscapedAscii()
630 u_austrncpy(resultChars + resultLen, &uc, 1); in UCharsToEscapedAscii()
640 resultChars[resultLen++]='\\'; in UCharsToEscapedAscii()
641 resultChars[resultLen++]='u'; in UCharsToEscapedAscii()
642 resultChars[resultLen++]=HEX_DIGITS[(uc>>12)&0xff]; in UCharsToEscapedAscii()
643 resultChars[resultLen++]=HEX_DIGITS[(uc>>8)&0xff]; in UCharsToEscapedAscii()
644 resultChars[resultLen++]=HEX_DIGITS[(uc>>4)&0xff]; in UCharsToEscapedAscii()
[all …]
/external/icu/icu4c/source/i18n/
Drepattrn.cpp579 UChar *resultChars = result.getBuffer(len16); in pattern() local
580 utext_extract(fPattern, 0, nativeLen, resultChars, len16, &status); // unterminated warning in pattern()