Home
last modified time | relevance | path

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

/external/icu/icu4c/source/test/cintltst/
Dcloctst.c588 static int32_t UCharsToEscapedAscii(const UChar* utext, int32_t len, char* resultChars, int32_t buf… in UCharsToEscapedAscii() argument
614 if(utext==NULL || resultChars==NULL || buflen<0) { in UCharsToEscapedAscii()
630 resultChars[resultLen++]='\\'; in UCharsToEscapedAscii()
631 resultChars[resultLen++]=ESCAPE_MAP[j].escapedChar; in UCharsToEscapedAscii()
635 u_austrncpy(resultChars + resultLen, &uc, 1); in UCharsToEscapedAscii()
645 resultChars[resultLen++]='\\'; in UCharsToEscapedAscii()
646 resultChars[resultLen++]='u'; in UCharsToEscapedAscii()
647 resultChars[resultLen++]=HEX_DIGITS[(uc>>12)&0xff]; in UCharsToEscapedAscii()
648 resultChars[resultLen++]=HEX_DIGITS[(uc>>8)&0xff]; in UCharsToEscapedAscii()
649 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()