Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/wtf/text/
DTextCodecICU.cpp415 UChar outChar; in gbkCallbackEscape() local
416 if (reason == UCNV_UNASSIGNED && (outChar = fallbackForGBK(codePoint))) { in gbkCallbackEscape()
417 const UChar* source = &outChar; in gbkCallbackEscape()
430 if (UChar outChar = fallbackForGBK(codePoint)) { in gbkUrlEscapedEntityCallack() local
431 const UChar* source = &outChar; in gbkUrlEscapedEntityCallack()
445 UChar outChar; in gbkCallbackSubstitute() local
446 if (reason == UCNV_UNASSIGNED && (outChar = fallbackForGBK(codePoint))) { in gbkCallbackSubstitute()
447 const UChar* source = &outChar; in gbkCallbackSubstitute()
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
DCstString.java273 char outChar = (char) (((c >> shift) & 7) + '0'); in toHuman() local
274 if ((outChar != '0') || displayZero) { in toHuman()
275 sb.append(outChar); in toHuman()