HomeSort by relevance Sort by last modified time
    Searched refs:resultChars (Results 1 - 3 of 3) sorted by null

  /external/icu/icu4c/source/test/cintltst/
cloctst.c 578 static int32_t UCharsToEscapedAscii(const UChar* utext, int32_t len, char* resultChars, int32_t buflen) {
604 if(utext==NULL || resultChars==NULL || buflen<0) {
620 resultChars[resultLen++]='\\';
621 resultChars[resultLen++]=ESCAPE_MAP[j].escapedChar;
625 u_austrncpy(resultChars + resultLen, &uc, 1);
635 resultChars[resultLen++]='\\';
636 resultChars[resultLen++]='u';
637 resultChars[resultLen++]=HEX_DIGITS[(uc>>12)&0xff];
638 resultChars[resultLen++]=HEX_DIGITS[(uc>>8)&0xff];
639 resultChars[resultLen++]=HEX_DIGITS[(uc>>4)&0xff]
    [all...]
  /packages/inputmethods/LatinIME/native/jni/
com_android_inputmethod_latin_BinaryDictionary.cpp 522 char resultChars[GET_PROPERTY_RESULT_LENGTH];
523 resultChars[0] = '\0';
524 dictionary->getProperty(queryChars, queryUtf8Length, resultChars, GET_PROPERTY_RESULT_LENGTH);
525 return env->NewStringUTF(resultChars);
    [all...]
  /external/icu/icu4c/source/i18n/
repattrn.cpp 575 UChar *resultChars = result.getBuffer(len16);
576 utext_extract(fPattern, 0, nativeLen, resultChars, len16, &status); // unterminated warning

Completed in 79 milliseconds