HomeSort by relevance Sort by last modified time
    Searched defs:codepoint (Results 1 - 25 of 41) sorted by null

1 2

  /external/chromium_org/third_party/icu/source/common/unicode/
usetiter.h 66 * Value of <tt>codepoint</tt> if the iterator points to a string.
67 * If <tt>codepoint == IS_STRING</tt>, then examine
78 UChar32 codepoint; member in class:UnicodeSetIterator
83 * iteration range, if <tt>codepoint != IS_STRING</tt>. If
85 * <tt>codepoint == IS_STRING</tt>, then the value of
92 * If <tt>codepoint == IS_STRING</tt>, then <tt>string</tt> points
93 * to the current string. If <tt>codepoint != IS_STRING</tt>, the
129 * Elements of types string and codepoint can both be retrieved
131 * Elements of type codepoint can also be retrieved with
133 * For ranges, <tt>getCodepoint()</tt> returns the starting codepoint
    [all...]
  /external/icu4c/common/unicode/
usetiter.h 66 * Value of <tt>codepoint</tt> if the iterator points to a string.
67 * If <tt>codepoint == IS_STRING</tt>, then examine
78 UChar32 codepoint; member in class:UnicodeSetIterator
83 * iteration range, if <tt>codepoint != IS_STRING</tt>. If
85 * <tt>codepoint == IS_STRING</tt>, then the value of
92 * If <tt>codepoint == IS_STRING</tt>, then <tt>string</tt> points
93 * to the current string. If <tt>codepoint != IS_STRING</tt>, the
129 * Elements of types string and codepoint can both be retrieved
131 * Elements of type codepoint can also be retrieved with
133 * For ranges, <tt>getCodepoint()</tt> returns the starting codepoint
    [all...]
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-buffer.h 45 hb_codepoint_t codepoint; member in struct:hb_glyph_info_t
219 hb_codepoint_t codepoint,
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();
435 c->font->get_glyph_advance_for_direction (c->buffer->info[i].codepoint,
439 c->font->subtract_glyph_origin_for_direction (c->buffer->info[i].codepoint,
    [all...]
  /external/harfbuzz_ng/src/
hb-buffer.h 45 hb_codepoint_t codepoint; member in struct:hb_glyph_info_t
219 hb_codepoint_t codepoint,
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...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
utf16tst.c 82 static uint32_t codepoint[]={ local
97 for(i=0; i<sizeof(codepoint)/sizeof(codepoint[0]); i=(int16_t)(i+2)){
98 UChar32 c=codepoint[i+1];
99 if(UTF16_CHAR_LENGTH(c) != (uint16_t)codepoint[i] || U16_LENGTH(c) != (uint16_t)codepoint[i]){
100 log_err("The no: of code units for %lx:- Expected: %d Got: %d\n", c, codepoint[i], UTF16_CHAR_LENGTH(c));
104 multiple=(UBool)(codepoint[i] == 1 ? FALSE : TRUE);
131 /*codepoint-unsafe, codepoint-safe(not strict) codepoint-safe(strict)*
    [all...]
utf8tst.c 118 static const uint32_t codepoint[]={ local
137 for(i=0; i<sizeof(codepoint)/sizeof(codepoint[0]); i=(int16_t)(i+2)){
138 UChar32 c=codepoint[i+1];
139 if(UTF8_CHAR_LENGTH(c) != (uint16_t)codepoint[i] || U8_LENGTH(c) != (uint16_t)codepoint[i]){
140 log_err("The no: of code units for %lx:- Expected: %d Got: %d\n", c, codepoint[i], UTF8_CHAR_LENGTH(c));
144 multiple=(UBool)(codepoint[i] == 1 ? FALSE : TRUE);
171 /*codepoint-unsafe, codepoint-safe(not strict) codepoint-safe(strict)*
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
itercoll.cpp 51 UChar codepoint; local
54 for (codepoint = 1; codepoint < 0xFFFE;)
58 while (codepoint % 0xFF != 0)
60 if (u_isdefined(codepoint))
61 source += codepoint;
62 codepoint ++;
65 if (u_isdefined(codepoint))
66 source += codepoint;
68 if (codepoint != 0xFFFF
    [all...]
testidna.cpp 1353 int32_t codepoint = rand_uni(); local
    [all...]
  /external/chromium_org/third_party/icu/source/tools/gensprep/
store.c 97 * 0 - ON : The code point is prohibited (USPREP_PROHIBITED). This is to allow for codepoint that are both prohibited and mapped.
242 int32_t codepoint = 0; local
264 codepoint = element->key.integer;
293 savedTrieWord= utrie_get32(sprepTrie,codepoint,NULL);
300 * the codepoint has value something other than prohibited
303 fprintf(stderr,"Type for codepoint \\U%08X already set!.\n", (int)codepoint);
309 if(!utrie_set32(sprepTrie,codepoint,trieWord)){
314 /* written the trie word for the codepoint... increment the count*/
373 storeMapping(uint32_t codepoint, uint32_t* mapping,int32_t length
    [all...]
  /external/icu4c/test/cintltst/
utf16tst.c 84 static uint32_t codepoint[]={ local
99 for(i=0; i<sizeof(codepoint)/sizeof(codepoint[0]); i=(int16_t)(i+2)){
100 UChar32 c=codepoint[i+1];
101 if(UTF16_CHAR_LENGTH(c) != (uint16_t)codepoint[i] || U16_LENGTH(c) != (uint16_t)codepoint[i]){
102 log_err("The no: of code units for %lx:- Expected: %d Got: %d\n", c, codepoint[i], UTF16_CHAR_LENGTH(c));
106 multiple=(UBool)(codepoint[i] == 1 ? FALSE : TRUE);
133 /*codepoint-unsafe, codepoint-safe(not strict) codepoint-safe(strict)*
    [all...]
utf8tst.c 128 static const uint32_t codepoint[]={ local
147 for(i=0; i<LENGTHOF(codepoint); i=(int16_t)(i+2)){
148 UChar32 c=codepoint[i+1];
149 if(UTF8_CHAR_LENGTH(c) != (uint16_t)codepoint[i] || U8_LENGTH(c) != (uint16_t)codepoint[i]){
150 log_err("The no: of code units for %lx:- Expected: %d Got: %d\n", c, codepoint[i], UTF8_CHAR_LENGTH(c));
154 multiple=(UBool)(codepoint[i] == 1 ? FALSE : TRUE);
181 /* codepoint-unsafe, codepoint-safe(not strict) codepoint-safe(strict) *
    [all...]
  /external/icu4c/test/intltest/
itercoll.cpp 51 UChar codepoint; local
54 for (codepoint = 1; codepoint < 0xFFFE;)
58 while (codepoint % 0xFF != 0)
60 if (u_isdefined(codepoint))
61 source += codepoint;
62 codepoint ++;
65 if (u_isdefined(codepoint))
66 source += codepoint;
68 if (codepoint != 0xFFFF
    [all...]
testidna.cpp 1353 int32_t codepoint = rand_uni(); local
    [all...]
  /external/icu4c/tools/gensprep/
store.c 98 * 0 - ON : The code point is prohibited (USPREP_PROHIBITED). This is to allow for codepoint that are both prohibited and mapped.
242 int32_t codepoint = 0; local
262 codepoint = element->key.integer;
291 savedTrieWord= utrie_get32(sprepTrie,codepoint,NULL);
298 * the codepoint has value something other than prohibited
301 fprintf(stderr,"Type for codepoint \\U%08X already set!.\n", (int)codepoint);
307 if(!utrie_set32(sprepTrie,codepoint,trieWord)){
312 /* written the trie word for the codepoint... increment the count*/
354 storeMapping(uint32_t codepoint, uint32_t* mapping,int32_t length
    [all...]
  /external/icu4c/samples/ucnv/
convsamp.cpp 381 UChar32 codepoint; member in struct:__anon20757
424 info[p].codepoint = p;
  /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/base/
file_path.cc 1045 int codepoint = 0; local
    [all...]
  /external/chromium_org/base/files/
file_path.cc 1126 int codepoint = 0; local
    [all...]
  /external/chromium_org/third_party/gtk+/gtk/
compose-parse.py 528 codepoint = long(codepointstr[1:], 16) variable
533 codepoint = keysymunicodedatabase[codepointstr] variable
536 print "Invalid codepoint at line %(linenum_compose)d in %(filename)s:\
573 if codepoint < 0xFFFF:
612 # print 'Base: %(base)s [%(basechar)s], produces [%(unichar)s] (0x%(codepoint)04X)' \
613 # % { "base": base, "basechar": unichr(basechar), "unichar": unichar, "codepoint": codepoint },
622 original_sequence.append(codepoint)
633 sequence.append(codepoint)
845 def redecompose(codepoint)
    [all...]
  /frameworks/opt/vcard/java/com/android/vcard/
VCardUtils.java 511 int codepoint = str.codePointAt(i); local
512 if (!((lowerAlphabetFirst <= codepoint && codepoint < lowerAlphabetAfterLast) ||
513 (upperAlphabetFirst <= codepoint && codepoint < upperAlphabetAfterLast) ||
514 (digitFirst <= codepoint && codepoint < digitAfterLast) ||
515 (codepoint == hyphen))) {
613 final int codePoint = value.codePointAt(i);
614 if (codePoint < asciiFirst || 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...]
  /frameworks/base/core/java/android/text/
Html.java 399 int codepoint = 0x010000 | (int) c - 0xD800 << 10 | (int) d - 0xDC00; local
400 out.append("&#").append(codepoint).append(";");

Completed in 609 milliseconds

1 2