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

  /packages/inputmethods/LatinIME/native/jni/
com_android_inputmethod_latin_BinaryDictionary.cpp 344 char resultChars[GET_PROPERTY_RESULT_LENGTH];
345 resultChars[0] = '\0';
346 dictionary->getProperty(queryChars, resultChars, GET_PROPERTY_RESULT_LENGTH);
347 return env->NewStringUTF(resultChars);
  /external/icu4c/test/cintltst/
cloctst.c 569 static int32_t UCharsToEscapedAscii(const UChar* utext, int32_t len, char* resultChars, int32_t buflen) {
595 if(utext==NULL || resultChars==NULL || buflen<0) {
611 resultChars[resultLen++]='\\';
612 resultChars[resultLen++]=ESCAPE_MAP[j].escapedChar;
616 u_austrncpy(resultChars + resultLen, &uc, 1);
626 resultChars[resultLen++]='\\';
627 resultChars[resultLen++]='u';
628 resultChars[resultLen++]=HEX_DIGITS[(uc>>12)&0xff];
629 resultChars[resultLen++]=HEX_DIGITS[(uc>>8)&0xff];
630 resultChars[resultLen++]=HEX_DIGITS[(uc>>4)&0xff]
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
repattrn.cpp 568 UChar *resultChars = result.getBuffer(len16);
569 utext_extract(fPattern, 0, nativeLen, resultChars, len16, &status); // unterminated warning
  /external/icu4c/i18n/
repattrn.cpp 543 UChar *resultChars = result.getBuffer(len16);
544 utext_extract(fPattern, 0, nativeLen, resultChars, len16, &status); // unterminated warning

Completed in 113 milliseconds