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 583 static int32_t UCharsToEscapedAscii(const UChar* utext, int32_t len, char* resultChars, int32_t buflen) {
609 if(utext==NULL || resultChars==NULL || buflen<0) {
625 resultChars[resultLen++]='\\';
626 resultChars[resultLen++]=ESCAPE_MAP[j].escapedChar;
630 u_austrncpy(resultChars + resultLen, &uc, 1);
640 resultChars[resultLen++]='\\';
641 resultChars[resultLen++]='u';
642 resultChars[resultLen++]=HEX_DIGITS[(uc>>12)&0xff];
643 resultChars[resultLen++]=HEX_DIGITS[(uc>>8)&0xff];
644 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 579 UChar *resultChars = result.getBuffer(len16);
580 utext_extract(fPattern, 0, nativeLen, resultChars, len16, &status); // unterminated warning

Completed in 232 milliseconds