HomeSort by relevance Sort by last modified time
    Searched defs:trail (Results 26 - 50 of 71) sorted by null

12 3

  /external/chromium_org/third_party/icu/source/common/
ucnvbocu.cpp 66 /* adjust trail byte counts for the use of some C0 control byte values */
70 /* number of trail bytes */
144 * but are also used as trail bytes in difference encoding
152 * to trail byte values 0..19 (0..0x13) as used in the difference calculation.
153 * External byte values that are illegal as trail bytes are mapped to -1.
175 * from trail byte values 0..19 (0..0x13) as used in the difference calculation
488 UChar trail=*source; local
489 if(U16_IS_TRAIL(trail)) {
492 c=U16_GET_SUPPLEMENTARY(c, trail);
723 UChar trail=*source local
    [all...]
uiter.cpp 874 UChar trail=U16_TRAIL(iter->reservedField); local
879 return trail;
ucnv_ct.c 363 /*look ahead to find the trail surrogate*/
366 UChar trail=(UChar) *source; local
367 if(U16_IS_TRAIL(trail)) {
369 sourceChar=U16_GET_SUPPLEMENTARY(sourceChar, trail);
386 /* this is an unmatched trail code unit (2nd surrogate) */
ucnvscsu.c 1030 UChar lead, trail; local
1520 UChar lead, trail; local
    [all...]
ustring.cpp 223 UChar cs, lead=U16_LEAD(c), trail=U16_TRAIL(c); local
226 if(cs==lead && *s==trail) {
266 const UChar *limit=s+count-1; /* -1 so that we do not need a separate check for the trail unit */
267 UChar lead=U16_LEAD(c), trail=U16_TRAIL(c); local
270 if(*s==lead && *(s+1)==trail) {
398 UChar cs, lead=U16_LEAD(c), trail=U16_TRAIL(c); local
401 if(cs==lead && *s==trail) {
442 UChar lead=U16_LEAD(c), trail=U16_TRAIL(c); local
445 if(*limit==trail && *(limit-1)==lead) {
508 stringCh = c; /* unpaired trail surrogate *
    [all...]
ucnvisci.c 1065 UChar trail= (*source); local
    [all...]
  /external/icu/icu4c/source/common/
ucnvbocu.cpp 66 /* adjust trail byte counts for the use of some C0 control byte values */
70 /* number of trail bytes */
144 * but are also used as trail bytes in difference encoding
152 * to trail byte values 0..19 (0..0x13) as used in the difference calculation.
153 * External byte values that are illegal as trail bytes are mapped to -1.
175 * from trail byte values 0..19 (0..0x13) as used in the difference calculation
488 UChar trail=*source; local
489 if(U16_IS_TRAIL(trail)) {
492 c=U16_GET_SUPPLEMENTARY(c, trail);
723 UChar trail=*source local
    [all...]
uiter.cpp 874 UChar trail=U16_TRAIL(iter->reservedField); local
879 return trail;
ucnv_ct.c 363 /*look ahead to find the trail surrogate*/
366 UChar trail=(UChar) *source; local
367 if(U16_IS_TRAIL(trail)) {
369 sourceChar=U16_GET_SUPPLEMENTARY(sourceChar, trail);
386 /* this is an unmatched trail code unit (2nd surrogate) */
ucnvscsu.c 1030 UChar lead, trail; local
1520 UChar lead, trail; local
    [all...]
ustring.cpp 223 UChar cs, lead=U16_LEAD(c), trail=U16_TRAIL(c); local
226 if(cs==lead && *s==trail) {
266 const UChar *limit=s+count-1; /* -1 so that we do not need a separate check for the trail unit */
267 UChar lead=U16_LEAD(c), trail=U16_TRAIL(c); local
270 if(*s==lead && *(s+1)==trail) {
398 UChar cs, lead=U16_LEAD(c), trail=U16_TRAIL(c); local
401 if(cs==lead && *s==trail) {
442 UChar lead=U16_LEAD(c), trail=U16_TRAIL(c); local
445 if(*limit==trail && *(limit-1)==lead) {
508 stringCh = c; /* unpaired trail surrogate *
    [all...]
ucnvisci.c 1065 UChar trail= (*source); local
    [all...]
  /external/icu/icu4c/source/i18n/
collationiterator.cpp 409 UChar trail; local
410 if(U16_IS_TRAIL(trail = handleGetTrailSurrogate())) {
411 c = U16_GET_SUPPLEMENTARY(c, trail);
    [all...]
rulebasedcollator.cpp 835 UChar trail; local
836 if(U16_IS_LEAD(c) && s != limit && U16_IS_TRAIL(trail = *s)) {
838 c = U16_GET_SUPPLEMENTARY(c, trail);
    [all...]
  /external/icu/icu4c/source/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...]
  /external/icu/icu4c/source/test/cintltst/
custrtst.c 711 static const UChar a=0x61, b=0x62, lead=0xd801, trail=0xdc02, nul=0; local
836 first!=u_strchr(s+1, trail) ||
837 first!=u_strchr32(s+1, trail) ||
838 first!=u_memchr(s+1, trail, 9) ||
839 first!=u_memchr32(s+1, trail, 9) ||
842 first!=u_strFindFirst(s+1, -1, &trail, 1) ||
844 first!=u_strFindFirst(s+1, 9, &trail, 1) ||
845 first!=u_strrchr(s+1, trail) ||
846 first!=u_strrchr32(s+1, trail) ||
847 first!=u_memrchr(s+1, trail, 9) |
    [all...]
cnormtst.c 1359 UChar32 c, lead, trail; local
    [all...]
  /frameworks/base/core/java/android/text/format/
TimeFormatter.java 419 int trail; local
422 trail = value % DIVISOR;
423 lead = value / DIVISOR + trail / DIVISOR;
424 trail %= DIVISOR;
425 if (trail < 0 && lead > 0) {
426 trail += DIVISOR;
428 } else if (lead < 0 && trail > 0) {
429 trail -= DIVISOR;
433 if (lead == 0 && trail < 0) {
440 int n = ((trail < 0) ? -trail : trail)
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
cnormtst.c 1359 UChar32 c, lead, trail; local
    [all...]
custrtst.c 715 static const UChar a=0x61, b=0x62, lead=0xd801, trail=0xdc02, nul=0; local
840 first!=u_strchr(s+1, trail) ||
841 first!=u_strchr32(s+1, trail) ||
842 first!=u_memchr(s+1, trail, 9) ||
843 first!=u_memchr32(s+1, trail, 9) ||
846 first!=u_strFindFirst(s+1, -1, &trail, 1) ||
848 first!=u_strFindFirst(s+1, 9, &trail, 1) ||
849 first!=u_strrchr(s+1, trail) ||
850 first!=u_strrchr32(s+1, trail) ||
851 first!=u_memrchr(s+1, trail, 9) |
    [all...]
  /external/chromium_org/third_party/icu/source/tools/gennorm2/
n2builder.cpp 94 CompositionPair(UChar32 t, UChar32 c) : trail(t), composite(c) {}
95 UChar32 trail, composite; member in struct:CompositionPair
129 UVector32 *compositions; // (trail, composite) pairs
366 UChar32 trail=m.char32At(m.length()-1); local
376 createNorm(trail)->combinesBack=TRUE;
377 // Insert (trail, composite) pair into compositions list for the lead character.
386 // Insertion sort, and check for duplicate trail characters.
390 if(trail==pairs[i].trail) {
394 (long)start, (long)lead, (long)trail);
    [all...]
  /external/chromium_org/third_party/icu/source/tools/tzcode/
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 < 0) ? -trail : trail))
932 register int trail; local
    [all...]
  /external/icu/icu4c/source/tools/gennorm2/
n2builder.cpp 94 CompositionPair(UChar32 t, UChar32 c) : trail(t), composite(c) {}
95 UChar32 trail, composite; member in struct:CompositionPair
129 UVector32 *compositions; // (trail, composite) pairs
366 UChar32 trail=m.char32At(m.length()-1); local
376 createNorm(trail)->combinesBack=TRUE;
377 // Insert (trail, composite) pair into compositions list for the lead character.
386 // Insertion sort, and check for duplicate trail characters.
390 if(trail==pairs[i].trail) {
394 (long)start, (long)lead, (long)trail);
    [all...]
  /external/icu/icu4c/source/tools/tzcode/
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 < 0) ? -trail : trail))
932 register int trail; local
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/locks/
AbstractQueuedLongSynchronizer.java 1658 Node trail = null; local
    [all...]

Completed in 1455 milliseconds

12 3