HomeSort by relevance Sort by last modified time
    Searched defs:codepoint (Results 26 - 50 of 71) sorted by null

12 3

  /packages/apps/Test/connectivity/sl4n/rapidjson/test/perftest/
misctest.cpp 68 unsigned codepoint, state = 0; local
71 decode(&state, &codepoint, *s++);
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-shape.cc 255 dottedcircle.codepoint = 0x25CCu;
348 hb_codepoint_t codepoint = unicode->mirroring (info[i].codepoint); local
349 if (likely (codepoint == info[i].codepoint || !c->font->has_glyph (codepoint)))
352 info[i].codepoint = codepoint;
382 if (info[i].codepoint == 0x2044u) /* FRACTION SLASH */
485 info[i].codepoint = space
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
CjkBreakEngine.java 112 int codepoint = prenormstr.codePointAt(index); local
113 index += Character.charCount(codepoint);
UnicodeSet.java 4143 public int codepoint; field in class:EntryRange
4276 int codepoint = current++; local
    [all...]
  /external/icu/icu4c/source/samples/ucnv/
convsamp.cpp 388 UChar32 codepoint; member in struct:__anon20238
431 info[p].codepoint = p;
  /external/icu/icu4c/source/test/cintltst/
utf8tst.c 128 static const uint32_t codepoint[]={ local
147 for(i=0; i<UPRV_LENGTHOF(codepoint); i=(int16_t)(i+2)){
148 UChar32 c=codepoint[i+1];
149 if(UTF8_CHAR_LENGTH(c) != (uint16_t)codepoint[i] || U8_LENGTH(c) != (uint16_t)codepoint[i]){
150 log_err("The no: of code units for %lx:- Expected: %d Got: %d\n", c, codepoint[i], UTF8_CHAR_LENGTH(c));
154 multiple=(UBool)(codepoint[i] == 1 ? FALSE : TRUE);
181 /* codepoint-unsafe, codepoint-safe(not strict) codepoint-safe(strict) *
    [all...]
citertst.c 224 UChar codepoint; local
234 for (codepoint = 1; codepoint < 0xFFFE;)
238 while (codepoint % 0xFF != 0)
240 if (u_isdefined(codepoint))
241 *(test ++) = codepoint;
242 codepoint ++;
245 if (u_isdefined(codepoint))
246 *(test ++) = codepoint;
248 if (codepoint != 0xFFFF
290 UChar codepoint; local
    [all...]
cucdtst.c 1532 const int32_t codepoint[]={ local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CjkBreakEngine.java 111 int codepoint = prenormstr.codePointAt(index); local
112 index += Character.charCount(codepoint);
UnicodeSet.java 4242 public int codepoint; field in class:EntryRange
4382 int codepoint = current++; local
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
CollationIteratorTest.java 130 errln("Failure at codepoint " + ch + ", maximum expansion count < " + count);
142 errln("Failure at codepoint 0x" + Integer.toHexString(ch)
154 errln("Failure at codepoint 0x" + Integer.toHexString(ch)
164 errln("Failure at codepoint 0x" + Integer.toHexString(ch)
173 errln("Failure at codepoint 0x" + Integer.toHexString(ch)
185 errln("Failure at codepoint 0x" + Integer.toHexString(ch)
203 errln("Failure at codepoint 0x" + Integer.toHexString(ch)
463 char codepoint; local
470 for (codepoint = 1; codepoint < 0xFFFE;)
    [all...]
  /external/icu/icu4c/source/test/intltest/
testidna.cpp 1356 int32_t codepoint = rand_uni(); local
    [all...]
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
CollationIteratorTest.java 129 errln("Failure at codepoint " + ch + ", maximum expansion count < " + count);
141 errln("Failure at codepoint 0x" + Integer.toHexString(ch)
153 errln("Failure at codepoint 0x" + Integer.toHexString(ch)
163 errln("Failure at codepoint 0x" + Integer.toHexString(ch)
172 errln("Failure at codepoint 0x" + Integer.toHexString(ch)
184 errln("Failure at codepoint 0x" + Integer.toHexString(ch)
202 errln("Failure at codepoint 0x" + Integer.toHexString(ch)
462 char codepoint; local
469 for (codepoint = 1; codepoint < 0xFFFE;)
    [all...]
  /external/libchrome/base/files/
file_path.cc 1153 int codepoint = 0; local
    [all...]
  /frameworks/minikin/libs/minikin/
Hyphenator.cpp 55 static uint32_t codepoint(uint32_t entry) { return entry >> 11; } function in struct:minikin::AlphabetTable1
221 static UScriptCode getScript(uint32_t codePoint) {
223 const UScriptCode script = uscript_getScript(static_cast<UChar32>(codePoint), &errorCode);
231 static HyphenationType hyphenationTypeBasedOnScript(uint32_t codePoint) {
236 const UScriptCode script = getScript(codePoint);
252 static inline int32_t getJoiningType(UChar32 codepoint) {
253 return u_getIntPropertyValue(codepoint, UCHAR_JOINING_TYPE);
365 if (AlphabetTable1::codepoint(entry) != c) {
  /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 618 int codepoint = rand_uni(); local
619 if(codepoint == 0x0000){
622 UTF16.append(fillIn, codepoint);
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
TestIDNA.java 617 int codepoint = rand_uni(); local
618 if(codepoint == 0x0000){
621 UTF16.append(fillIn, codepoint);
    [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 886 UChar32 codepoint; local
1326 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...]
  /external/protobuf/src/google/protobuf/compiler/js/
js_generator.cc 567 // Decodes a codepoint in \x0000 -- \xFFFF.
611 uint16 codepoint = 0; local
612 // Decode the next UTF-8 codepoint.
619 codepoint = DecodeUTF8Codepoint(bytes, &have_bytes);
625 switch (codepoint) {
640 // use a single Unicode codepoint escape if the output language is
643 if (codepoint >= 0x20 && codepoint <= 0x7e) {
644 *out += static_cast<char>(codepoint);
645 } else if (codepoint >= 0x100)
    [all...]
  /frameworks/base/core/java/android/text/
Html.java 647 int codepoint = 0x010000 | (int) c - 0xD800 << 10 | (int) d - 0xDC00; local
648 out.append("&#").append(codepoint).append(";");
    [all...]
  /external/owasp/sanitizer/distrib/lib/
owasp-java-html-sanitizer.jar 
  /external/libxml2/
parser.c 11281 int codepoint; local
    [all...]

Completed in 2120 milliseconds

12 3