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

  /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/icu4c/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...]
citertst.c 224 UChar codepoint; local
234 for (codepoint = 1; codepoint < 0xFFFE;)
238 while (codepoint % 0xFF != 0)
240 if (u_isdefined(codepoint))
241 *(test ++) = codepoint;
242 codepoint ++;
245 if (u_isdefined(codepoint))
246 *(test ++) = codepoint;
248 if (codepoint != 0xFFFF
290 UChar codepoint; local
    [all...]
cucdtst.c 1439 const int32_t codepoint[]={ local
    [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 1339 int32_t codepoint = rand_uni(); local
    [all...]
  /external/icu4c/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...]
  /frameworks/base/libs/utils/
String16.cpp 222 uint32_t codepoint = utf8_to_utf32((const uint8_t*)src, len); local
224 // Convert the UTF32 codepoint to one or more UTF16 codepoints
225 if (codepoint <= 0xFFFF) {
227 *dst++ = (char16_t) codepoint;
230 codepoint = codepoint - 0x10000;
231 *dst++ = (char16_t) ((codepoint >> 10) + 0xD800);
232 *dst++ = (char16_t) ((codepoint & 0x3FF) + 0xDC00);
284 uint32_t codepoint = utf8_to_utf32((const uint8_t*)p, utf8len); local
285 if (codepoint > 0xFFFF) chars++; // this will be a surrogate pair in utf1
    [all...]
  /external/icu4c/samples/ucnv/
convsamp.cpp 384 UChar32 codepoint; member in struct:__anon2285
428 info[p].codepoint = p;
  /frameworks/base/core/java/android/pim/vcard/
VCardUtils.java 442 int codepoint = str.codePointAt(i); local
443 if (!((lowerAlphabetFirst <= codepoint && codepoint < lowerAlphabetAfterLast) ||
444 (upperAlphabetFirst <= codepoint && codepoint < upperAlphabetAfterLast) ||
445 (digitFirst <= codepoint && codepoint < digitAfterLast) ||
446 (codepoint == hyphen))) {
  /external/icu4c/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/i18n/
usearch.cpp 885 UChar32 codepoint; local
1359 UChar32 codepoint = 0; local
    [all...]
  /external/libxml2/
parser.c 10417 int codepoint; local
    [all...]
xmlregexp.c 190 int codepoint; member in struct:_xmlRegAtom
352 static int xmlRegCheckCharacter(xmlRegAtomPtr atom, int codepoint);
353 static int xmlRegCheckCharacterRange(xmlRegAtomType type, int codepoint,
696 * @start: the start codepoint
697 * @end: the end codepoint
1090 fprintf(output, "char %c\n", atom->codepoint);
1133 fprintf(output, "char %c ", trans->atom->codepoint);
2093 int codepoint; local
3138 int ret, codepoint = 0, len, deter; local
5184 int codepoint, len; local
    [all...]

Completed in 876 milliseconds