/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
RichInputConnection.java | 592 final int codePoint = Character.codePointBefore(before, startIndexInBefore); 593 if (isStoppingAtWhitespace == isSeparator(codePoint, sep)) { 597 if (Character.isSupplementaryCodePoint(codePoint)) { 613 final int codePoint = Character.codePointAt(after, endIndexInAfter); 614 if (isSeparator(codePoint, sep)) { 617 if (Character.isSupplementaryCodePoint(codePoint)) { [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/ |
FusionDictionary.java | 376 int codePoint = Character.codePointAt(characters, 0); 378 for (int srci = Character.charCount(codePoint); 379 srci < length; srci += Character.charCount(codePoint), ++dsti) { 380 codePoints[dsti] = codePoint; 381 codePoint = Character.codePointAt(characters, srci); 383 codePoints[dsti] = codePoint; [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/text/ |
BidiResolverTest.cpp | 122 void skipTestsWith(UChar codepoint) 124 m_skippedCodePoints.insert(codepoint);
|
TextEncodingDetector.cpp | 73 // 10 is the minimum confidence value consistent with the codepoint
|
/external/clang/include/clang/AST/ |
CommentLexer.h | 289 /// Given a Unicode codepoint as base-10 integer, return the character. 292 /// Given a Unicode codepoint as base-16 integer, return the character.
|
/external/harfbuzz_ng/src/ |
hb-old.cc | 293 hb_codepoint_t c = buffer->info[i].codepoint; 386 info[i].codepoint = item.glyphs[i];
|
hb-uniscribe.cc | 269 hb_codepoint_t c = buffer->info[i].codepoint; 449 info->codepoint = glyphs[i];
|
hb-buffer-private.hh | 111 HB_INTERNAL void add (hb_codepoint_t codepoint,
|
hb-ot-shape-complex-indic.cc | 185 hb_codepoint_t u = info.codepoint; 637 glyphs[1] = buffer->info[i].codepoint; 687 hb_codepoint_t glyphs[2] = {info[start].codepoint, info[start + 1].codepoint}; 993 hb_codepoint_t glyphs[2] = {info[i].codepoint, info[i + 1].codepoint}; [all...] |
/external/chromium/base/ |
utf_string_conversion_utils.h | 17 // codepoints larger than 0x10FFFF (the highest codepoint allowed).
|
file_path.cc | 1045 int codepoint = 0; local [all...] |
/external/chromium_org/base/strings/ |
utf_string_conversion_utils.h | 17 // codepoints larger than 0x10FFFF (the highest codepoint allowed).
|
/external/chromium_org/third_party/harfbuzz-ng/src/ |
hb-buffer-private.hh | 115 HB_INTERNAL void add (hb_codepoint_t codepoint,
|
hb-ot-layout-gsub-table.hh | 76 hb_codepoint_t glyph_id = c->buffer->cur().codepoint; 152 hb_codepoint_t glyph_id = c->buffer->cur().codepoint; 352 unsigned int index = (this+coverage).get_coverage (c->buffer->cur().codepoint); 484 hb_codepoint_t glyph_id = c->buffer->cur().codepoint; 800 hb_codepoint_t glyph_id = c->buffer->cur().codepoint; 976 unsigned int index = (this+coverage).get_coverage (c->buffer->cur().codepoint); [all...] |
hb-icu.cc | 331 /* Normalise the codepoint using NFKD mode. */
|
/external/chromium_org/third_party/icu/source/common/ |
utrie2.cpp | 711 codePoint=U_SENTINEL; 715 UTRIE2_U16_PREV16(trie, start, codePointStart, codePoint, result); 722 codePoint=U_SENTINEL; 726 UTRIE2_U16_NEXT16(trie, codePointLimit, limit, codePoint, result);
|
ucnvisci.c | 122 UChar contextCharToUnicode; /* previous Unicode codepoint for contextual analysis */ 123 UChar contextCharFromUnicode; /* previous Unicode codepoint for contextual analysis */ [all...] |
/external/harfbuzz/src/ |
harfbuzz-shape.h | 31 typedef hb_uint16 HB_CodePoint; /* UTF-16 codepoint (not character ) */
|
/external/icu4c/common/ |
utrie2.cpp | 717 codePoint=U_SENTINEL; 721 UTRIE2_U16_PREV16(trie, start, codePointStart, codePoint, result); 728 codePoint=U_SENTINEL; 732 UTRIE2_U16_NEXT16(trie, codePointLimit, limit, codePoint, result);
|
ucnvisci.c | 120 UChar contextCharToUnicode; /* previous Unicode codepoint for contextual analysis */ 121 UChar contextCharFromUnicode; /* previous Unicode codepoint for contextual analysis */ [all...] |
/external/chromium_org/base/files/ |
file_path.cc | 1136 int codepoint = 0; local [all...] |
/frameworks/base/core/jni/android/graphics/ |
TextLayoutCache.cpp | 561 hb_script_t code_point_to_script(hb_codepoint_t codepoint) { 566 return hb_unicode_script(u, codepoint); 666 info[i].codepoint, 750 jchar glyphId = info[i].codepoint + glyphBaseCount; 825 firstUnichar = info[i].codepoint; [all...] |
/external/chromium_org/third_party/icu/source/test/cintltst/ |
cucdtst.c | 1399 const int32_t codepoint[]={ local [all...] |
/external/icu4c/test/cintltst/ |
cucdtst.c | 1523 const int32_t codepoint[]={ local [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/ |
ResearchLogger.java | 165 // digits entered by the user are replaced with this codepoint. [all...] |