/external/webkit/WebCore/platform/graphics/haiku/ |
GlyphPageTreeNodeHaiku.cpp | 51 UChar trail = characterBuffer[i * 2 + 1]; local 52 character = U16_GET_SUPPLEMENTARY(lead, trail);
|
/external/webkit/WebCore/platform/graphics/wx/ |
GlyphMapWx.cpp | 47 UChar trail = buffer[i * 2 + 1]; local 48 character = U16_GET_SUPPLEMENTARY(lead, trail);
|
/external/webkit/WebCore/platform/android/ |
KeyEventAndroid.cpp | 205 UChar trail = U16_TRAIL(c); local 206 UChar utf16[2] = {lead, trail};
|
/external/icu4c/common/ |
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=s[(i)++] [all...] |
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...] |
ucnvlat1.c | 272 UChar trail=*source; local 273 if(U16_IS_TRAIL(trail)) { 275 cp=U16_GET_SUPPLEMENTARY(cp, trail); 288 /* this is an unmatched trail code unit (2nd surrogate) */ 362 * For Latin-1, adjust sourceLimit only for 1 trail byte because
|
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>0x3f) 336 uint8_t trail, illegal=0; local [all...] |
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...] |
ucnvhz.c | 209 /* if the first byte is equal to TILDE and the trail byte 250 /* trail byte */ 381 /* we can only use lead bytes 21..7D and trail bytes 21..7E */ 453 /*look ahead to find the trail surrogate*/ 456 UChar trail=(UChar) args->source[mySourceIndex]; local 457 if(UTF_IS_SECOND_SURROGATE(trail)) { 459 mySourceChar=UTF16_GET_PAIR_VALUE(args->converter->fromUChar32, trail); 474 /* this is an unmatched trail code unit (2nd surrogate) */
|
ucnvbocu.c | 63 /* adjust trail byte counts for the use of some C0 control byte values */ 67 /* number of trail bytes */ 141 * but are also used as trail bytes in difference encoding 149 * to trail byte values 0..19 (0..0x13) as used in the difference calculation. 150 * External byte values that are illegal as trail bytes are mapped to -1. 172 * from trail byte values 0..19 (0..0x13) as used in the difference calculation 483 UChar trail=*source; local 484 if(UTF_IS_SECOND_SURROGATE(trail)) { 487 c=UTF16_GET_PAIR_VALUE(c, trail); 718 UChar trail=*source local [all...] |
uiter.cpp | 885 UChar trail=U16_TRAIL(iter->reservedField); local 890 return trail;
|
ucnvscsu.c | 1029 UChar lead, trail; local 1519 UChar lead, trail; local [all...] |
ustring.c | 222 UChar cs, lead=U16_LEAD(c), trail=U16_TRAIL(c); local 225 if(cs==lead && *s==trail) { 265 const UChar *limit=s+count-1; /* -1 so that we do not need a separate check for the trail unit */ 266 UChar lead=U16_LEAD(c), trail=U16_TRAIL(c); local 269 if(*s==lead && *(s+1)==trail) { 397 UChar cs, lead=U16_LEAD(c), trail=U16_TRAIL(c); local 400 if(cs==lead && *s==trail) { 441 UChar lead=U16_LEAD(c), trail=U16_TRAIL(c); local 444 if(*limit==trail && *(limit-1)==lead) { 507 stringCh = c; /* unpaired trail surrogate * [all...] |
ucnvisci.c | 1062 UChar trail= (*source); local [all...] |
ucnvmbcs.c | 277 * at least two states for the trail bytes: 278 * One trail byte state that results in code points, and one that only 3280 UChar trail=*source; local 3485 UChar trail=*source; local 3734 UChar trail=*source; local 4144 UChar trail=*source; local [all...] |
/external/icu4c/samples/uciter8/ |
uit_len8.c | 411 UChar trail=U16_TRAIL(iter->reservedField); local 416 return trail;
|
/external/icu4c/test/cintltst/ |
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
|
cnormtst.c | 1397 UChar32 c, lead, trail; local [all...] |
/bionic/libc/tzcode/ |
strftime.c | 745 register int trail; local 748 trail = a % DIVISOR + b % DIVISOR; 749 lead = a / DIVISOR + b / DIVISOR + trail / DIVISOR; 750 trail %= DIVISOR; 751 if (trail < 0 && lead > 0) { 752 trail += DIVISOR; 754 } else if (lead < 0 && trail > 0) { 755 trail -= DIVISOR; 759 if (lead == 0 && trail < 0) 766 pt = _conv(((trail < 0) ? -trail : trail) [all...] |
/external/icu4c/i18n/ |
ucol_wgt.c | 57 setWeightTrail(uint32_t weight, int32_t length, uint32_t trail) { 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/test/intltest/ |
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
|
/system/core/libcutils/ |
tzstrftime.c | 695 register int trail; local 698 trail = a % DIVISOR + b % DIVISOR; 699 lead = a / DIVISOR + b / DIVISOR + trail / DIVISOR; 700 trail %= DIVISOR; 701 if (trail < 0 && lead > 0) { 702 trail += DIVISOR; 704 } else if (lead < 0 && trail > 0) { 705 trail -= DIVISOR; 709 if (lead == 0 && trail < 0) 716 pt = _conv(((trail < 0) ? -trail : trail) [all...] |
/external/icu4c/layout/ |
HangulLayoutEngine.cpp | 111 static le_int32 compose(LEUnicode lead, LEUnicode vowel, LEUnicode trail, LEUnicode &syllable) 115 le_int32 tIndex = trail - TJMO_FIRST; 132 static le_int32 decompose(LEUnicode syllable, LEUnicode &lead, LEUnicode &vowel, LEUnicode &trail) 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) 155 trail = TJMO_FIRST; 168 trail = ch; 172 le_int32 c = decompose(ch, lead, vowel, trail); 182 trail = ch 250 LEUnicode trail = 0; local 310 LEUnicode trail = outLength == 3? outChars[outStart + 2] : TJMO_FIRST; local [all...] |
/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/ |
LinkedBlockingQueue.java | 466 Node<E> trail = head; local 473 trail = p; 478 trail.next = p.next; 480 last = trail; 739 Node<E> trail = head; local 742 trail = p; 747 trail.next = p.next; 749 last = trail;
|
/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/locks/ |
AbstractQueuedSynchronizer.java | 1861 Node trail = null; local [all...] |