/external/chromium_org/third_party/WebKit/Source/build/scripts/ |
make_mediaquery_tokenizer_codepoints.py | 21 const MediaQueryTokenizer::CodePoint MediaQueryTokenizer::codePoints[{array_size}] = {{ 29 codepoints = {'(': 'leftParenthesis', 58 return codepoints.get(c)
|
/external/chromium_org/third_party/icu/source/test/cintltst/ |
citertst.c | 1029 * Getting codepoints from a string 1030 * @param str character string contain codepoints seperated by space and ended 1032 * @param codepoints array for storage, assuming size > 5 1035 static char *getCodePoints(char *str, UChar *codepoints, UChar *contextCPs) { 1270 UChar codepoints[10]; local 1703 UChar codepoints[11]; local 1932 UChar codepoints[10]; local [all...] |
cucdapi.c | 189 uint32_t codepoints[] = { local 244 for(i=0; i<LENGTHOF(codepoints); ++i){ 245 code = uscript_getScript(codepoints[i],&status); 248 code != (UScriptCode)u_getIntPropertyValue(codepoints[i], UCHAR_SCRIPT) 250 log_err("uscript_getScript for codepoint \\U%08X failed\n",codepoints[i]); 255 codepoints[i],u_errorName(status)); 285 log_err("uscript_getScript failed for %d codepoints\n", err);
|
/external/harfbuzz_ng/test/api/ |
test-buffer.c | 358 const uint32_t codepoints[8]; member in struct:__anon1244 389 for (chars = 0; test->codepoints[chars]; chars++) 398 g_assert_cmphex (glyphs[j].codepoint, ==, test->codepoints[j]); 702 const uint32_t codepoints[8]; member in struct:__anon1246 735 for (chars = 0; test->codepoints[chars]; chars++) 744 g_assert_cmphex (glyphs[j].codepoint, ==, test->codepoints[j]); 753 const uint32_t codepoints[8]; member in struct:__anon1247 789 for (chars = 0; test->codepoints[chars]; chars++) 798 g_assert_cmphex (glyphs[j].codepoint, ==, test->codepoints[j]);
|
/external/icu/icu4c/source/test/cintltst/ |
cucdapi.c | 189 uint32_t codepoints[] = { local 244 for(i=0; i<LENGTHOF(codepoints); ++i){ 245 code = uscript_getScript(codepoints[i],&status); 248 code != (UScriptCode)u_getIntPropertyValue(codepoints[i], UCHAR_SCRIPT) 250 log_err("uscript_getScript for codepoint \\U%08X failed\n",codepoints[i]); 255 codepoints[i],u_errorName(status)); 285 log_err("uscript_getScript failed for %d codepoints\n", err);
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/ |
interactive.rb | 43 @data.concat( line.codepoints.to_a )
|
/external/libvterm/src/ |
state.c | 156 // We'll have at most len codepoints 157 uint32_t codepoints[len]; local 168 codepoints, &npoints, state->gsingle_set ? 1 : len, 178 if(vterm_unicode_is_combining(codepoints[i])) { 195 while(i < npoints && vterm_unicode_is_combining(codepoints[i])) { 198 state->combine_chars[saved_i++] = codepoints[i++]; 223 if(!vterm_unicode_is_combining(codepoints[glyph_ends])) 231 chars[i - glyph_starts] = codepoints[i]; 232 width += vterm_unicode_width(codepoints[i]); [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
streams.rb | 399 @data = @string.codepoints.to_a.freeze [all...] |