HomeSort by relevance Sort by last modified time
    Searched full:codepoint (Results 51 - 75 of 380) sorted by null

1 23 4 5 6 7 8 91011>>

  /packages/inputmethods/LatinIME/native/jni/src/utils/
char_utils.h 56 static AK_FORCE_INLINE bool isIntentionalOmissionCodePoint(const int codePoint) {
58 return codePoint == KEYCODE_SINGLE_QUOTE || codePoint == KEYCODE_HYPHEN_MINUS;
  /external/chromium_org/third_party/icu/source/i18n/
ucol_cnt.cpp 371 uprv_cnttab_insertContraction(CntTable *table, uint32_t element, UChar codePoint, uint32_t value, UErrorCode *status) {
392 while(tbl->codePoints[offset] < codePoint && offset<tbl->position) {
403 tbl->codePoints[offset] = codePoint;
413 uprv_cnttab_addContraction(CntTable *table, uint32_t element, UChar codePoint, uint32_t value, UErrorCode *status) {
433 tbl->codePoints[tbl->position] = codePoint;
442 uprv_cnttab_setContraction(CntTable *table, uint32_t element, uint32_t offset, UChar codePoint, uint32_t value, UErrorCode *status) {
464 tbl->codePoints[offset] = codePoint;
480 static int32_t _cnttab_findCP(ContractionTable *tbl, UChar codePoint) {
486 while(codePoint > tbl->codePoints[position]) {
492 if (codePoint == tbl->codePoints[position])
    [all...]
  /external/icu4c/i18n/
ucol_cnt.cpp 371 uprv_cnttab_insertContraction(CntTable *table, uint32_t element, UChar codePoint, uint32_t value, UErrorCode *status) {
392 while(tbl->codePoints[offset] < codePoint && offset<tbl->position) {
403 tbl->codePoints[offset] = codePoint;
413 uprv_cnttab_addContraction(CntTable *table, uint32_t element, UChar codePoint, uint32_t value, UErrorCode *status) {
433 tbl->codePoints[tbl->position] = codePoint;
442 uprv_cnttab_setContraction(CntTable *table, uint32_t element, uint32_t offset, UChar codePoint, uint32_t value, UErrorCode *status) {
464 tbl->codePoints[offset] = codePoint;
480 static int32_t _cnttab_findCP(ContractionTable *tbl, UChar codePoint) {
486 while(codePoint > tbl->codePoints[position]) {
492 if (codePoint == tbl->codePoints[position])
    [all...]
  /external/iptables/include/linux/netfilter_ipv4/
ipt_ECN.h 23 u_int8_t ip_ect; /* ECT codepoint of IPv4 header, pre-shifted */
  /external/kernel-headers/original/linux/netfilter_ipv4/
ipt_ECN.h 23 u_int8_t ip_ect; /* ECT codepoint of IPv4 header, pre-shifted */
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
CodesArrayParser.java 59 final int codePoint = Integer.parseInt(codeInHex, BASE_HEX);
60 sb.appendCodePoint(codePoint);
102 final int codePoint = Integer.parseInt(codeInHex, BASE_HEX);
103 sb.appendCodePoint(codePoint);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter_ipv4/
ipt_ECN.h 23 u_int8_t ip_ect; /* ECT codepoint of IPv4 header, pre-shifted */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter_ipv4/
ipt_ECN.h 23 u_int8_t ip_ect; /* ECT codepoint of IPv4 header, pre-shifted */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter_ipv4/
ipt_ECN.h 23 u_int8_t ip_ect; /* ECT codepoint of IPv4 header, pre-shifted */
  /external/chromium_org/third_party/icu/source/test/cintltst/
sprpdata.c 36 compareMapping(UStringPrepProfile* data, uint32_t codepoint, uint32_t* mapping, int32_t mapLength,
117 * the source codepoint is copied to the destination
146 compareMapping(UStringPrepProfile* data, uint32_t codepoint, uint32_t* mapping,int32_t mapLength,
160 UTRIE_GET16(&trie, codepoint, result);
166 log_err( "Did not get the assigned type for codepoint 0x%08X. Expected: %i Got: %i\n",codepoint, USPREP_MAP, type);
218 if(retType!=USPREP_DELETE && (codepoint-delta) != (uint16_t)mapping[0]){
219 log_err("Did not get the expected result. Expected: 0x%04X Got: 0x%04X \n", mapping[0],(codepoint-delta));
  /external/icu4c/test/cintltst/
sprpdata.c 37 compareMapping(UStringPrepProfile* data, uint32_t codepoint, uint32_t* mapping, int32_t mapLength,
118 * the source codepoint is copied to the destination
147 compareMapping(UStringPrepProfile* data, uint32_t codepoint, uint32_t* mapping,int32_t mapLength,
161 UTRIE_GET16(&trie, codepoint, result);
167 log_err( "Did not get the assigned type for codepoint 0x%08X. Expected: %i Got: %i\n",codepoint, USPREP_MAP, type);
219 if(retType!=USPREP_DELETE && (codepoint-delta) != (uint16_t)mapping[0]){
220 log_err("Did not get the expected result. Expected: 0x%04X Got: 0x%04X \n", mapping[0],(codepoint-delta));
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
DictAndKeyboard.java 46 public Keyboard getKeyboard(final int codePoint) {
50 return mKeyboard.getKey(codePoint) != null ? mKeyboard : mManualShiftedKeyboard;
  /external/icu4c/samples/ucnv/
flagcb.c 34 UChar32 codePoint,
94 length, codePoint, reason, err);
118 codePoint,
176 UChar32 codePoint,
225 length, codePoint, reason, err);
251 codePoint,
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/event/
Event.java 68 private Event(final int type, final int codePoint, final Event next) {
70 mCodePoint = codePoint;
74 public static Event createDeadEvent(final int codePoint, final Event next) {
75 return new Event(EVENT_DEAD, codePoint, next);
78 public static Event createCommittableEvent(final int codePoint, final Event next) {
79 return new Event(EVENT_COMMITTABLE, codePoint, next);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
DictionaryInfoUtils.java 92 private static boolean isFileNameCharacter(int codePoint) {
93 if (codePoint >= 0x30 && codePoint <= 0x39) return true; // Digit
94 if (codePoint >= 0x41 && codePoint <= 0x5A) return true; // Uppercase
95 if (codePoint >= 0x61 && codePoint <= 0x7A) return true; // Lowercase
96 return codePoint == '_'; // Underscore
113 final int codePoint = name.codePointAt(i);
114 if (DictionaryInfoUtils.isFileNameCharacter(codePoint)) {
    [all...]
  /external/chromium_org/third_party/icu/source/tools/dumpce/
dumpce.cpp 114 int count; // number of codepoint
163 UChar *codepoint = iter->iteratordata_.string; local
170 serialize(f, codepoint, iter->iteratordata_.endp - codepoint);
171 sortkeylength = ucol_getSortKey(iter->iteratordata_.coll, codepoint,
172 iter->iteratordata_.endp - codepoint, sortkey, 64);
175 serialize(f, codepoint);
176 sortkeylength = ucol_getSortKey(iter->iteratordata_.coll, codepoint,
180 serialize(stdout, codepoint);
380 UChar32 codepoint = 0 local
875 UChar32 codepoint; local
940 UChar32 codepoint; local
959 UChar32 codepoint = 0; local
1040 UChar32 codepoint = 0; local
    [all...]
  /external/icu4c/tools/dumpce/
dumpce.cpp 114 int count; // number of codepoint
163 const UChar *codepoint = iter->iteratordata_.string; local
170 serialize(f, codepoint, iter->iteratordata_.endp - codepoint);
171 sortkeylength = ucol_getSortKey(iter->iteratordata_.coll, codepoint,
172 iter->iteratordata_.endp - codepoint, sortkey, 64);
175 serialize(f, codepoint);
176 sortkeylength = ucol_getSortKey(iter->iteratordata_.coll, codepoint,
180 serialize(stdout, codepoint);
380 UChar32 codepoint = 0 local
875 UChar32 codepoint; local
940 UChar32 codepoint; local
959 UChar32 codepoint = 0; local
1039 UChar32 codepoint = 0; local
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
proximity_info_state.cpp 164 const int inputIndex, const int codePoint) const {
165 const int keyId = mProximityInfo->getKeyIndexOf(codePoint);
170 if (CharUtils::isIntentionalOmissionCodePoint(codePoint)) {
194 ProximityType ProximityInfoState::getProximityType(const int index, const int codePoint,
198 const int baseLowerC = CharUtils::toBaseLowerCase(codePoint);
202 if (firstCodePoint == baseLowerC || firstCodePoint == codePoint) {
219 || currentCodePoints[j] == codePoint);
234 || currentCodePoints[j] == codePoint);
248 ProximityType ProximityInfoState::getProximityTypeG(const int index, const int codePoint) const {
252 const int lowerCodePoint = CharUtils::toLowerCase(codePoint);
    [all...]
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-shape-normalize.cc 106 font->get_glyph (info.codepoint, 0, &info.glyph_index());
203 if (shortest && c->font->get_glyph (buffer->cur().codepoint, 0, &glyph))
205 else if (decompose (c, shortest, buffer->cur().codepoint))
207 else if (!shortest && c->font->get_glyph (buffer->cur().codepoint, 0, &glyph))
209 else if (decompose_compatibility (c, buffer->cur().codepoint))
221 if (unlikely (buffer->unicode->is_variation_selector (buffer->cur(+1).codepoint))) {
223 if (font->get_glyph (buffer->cur().codepoint, buffer->cur(+1).codepoint, &buffer->cur().glyph_index()))
225 buffer->replace_glyphs (2, 1, &buffer->cur().codepoint);
236 while (buffer->idx < end && unlikely (buffer->unicode->is_variation_selector (buffer->cur().codepoint)))
    [all...]
hb-ot-shape.cc 242 dottedcircle.codepoint = 0x25CC;
300 hb_codepoint_t codepoint = unicode->mirroring (info[i].codepoint); local
301 if (likely (codepoint == info[i].codepoint))
304 info[i].codepoint = codepoint;
337 buffer->info[i].codepoint = buffer->info[i].glyph_index();
437 c->font->get_glyph_advance_for_direction (info[i].codepoint,
441 c->font->subtract_glyph_origin_for_direction (info[i].codepoint,
    [all...]
hb-set-private.hh 257 inline bool next (hb_codepoint_t *codepoint) const
259 if (unlikely (*codepoint == INVALID)) {
262 *codepoint = i;
265 *codepoint = INVALID;
269 for (hb_codepoint_t i = *codepoint + 1; i < MAX_G + 1; i++)
271 *codepoint = i;
274 *codepoint = INVALID;
  /external/harfbuzz_ng/src/
hb-ot-shape.cc 251 dottedcircle.codepoint = 0x25CC;
307 hb_codepoint_t codepoint = unicode->mirroring (c->buffer->info[i].codepoint); local
308 if (likely (codepoint == c->buffer->info[i].codepoint))
311 c->buffer->info[i].codepoint = codepoint;
343 buffer->info[i].codepoint = buffer->info[i].glyph_index();
411 c->font->get_glyph_advance_for_direction (c->buffer->info[i].codepoint,
415 c->font->subtract_glyph_origin_for_direction (c->buffer->info[i].codepoint,
    [all...]
hb-ot-shape-normalize.cc 106 font->get_glyph (info.codepoint, 0, &info.glyph_index());
202 if (shortest && c->font->get_glyph (buffer->cur().codepoint, 0, &glyph))
204 else if (decompose (c, shortest, buffer->cur().codepoint))
206 else if (!shortest && c->font->get_glyph (buffer->cur().codepoint, 0, &glyph))
208 else if (decompose_compatibility (c, buffer->cur().codepoint))
219 if (unlikely (buffer->unicode->is_variation_selector (buffer->cur(+1).codepoint))) {
221 c->font->get_glyph (buffer->cur().codepoint, buffer->cur(+1).codepoint, &buffer->cur().glyph_index());
222 buffer->replace_glyphs (2, 1, &buffer->cur().codepoint);
241 if (unlikely (buffer->unicode->is_variation_selector (buffer->info[i].codepoint))) {
    [all...]
  /system/core/libutils/
Unicode.cpp 441 static inline void utf8_shift_and_mask(uint32_t* codePoint, const uint8_t byte)
443 *codePoint <<= 6;
444 *codePoint |= 0x3F & byte;
529 uint32_t codepoint = utf8_to_utf32_codepoint(u8cur, u8charLen); local
530 if (codepoint > 0xFFFF) u16measuredLen++; // this will be a surrogate pair in utf16
553 uint32_t codepoint = utf8_to_utf32_codepoint(u8cur, u8len); local
555 // Convert the UTF32 codepoint to one or more UTF16 codepoints
556 if (codepoint <= 0xFFFF) {
558 *u16cur++ = (char16_t) codepoint;
561 codepoint = codepoint - 0x10000
584 uint32_t codepoint = utf8_to_utf32_codepoint(u8cur, u8len); local
    [all...]
  /external/chromium_org/third_party/icu/source/common/
ucnv_err.c 60 UChar32 codePoint,
89 UChar32 codePoint,
110 UChar32 codePoint,
137 UChar32 codePoint,
198 valueStringLength += uprv_itou (valueString + valueStringLength, VALUE_STRING_LENGTH - valueStringLength, codePoint, 16, 8);
212 valueStringLength += uprv_itou (valueString + valueStringLength, VALUE_STRING_LENGTH - valueStringLength, codePoint, 10, 0);
226 valueStringLength += uprv_itou (valueString + valueStringLength, VALUE_STRING_LENGTH - valueStringLength, codePoint, 16, 0);
239 valueStringLength += uprv_itou (valueString + valueStringLength, VALUE_STRING_LENGTH - valueStringLength, codePoint, 16, 4);
248 valueStringLength += uprv_itou (valueString + valueStringLength, VALUE_STRING_LENGTH - valueStringLength, codePoint, 16, 0);

Completed in 782 milliseconds

1 23 4 5 6 7 8 91011>>