Home
last modified time | relevance | path

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

/external/icu/icu4c/source/test/cintltst/
Dcloctst.c610 static int32_t UCharsToEscapedAscii(const UChar* utext, int32_t len, char* resultChars, int32_t buf… in UCharsToEscapedAscii() argument
636 if(utext==NULL || resultChars==NULL || buflen<0) { in UCharsToEscapedAscii()
652 resultChars[resultLen++]='\\'; in UCharsToEscapedAscii()
653 resultChars[resultLen++]=ESCAPE_MAP[j].escapedChar; in UCharsToEscapedAscii()
657 u_austrncpy(resultChars + resultLen, &uc, 1); in UCharsToEscapedAscii()
667 resultChars[resultLen++]='\\'; in UCharsToEscapedAscii()
668 resultChars[resultLen++]='u'; in UCharsToEscapedAscii()
669 resultChars[resultLen++]=HEX_DIGITS[(uc>>12)&0xff]; in UCharsToEscapedAscii()
670 resultChars[resultLen++]=HEX_DIGITS[(uc>>8)&0xff]; in UCharsToEscapedAscii()
671 resultChars[resultLen++]=HEX_DIGITS[(uc>>4)&0xff]; in UCharsToEscapedAscii()
[all …]
/external/icu/icu4c/source/i18n/
Drepattrn.cpp590 UChar *resultChars = result.getBuffer(len16); in pattern() local
591 utext_extract(fPattern, 0, nativeLen, resultChars, len16, &status); // unterminated warning in pattern()