Searched refs:codepoints (Results 1 - 8 of 8) sorted by relevance
/external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/tools/ |
H A D | named_entity_trie_generator.js | 8 var resultCodepoints = entitiesData[entity].codepoints;
|
/external/icu/icu4c/source/test/cintltst/ |
H A D | cucdapi.c | 264 uint32_t codepoints[] = { local 319 for(i=0; i<UPRV_LENGTHOF(codepoints); ++i){ 320 code = uscript_getScript(codepoints[i],&status); 323 code != (UScriptCode)u_getIntPropertyValue(codepoints[i], UCHAR_SCRIPT) 325 log_err("uscript_getScript for codepoint \\U%08X failed\n",codepoints[i]); 330 codepoints[i],u_errorName(status)); 360 log_err("uscript_getScript failed for %d codepoints\n", err);
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/ |
H A D | interactive.rb | 43 @data.concat( line.codepoints.to_a )
|
/external/harfbuzz_ng/test/api/ |
H A D | test-buffer.c | 367 const uint32_t codepoints[8]; member in struct:__anon5452 398 for (chars = 0; test->codepoints[chars]; chars++) 407 g_assert_cmphex (glyphs[j].codepoint, ==, test->codepoints[j]); 711 const uint32_t codepoints[8]; member in struct:__anon5454 744 for (chars = 0; test->codepoints[chars]; chars++) 753 g_assert_cmphex (glyphs[j].codepoint, ==, test->codepoints[j]); 762 const uint32_t codepoints[8]; member in struct:__anon5455 798 for (chars = 0; test->codepoints[chars]; chars++) 807 g_assert_cmphex (glyphs[j].codepoint, ==, test->codepoints[j]);
|
/external/libvterm/src/ |
H A D | state.c | 207 // We'll have at most len codepoints 208 uint32_t codepoints[len]; local 219 codepoints, &npoints, state->gsingle_set ? 1 : len, 229 if(vterm_unicode_is_combining(codepoints[i])) { 246 while(i < npoints && vterm_unicode_is_combining(codepoints[i])) { 249 state->combine_chars[saved_i++] = codepoints[i++]; 274 if(!vterm_unicode_is_combining(codepoints[glyph_ends])) 282 chars[i - glyph_starts] = codepoints[i]; 283 width += vterm_unicode_width(codepoints[i]);
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/ |
H A D | TestUScript.java | 330 int codepoints[][] = new int[][] { 360 while(i< codepoints.length){ 361 code = UScript.getScript(codepoints[i][0]); 363 if(code != codepoints[i][1]){ 364 logln("UScript.getScript for codepoint 0x"+ hex(codepoints[i][0])+" failed");
|
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/ |
H A D | UnicodeMap.java | 410 * Adds bunch o' codepoints; otherwise like put. 411 * @param codepoints 415 public UnicodeMap<T> putAll(UnicodeSet codepoints, T value) { argument 416 UnicodeSetIterator it = new UnicodeSetIterator(codepoints); 428 * Adds bunch o' codepoints; otherwise like add.
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
H A D | streams.rb | 399 @data = @string.codepoints.to_a.freeze
|
Completed in 2248 milliseconds