Home
last modified time | relevance | path

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

/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/cldr/
DCheckSystemFonts.java308 final Integer codepoint2 = sample.get1(); in showSameGlyphs() local
310 out.println("U+" + Utility.hex(codepoint1) + "\t" + "U+" + Utility.hex(codepoint2) in showSameGlyphs()
311 + "\t" + showNfc(codepoint1) + "\t" + showNfc(codepoint2) in showSameGlyphs()
312 + "\t" + showChar(codepoint1, false) + "\t" + showChar(codepoint2, false) in showSameGlyphs()
313 … + "\t" + UCharacter.getExtendedName(codepoint1) + "\t" + UCharacter.getExtendedName(codepoint2) in showSameGlyphs()
315 String line = "U+" + Utility.hex(codepoint1) + "\t" + "U+" + Utility.hex(codepoint2) in showSameGlyphs()
316 + "\t" + showNfc(codepoint1) + "\t" + showNfc(codepoint2) in showSameGlyphs()
317 + "\t" + showChar(codepoint1, false) + "\t" + showChar(codepoint2, true) in showSameGlyphs()
318 + "\t" + showChar(codepoint1, false) + "\t" + showChar(codepoint2, true) in showSameGlyphs()
319 … + "\t" + UCharacter.getExtendedName(codepoint1) + "\t" + UCharacter.getExtendedName(codepoint2) in showSameGlyphs()
/external/libchrome/base/files/
Dfile_path.cc1173 int codepoint2 = HFSReadNextNonIgnorableCodepoint(string2.data(), in HFSFastUnicodeCompare() local
1176 if (codepoint1 != codepoint2) in HFSFastUnicodeCompare()
1177 return (codepoint1 < codepoint2) ? -1 : 1; in HFSFastUnicodeCompare()