/external/chromium/base/third_party/icu/ |
H A D | icu_utf.cc | 141 uint8 trail, illegal=0; local 144 /* count==0 for illegally leading trail bytes and the illegal bytes 0xfe and 0xff */ 149 /* count>=4 is always illegal: no more than 3 trail bytes in Unicode's UTF-8 */ 153 trail=s[(i)++]; 154 (c)=((c)<<6)|(trail&0x3f); 156 illegal|=(trail&0xc0)^0x80; 163 trail=s[(i)++]; 164 (c)=((c)<<6)|(trail&0x3f); 165 illegal|=(trail&0xc0)^0x80; 167 trail [all...] |
H A D | icu_utf.h | 108 * Count the trail bytes for a UTF-8 lead byte. 136 * Is this code unit (byte) a UTF-8 trail byte? 182 * If the offset points to a trail byte or an illegal UTF-8 sequence, then 255 * Is this code unit a trail surrogate (U+dc00..U+dfff)? 287 * from its lead and trail surrogates. 289 * lead and trail surrogates. 292 * @param trail trail surrogate (U+dc00..U+dfff) 296 #define CBU16_GET_SUPPLEMENTARY(lead, trail) \ 297 (((base_icu::UChar32)(lead)<<10UL)+(base_icu::UChar32)(trail) [all...] |
/external/webkit/WebCore/platform/graphics/haiku/ |
H A D | GlyphPageTreeNodeHaiku.cpp | 51 UChar trail = characterBuffer[i * 2 + 1]; local 52 character = U16_GET_SUPPLEMENTARY(lead, trail);
|
/external/webkit/WebCore/platform/graphics/wx/ |
H A D | GlyphMapWx.cpp | 47 UChar trail = buffer[i * 2 + 1]; local 48 character = U16_GET_SUPPLEMENTARY(lead, trail);
|
/external/chromium/third_party/icu/source/common/ |
H A D | ucnv_u16.c | 56 UChar c, trail; local 91 if((c=(UChar)cnv->fromUChar32)!=0 && U16_IS_TRAIL(trail=*source) && targetCapacity>=4) { 97 target[2]=(uint8_t)(trail>>8); 98 target[3]=(uint8_t)trail; 129 } else if(U16_IS_SURROGATE_LEAD(c) && count>=2 && U16_IS_TRAIL(trail=*source)) { 134 target[2]=(uint8_t)(trail>>8); 135 target[3]=(uint8_t)trail; 151 } else if(U16_IS_SURROGATE_LEAD(c) && count>=2 && U16_IS_TRAIL(trail=*source)) { 156 target[2]=(uint8_t)(trail>>8); 157 target[3]=(uint8_t)trail; 260 UChar c, trail; local 524 UChar trail; local 655 UChar c, trail; local 859 UChar c, trail; local 1123 UChar trail; local [all...] |
H A D | utf_impl.c | 112 uint8_t trail, illegal=0; local 115 /* count==0 for illegally leading trail bytes and the illegal bytes 0xfe and 0xff */ 120 /* count>=4 is always illegal: no more than 3 trail bytes in Unicode's UTF-8 */ 124 trail=s[(i)++]; 125 (c)=((c)<<6)|(trail&0x3f); 127 illegal|=(trail&0xc0)^0x80; 134 trail=s[(i)++]; 135 (c)=((c)<<6)|(trail&0x3f); 136 illegal|=(trail&0xc0)^0x80; 138 trail [all...] |
H A D | bmpset.cpp | 65 int32_t trail=start&0x3f; local 70 table[trail]|=bits; 79 while(trail<limitTrail) { 80 table[trail++]|=bits; 86 if(trail>0) { 88 table[trail++]|=bits; 89 } while(trail<64); 97 for(trail=0; trail<64; ++trail) { [all...] |
H A D | ustrtrns.c | 261 * *ps points to after the lead byte and will be moved to after the last trail byte. 268 uint8_t trail, illegal=0; local 271 /* count==0 for illegally leading trail bytes and the illegal bytes 0xfe and 0xff */ 276 /* count>=4 is always illegal: no more than 3 trail bytes in Unicode's UTF-8 */ 280 trail=(uint8_t)(*s++ - 0x80); 281 c=(c<<6)|trail; 282 if(trail>0x3f || c>=0x110) { 283 /* not a trail byte, or code point>0x10ffff (outside Unicode) */ 288 trail=(uint8_t)(*s++ - 0x80); 289 if(trail> 336 uint8_t trail, illegal=0; local [all...] |
H A D | ucnvscsu.c | 1029 UChar lead, trail; local 1107 trail=*source; 1108 if(UTF_IS_SECOND_SURROGATE(trail)) { 1111 c=UTF16_GET_PAIR_VALUE(c, trail); 1125 /* this is an unmatched trail code unit (2nd surrogate) */ 1158 /* change to Unicode mode and output this (lead, trail) pair */ 1165 c=((uint32_t)lead<<16)|trail; 1304 trail=*source; 1305 if(UTF_IS_SECOND_SURROGATE(trail)) { 1308 c=UTF16_GET_PAIR_VALUE(c, trail); 1519 UChar lead, trail; local [all...] |
/external/icu4c/common/ |
H A D | ucnv_u16.c | 56 UChar c, trail; local 91 if((c=(UChar)cnv->fromUChar32)!=0 && U16_IS_TRAIL(trail=*source) && targetCapacity>=4) { 97 target[2]=(uint8_t)(trail>>8); 98 target[3]=(uint8_t)trail; 129 } else if(U16_IS_SURROGATE_LEAD(c) && count>=2 && U16_IS_TRAIL(trail=*source)) { 134 target[2]=(uint8_t)(trail>>8); 135 target[3]=(uint8_t)trail; 151 } else if(U16_IS_SURROGATE_LEAD(c) && count>=2 && U16_IS_TRAIL(trail=*source)) { 156 target[2]=(uint8_t)(trail>>8); 157 target[3]=(uint8_t)trail; 260 UChar c, trail; local 524 UChar trail; local 658 UChar c, trail; local 862 UChar c, trail; local 1126 UChar trail; local [all...] |
H A D | utf_impl.c | 112 uint8_t trail, illegal=0; local 115 /* count==0 for illegally leading trail bytes and the illegal bytes 0xfe and 0xff */ 120 /* count>=4 is always illegal: no more than 3 trail bytes in Unicode's UTF-8 */ 124 trail=s[(i)++]; 125 (c)=((c)<<6)|(trail&0x3f); 127 illegal|=(trail&0xc0)^0x80; 134 trail=s[(i)++]; 135 (c)=((c)<<6)|(trail&0x3f); 136 illegal|=(trail&0xc0)^0x80; 138 trail [all...] |
H A D | bmpset.cpp | 65 int32_t trail=start&0x3f; local 70 table[trail]|=bits; 79 while(trail<limitTrail) { 80 table[trail++]|=bits; 86 if(trail>0) { 88 table[trail++]|=bits; 89 } while(trail<64); 97 for(trail=0; trail<64; ++trail) { [all...] |
H A D | ustrtrns.c | 263 * *ps points to after the lead byte and will be moved to after the last trail byte. 270 uint8_t trail, illegal=0; local 273 /* count==0 for illegally leading trail bytes and the illegal bytes 0xfe and 0xff */ 278 /* count>=4 is always illegal: no more than 3 trail bytes in Unicode's UTF-8 */ 282 trail=(uint8_t)(*s++ - 0x80); 283 c=(c<<6)|trail; 284 if(trail>0x3f || c>=0x110) { 285 /* not a trail byte, or code point>0x10ffff (outside Unicode) */ 290 trail=(uint8_t)(*s++ - 0x80); 291 if(trail> 338 uint8_t trail, illegal=0; local [all...] |
H A D | ucnvscsu.c | 1029 UChar lead, trail; local 1107 trail=*source; 1108 if(UTF_IS_SECOND_SURROGATE(trail)) { 1111 c=UTF16_GET_PAIR_VALUE(c, trail); 1125 /* this is an unmatched trail code unit (2nd surrogate) */ 1158 /* change to Unicode mode and output this (lead, trail) pair */ 1165 c=((uint32_t)lead<<16)|trail; 1304 trail=*source; 1305 if(UTF_IS_SECOND_SURROGATE(trail)) { 1308 c=UTF16_GET_PAIR_VALUE(c, trail); 1519 UChar lead, trail; local [all...] |
/external/icu4c/layout/ |
H A D | HangulLayoutEngine.cpp | 111 static le_int32 compose(LEUnicode lead, LEUnicode vowel, LEUnicode trail, LEUnicode &syllable) argument 115 le_int32 tIndex = trail - TJMO_FIRST; 132 static le_int32 decompose(LEUnicode syllable, LEUnicode &lead, LEUnicode &vowel, LEUnicode &trail) argument 142 trail = TJMO_FIRST + (sIndex % TJMO_COUNT); 144 if (trail == TJMO_FIRST) { 151 static le_int32 getCharClass(LEUnicode ch, LEUnicode &lead, LEUnicode &vowel, LEUnicode &trail) argument 155 trail = TJMO_FIRST; 168 trail = ch; 172 le_int32 c = decompose(ch, lead, vowel, trail); 182 trail 250 LEUnicode trail = 0; local 310 LEUnicode trail = outLength == 3? outChars[outStart + 2] : TJMO_FIRST; local [all...] |
/external/webkit/JavaScriptCore/wtf/unicode/glib/ |
H A D | UnicodeMacrosFromICU.h | 33 #define U16_GET_SUPPLEMENTARY(lead, trail) \ 34 (((UChar32)(lead)<<10UL)+(UChar32)(trail)-U16_SURROGATE_OFFSET)
|
/external/chromium/third_party/icu/source/tools/tzcode/ |
H A D | zdump.c | 829 register int trail; local 853 trail = timeptr->tm_year % DIVISOR + TM_YEAR_BASE % DIVISOR; 855 trail / DIVISOR; 856 trail %= DIVISOR; 857 if (trail < 0 && lead > 0) { 858 trail += DIVISOR; 860 } else if (lead < 0 && trail > 0) { 861 trail -= DIVISOR; 865 (void) printf("%d", trail); 866 else (void) printf("%d%d", lead, ((trail < 932 register int trail; local [all...] |
/external/icu4c/tools/tzcode/ |
H A D | zdump.c | 829 register int trail; local 853 trail = timeptr->tm_year % DIVISOR + TM_YEAR_BASE % DIVISOR; 855 trail / DIVISOR; 856 trail %= DIVISOR; 857 if (trail < 0 && lead > 0) { 858 trail += DIVISOR; 860 } else if (lead < 0 && trail > 0) { 861 trail -= DIVISOR; 865 (void) printf("%d", trail); 866 else (void) printf("%d%d", lead, ((trail < 932 register int trail; local [all...] |
/external/icu4c/tools/gennorm2/ |
H A D | n2builder.cpp | 94 CompositionPair(UChar32 t, UChar32 c) : trail(t), composite(c) {} 95 UChar32 trail, composite; member in struct:CompositionPair 331 UChar32 trail=m.char32At(m.length()-1); local 341 createNorm(trail)->combinesBack=TRUE; 342 // Insert (trail, composite) pair into compositions list for the lead character. 343 CompositionPair pair(trail, start); 350 // Insertion sort, and check for duplicate trail characters. 353 if(trail==it->trail) { 357 (long)start, (long)lead, (long)trail); [all...] |
/external/chromium/third_party/icu/source/i18n/ |
H A D | ucol_wgt.c | 57 setWeightTrail(uint32_t weight, int32_t length, uint32_t trail) { argument 59 return (uint32_t)((weight&(0xffffff00<<length))|(trail<<length)); 147 uint32_t weight, trail; local 200 trail=getWeightTrail(weight, length); 201 if(trail<maxByte) { 205 lower[length].count=maxByte-trail; 213 trail=getWeightTrail(weight, length); 214 if(trail>UCOL_BYTE_FIRST_TAILORED) { 218 upper[length].count=trail-UCOL_BYTE_FIRST_TAILORED;
|
/external/icu4c/i18n/ |
H A D | ucol_wgt.cpp | 57 setWeightTrail(uint32_t weight, int32_t length, uint32_t trail) { argument 59 return (uint32_t)((weight&(0xffffff00<<length))|(trail<<length)); 147 uint32_t weight, trail; local 200 trail=getWeightTrail(weight, length); 201 if(trail<maxByte) { 205 lower[length].count=maxByte-trail; 213 trail=getWeightTrail(weight, length); 214 if(trail>UCOL_BYTE_FIRST_TAILORED) { 218 upper[length].count=trail-UCOL_BYTE_FIRST_TAILORED;
|
/external/webkit/WebCore/platform/android/ |
H A D | KeyEventAndroid.cpp | 205 UChar trail = U16_TRAIL(c); local 206 UChar utf16[2] = {lead, trail};
|
/external/chromium/third_party/icu/source/test/cintltst/ |
H A D | sprpdata.c | 210 UChar trail = UTF16_TRAIL(mapping[i]); local 212 mappingData[index+i+1] != trail){ 213 log_err( "Did not get the expected result. Expected: 0x%04X 0x%04X Got: 0x%04X 0x%04X\n", lead, trail, mappingData[index+i], mappingData[index+i+1]); 244 // get the real data from the folded lead/trail units
|
/external/icu4c/test/cintltst/ |
H A D | sprpdata.c | 210 UChar trail = UTF16_TRAIL(mapping[i]); local 212 mappingData[index+i+1] != trail){ 213 log_err( "Did not get the expected result. Expected: 0x%04X 0x%04X Got: 0x%04X 0x%04X\n", lead, trail, mappingData[index+i], mappingData[index+i+1]); 244 // get the real data from the folded lead/trail units
|
/external/chromium/third_party/icu/source/test/intltest/ |
H A D | testidn.cpp | 387 UChar trail = UTF16_TRAIL(mapping[i]); local 389 mappingData[index+i+1] != trail){ 390 pTestIDNA->errln( "Did not get the expected result. Expected: 0x%04X 0x%04X Got: 0x%04X 0x%04X", lead, trail, mappingData[index+i], mappingData[index+i+1]); 419 // get the real data from the folded lead/trail units
|