| /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
| CjkBreakEngine.java | 107 int codepoint = prenormstr.codePointAt(index); local 108 index += Character.charCount(codepoint);
|
| UnicodeSet.java | 4220 public int codepoint; field in class:EntryRange 4353 int codepoint = current++; local [all...] |
| /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/ |
| CollationIteratorTest.java | 132 errln("Failure at codepoint " + ch + ", maximum expansion count < " + count); 144 errln("Failure at codepoint 0x" + Integer.toHexString(ch) 156 errln("Failure at codepoint 0x" + Integer.toHexString(ch) 166 errln("Failure at codepoint 0x" + Integer.toHexString(ch) 175 errln("Failure at codepoint 0x" + Integer.toHexString(ch) 187 errln("Failure at codepoint 0x" + Integer.toHexString(ch) 205 errln("Failure at codepoint 0x" + Integer.toHexString(ch) 461 char codepoint; local 468 for (codepoint = 1; codepoint < 0xFFFE;) [all...] |
| /external/icu/icu4c/source/test/cintltst/ |
| citertst.c | 222 UChar codepoint; local 232 for (codepoint = 1; codepoint < 0xFFFE;) 236 while (codepoint % 0xFF != 0) 238 if (u_isdefined(codepoint)) 239 *(test ++) = codepoint; 240 codepoint ++; 243 if (u_isdefined(codepoint)) 244 *(test ++) = codepoint; 246 if (codepoint != 0xFFFF 288 UChar codepoint; local [all...] |
| cucdtst.c | 1530 const int32_t codepoint[]={ local [all...] |
| /external/icu/icu4c/source/test/intltest/ |
| testidna.cpp | 1353 int32_t codepoint = rand_uni(); local [all...] |
| /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/ |
| CollationIteratorTest.java | 128 errln("Failure at codepoint " + ch + ", maximum expansion count < " + count); 140 errln("Failure at codepoint 0x" + Integer.toHexString(ch) 152 errln("Failure at codepoint 0x" + Integer.toHexString(ch) 162 errln("Failure at codepoint 0x" + Integer.toHexString(ch) 171 errln("Failure at codepoint 0x" + Integer.toHexString(ch) 183 errln("Failure at codepoint 0x" + Integer.toHexString(ch) 201 errln("Failure at codepoint 0x" + Integer.toHexString(ch) 457 char codepoint; local 464 for (codepoint = 1; codepoint < 0xFFFE;) [all...] |
| /external/libchrome/base/files/ |
| file_path.cc | 1139 int codepoint = 0; local [all...] |
| /frameworks/opt/vcard/java/com/android/vcard/ |
| VCardUtils.java | 511 int codepoint = str.codePointAt(i); local 512 if (!((lowerAlphabetFirst <= codepoint && codepoint < lowerAlphabetAfterLast) || 513 (upperAlphabetFirst <= codepoint && codepoint < upperAlphabetAfterLast) || 514 (digitFirst <= codepoint && codepoint < digitAfterLast) || 515 (codepoint == hyphen))) { 613 final int codePoint = value.codePointAt(i); 614 if (codePoint < asciiFirst || codePoint == '"') [all...] |
| /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/stringprep/ |
| TestIDNA.java | 607 int codepoint = rand_uni(); local 608 if(codepoint == 0x0000){ 611 UTF16.append(fillIn, codepoint); [all...] |
| /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/ |
| TestIDNA.java | 603 int codepoint = rand_uni(); local 604 if(codepoint == 0x0000){ 607 UTF16.append(fillIn, codepoint); [all...] |
| /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/cldr/ |
| CheckSystemFonts.java | 150 public Set<String> compose(int codePoint, String string, Set<String> a, Set<String> b) { 174 String codes = "U+" + Utility.hex(it.codepoint); 175 String names = UCharacter.getExtendedName(it.codepoint); 176 if (it.codepointEnd != it.codepoint) { 180 out.println(codes + "\t" + toShortName.get(map.get(it.codepoint)) + "\t" + names); 188 missingMap.put(it.codepoint, UScript.getName(UScript.getScript(it.codepoint)) + "-" + getShortAge(it.codepoint)); 196 String codes = "U+" + Utility.hex(it.codepoint); 197 String names = UCharacter.getExtendedName(it.codepoint); 348 int codepoint = sample.codePointAt(0); local [all...] |
| /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/ |
| reader.h | 593 unsigned codepoint = 0;
local 596 codepoint <<= 4;
597 codepoint += static_cast<unsigned>(c);
599 codepoint -= '0';
601 codepoint -= 'A' - 10;
603 codepoint -= 'a' - 10;
609 return codepoint;
691 unsigned codepoint = ParseHex4(is);
local 693 if (codepoint >= 0xD800 && codepoint <= 0xDBFF) { [all...] |
| /external/icu/icu4c/source/i18n/ |
| usearch.cpp | 884 UChar32 codepoint; local 1324 UChar32 codepoint = 0; local [all...] |
| /external/llvm/lib/Support/ |
| YAMLParser.cpp | 226 uint32_t codepoint = ((*Position & 0x1F) << 6) | local 228 if (codepoint >= 0x80) 229 return std::make_pair(codepoint, 2); 237 uint32_t codepoint = ((*Position & 0x0F) << 12) | local 242 if (codepoint >= 0x800 && 243 (codepoint < 0xD800 || codepoint > 0xDFFF)) 244 return std::make_pair(codepoint, 3); 253 uint32_t codepoint = ((*Position & 0x07) << 18) | local 257 if (codepoint >= 0x10000 && codepoint <= 0x10FFFF [all...] |
| /frameworks/base/core/java/android/text/ |
| Html.java | 659 int codepoint = 0x010000 | (int) c - 0xD800 << 10 | (int) d - 0xDC00; local 660 out.append("&#").append(codepoint).append(";"); [all...] |
| /external/owasp/sanitizer/distrib/lib/ |
| owasp-java-html-sanitizer.jar | |
| /external/icu/android_icu4j/src/main/java/android/icu/text/ |
| UnicodeSet.java | 4121 public int codepoint; field in class:EntryRange 4247 int codepoint = current++; local [all...] |
| /external/libxml2/ |
| parser.c | 11224 int codepoint; local [all...] |
| xmlregexp.c | 193 int codepoint; member in struct:_xmlRegAtom 360 static int xmlRegCheckCharacter(xmlRegAtomPtr atom, int codepoint); 361 static int xmlRegCheckCharacterRange(xmlRegAtomType type, int codepoint, 707 * @start: the start codepoint 708 * @end: the end codepoint 1101 fprintf(output, "char %c\n", atom->codepoint); 1144 fprintf(output, "char %c ", trans->atom->codepoint); 2110 int codepoint; local 3187 int ret, codepoint = 0, len, deter; local 5246 int codepoint, len; local [all...] |
| /external/icu/android_icu4j/src/main/java/android/icu/lang/ |
| UCharacter.java | 3716 int codepoint; local [all...] |
| /external/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/ |
| UCharacter.java | 4308 int codepoint; local [all...] |
| /prebuilts/tools/common/m2/repository/org/apache/commons/commons-lang3/3.3/ |
| commons-lang3-3.3.jar | |
| /prebuilts/tools/common/m2/repository/org/apache/commons/commons-lang3/3.3.2/ |
| commons-lang3-3.3.2.jar | |
| /prebuilts/tools/common/m2/repository/org/apache/commons/commons-lang3/3.4/ |
| commons-lang3-3.4.jar | |