HomeSort by relevance Sort by last modified time
    Searched full:codepoints (Results 1 - 25 of 283) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/skia/third_party/harfbuzz/contrib/tables/
unicode_parse_common.py 38 codepoints = codepoints_parse(line[0])
43 if type(codepoints) == int:
44 codepoints = (codepoints, codepoints)
46 ranges.append((codepoints[0], codepoints[1], value))
  /external/chromium_org/third_party/icu/source/i18n/
ucol_cnt.cpp 36 UChar *newCPs = (UChar *)uprv_realloc(tbl->codePoints, 2*tbl->size*sizeof(UChar));
43 tbl->codePoints = newCPs;
71 tbl->codePoints = NULL;
87 el->codePoints = (UChar *)uprv_malloc(INIT_EXP_TABLE_SIZE*sizeof(UChar));
88 if(el->codePoints == NULL) {
96 uprv_memset(el->codePoints, 0, INIT_EXP_TABLE_SIZE*sizeof(UChar));
109 uprv_free(el->codePoints);
167 if(table->codePoints != NULL) {
168 uprv_free(table->codePoints);
170 table->codePoints = (UChar *)uprv_malloc(table->position*sizeof(UChar))
    [all...]
  /external/icu/icu4c/source/samples/props/
props.cpp 53 codePoints[]={
58 for(i=0; i<sizeof(codePoints)/sizeof(codePoints[0]); ++i) {
59 printProps(codePoints[i]);
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/result/
suggested_word.h 42 SuggestedWord(const int *const codePoints, const int codePointCount,
45 : mCodePoints(codePoints, codePoints + codePointCount), mScore(score),
suggestion_results.h 39 void addPrediction(const int *const codePoints, const int codePointCount, const int score);
40 void addSuggestion(const int *const codePoints, const int codePointCount,
suggestion_results.cpp 50 void SuggestionResults::addPrediction(const int *const codePoints, const int codePointCount,
56 addSuggestion(codePoints, codePointCount, probability, Dictionary::KIND_PREDICTION,
60 void SuggestionResults::addSuggestion(const int *const codePoints, const int codePointCount,
78 mSuggestedWords.push(SuggestedWord(codePoints, codePointCount, score, type,
  /packages/inputmethods/LatinIME/native/jni/src/utils/
char_utils.h 63 static AK_FORCE_INLINE int getCodePointCount(const int arraySize, const int *const codePoints) {
66 if (codePoints[size] == '\0') {
99 static AK_FORCE_INLINE int attachBeginningOfSentenceMarker(int *const codePoints,
101 if (codePointCount > 0 && codePoints[0] == CODE_POINT_BEGINNING_OF_SENTENCE) {
109 memmove(codePoints + 1, codePoints, sizeof(int) * codePointCount);
110 codePoints[0] = CODE_POINT_BEGINNING_OF_SENTENCE;
  /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/webrtc/modules/audio_coding/neteq/test/
PayloadTypes.h 14 /* RTP defined codepoints */
28 /* Dynamic RTP codepoints as defined in VoiceEngine (file VEAPI.cpp) */
59 /* Extra dynamic codepoints */
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/pt_common/
pt_node_params.h 60 const int codePointCount, const int *const codePoints, const int probability,
70 memcpy(mCodePoints, codePoints, sizeof(int) * mCodePointCount);
75 const int parentPos, const int codePointCount, const int *const codePoints,
85 memcpy(mCodePoints, codePoints, sizeof(int) * mCodePointCount);
91 const int codePointCount, const int *const codePoints, const int probability)
104 memcpy(mCodePoints, codePoints, sizeof(int) * mCodePointCount);
108 const int codePointCount, const int *const codePoints, const int probability)
117 memcpy(mCodePoints, codePoints, sizeof(int) * mCodePointCount);
dynamic_pt_updating_helper.h 74 const UnigramProperty *const unigramProperty, const int *const codePoints,
88 const int *const codePoints, const int probability) const;
92 const int codePointCount, const int *const codePoints, const int probability) const;
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/session/
prev_words_info.h 127 int codePoints[MAX_WORD_LENGTH];
129 memmove(codePoints, wordCodePoints, sizeof(int) * codePointCount);
131 codePointCount = CharUtils::attachBeginningOfSentenceMarker(codePoints,
138 codePoints, codePointCount, false /* forceLowerCaseSearch */);
147 codePoints, codePointCount, true /* forceLowerCaseSearch */);
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/backward/v402/shortcut/
ver4_shortcut_list_policy.h 66 bool addNewShortcut(const int terminalId, const int *const codePoints, const int codePointCount,
76 return mShortcutDictContent->writeShortcutEntry(codePoints, codePointCount, probability,
80 codePoints, codePointCount);
89 if (!mShortcutDictContent->writeShortcutEntryAndAdvancePosition(codePoints,
101 if (!mShortcutDictContent->writeShortcutEntry(codePoints,
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/v4/shortcut/
ver4_shortcut_list_policy.h 56 bool addNewShortcut(const int terminalId, const int *const codePoints, const int codePointCount,
66 return mShortcutDictContent->writeShortcutEntry(codePoints, codePointCount, probability,
70 codePoints, codePointCount);
79 if (!mShortcutDictContent->writeShortcutEntryAndAdvancePosition(codePoints,
91 if (!mShortcutDictContent->writeShortcutEntry(codePoints,
  /ndk/sources/android/support/src/musl-ctype/
iswprint.c 3 /* Consider all legal codepoints as printable except for:
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/
dictionary_utils.h 33 const int *const codePoints, const int codePointCount);
dictionary.h 81 bool addUnigramEntry(const int *const codePoints, const int codePointCount,
84 bool removeUnigramEntry(const int *const codePoints, const int codePointCount);
101 const WordProperty getWordProperty(const int *const codePoints, const int codePointCount);
  /frameworks/base/core/java/android/emoji/
EmojiFactory.java 188 int[] codePoints = new int[vspString.codePointCount(0, len)];
196 codePoints[new_len] = newCodePoint;
200 codePoints[new_len] = codePoint;
202 return new String(codePoints, 0, new_len);
222 int[] codePoints = new int[puaString.codePointCount(0, len)];
230 codePoints[new_len] = newCodePoint;
234 codePoints[new_len] = codePoint;
236 return new String(codePoints, 0, new_len);
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/property/
word_property.h 36 WordProperty(const std::vector<int> *const codePoints,
39 : mCodePoints(*codePoints), mUnigramProperty(*unigramProperty), mBigrams(*bigrams) {}
  /external/chromium_org/third_party/icu/source/test/cintltst/
citertst.c 1028 * Getting codepoints from a string
1029 * @param str character string contain codepoints seperated by space and ended
1031 * @param codepoints array for storage, assuming size > 5
1034 static char *getCodePoints(char *str, UChar *codepoints, UChar *contextCPs) {
1269 UChar codepoints[10]; local
1700 UChar codepoints[11]; local
1909 UChar codepoints[10]; local
    [all...]
  /external/chromium_org/third_party/icu/source/common/
usetiter.cpp 43 * <br>You are guaranteed that the codepoints are in sorted order, and the strings are in sorted order,
69 * else the value is a range of codepoints in the <codepoint, codepointEnd> fields.
70 * <br>Note that the codepoints are in sorted order, and the strings are in sorted order,
  /external/icu/icu4c/source/common/
usetiter.cpp 43 * <br>You are guaranteed that the codepoints are in sorted order, and the strings are in sorted order,
69 * else the value is a range of codepoints in the <codepoint, codepointEnd> fields.
70 * <br>Note that the codepoints are in sorted order, and the strings are in sorted order,
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/backward/v402/
ver4_patricia_trie_node_reader.cpp 61 int codePoints[MAX_WORD_LENGTH];
63 dictBuf, flags, MAX_WORD_LENGTH, codePoints, &pos);
101 return PtNodeParams(headPos, flags, parentPos, codePonitCount, codePoints,
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/v4/
ver4_patricia_trie_node_reader.cpp 52 int codePoints[MAX_WORD_LENGTH];
54 dictBuf, flags, MAX_WORD_LENGTH, codePoints, &pos);
93 return PtNodeParams(headPos, flags, parentPos, codePonitCount, codePoints,
  /external/chromium_org/third_party/icu/source/tools/toolutil/
ucm.h 71 UChar32 *codePoints;
111 (((m)->uLen==1) ? &(m)->u : (t)->codePoints+(m)->u)
132 UChar32 codePoints[UCNV_EXT_MAX_UCHARS],
139 UChar32 codePoints[UCNV_EXT_MAX_UCHARS],
252 UChar32 codePoints[UCNV_EXT_MAX_UCHARS],
259 UChar32 codePoints[UCNV_EXT_MAX_UCHARS],

Completed in 8003 milliseconds

1 2 3 4 5 6 7 8 91011>>