HomeSort by relevance Sort by last modified time
    Searched refs:trail (Results 26 - 45 of 45) sorted by null

12

  /external/webkit/Source/WebCore/icu/unicode/
utf16.h 61 * Is this code unit a trail surrogate (U+dc00..U+dfff)?
93 * from its lead and trail surrogates.
95 * lead and trail surrogates.
98 * @param trail trail surrogate (U+dc00..U+dfff)
102 #define U16_GET_SUPPLEMENTARY(lead, trail) \
103 (((UChar32)(lead)<<10UL)+(UChar32)(trail)-U16_SURROGATE_OFFSET)
116 * Get the trail surrogate (0xdc00..0xdfff) for a
119 * @return trail surrogate (U+dc00..U+dfff) for supplementary
145 * The offset may point to either the lead or trail surrogate uni
    [all...]
  /external/webkit/Source/WebKit/mac/icu/unicode/
utf16.h 61 * Is this code unit a trail surrogate (U+dc00..U+dfff)?
93 * from its lead and trail surrogates.
95 * lead and trail surrogates.
98 * @param trail trail surrogate (U+dc00..U+dfff)
102 #define U16_GET_SUPPLEMENTARY(lead, trail) \
103 (((UChar32)(lead)<<10UL)+(UChar32)(trail)-U16_SURROGATE_OFFSET)
116 * Get the trail surrogate (0xdc00..0xdfff) for a
119 * @return trail surrogate (U+dc00..U+dfff) for supplementary
145 * The offset may point to either the lead or trail surrogate uni
    [all...]
  /external/icu4c/test/cintltst/
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...]
cnormtst.c 1355 UChar32 c, lead, trail; local
    [all...]
  /external/icu4c/common/
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) */
ucnv2022.c 1490 uint8_t trail; local
1672 UChar trail=(UChar) *source; local
2449 UChar trail=(UChar) *source; local
2921 UChar trail=(UChar) *source; local
    [all...]
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...]
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
utext.cpp 178 // never on the trail half of a surrogate pair.
200 UChar32 trail = 0; local
203 // The trail surrogate is in the same chunk.
204 trail = ut->chunkContents[ut->chunkOffset+1];
206 // The trail surrogate is in a different chunk.
208 // into the new chunk, get the trail surrogate, then revert the chunk back to the
211 // leading surrogate. The attempt to access the trail will fail, but
216 trail = ut->chunkContents[ut->chunkOffset];
226 if (U16_IS_TRAIL(trail)) {
227 supplementaryC = U16_GET_SUPPLEMENTARY(c, trail);
286 UChar32 trail = ut->chunkContents[ut->chunkOffset]; 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
3359 UChar trail=*source; local
3564 UChar trail=*source; local
3813 UChar trail=*source; local
4242 UChar trail=*source; local
    [all...]
normalizer2impl.cpp 439 } else /* trail surrogate */ {
513 // get the decomposition and the lead and trail cc's
634 * and a backward-combining "trail" character.
636 * If the lead and trail characters combine, then this function returns
642 * The compositions list has (trail, compositeAndFwd) pair entries,
646 * The list is sorted by ascending trail characters (there are no duplicates).
652 int32_t Normalizer2Impl::combine(const uint16_t *list, UChar32 trail) {
654 if(trail<COMP_1_TRAIL_LIMIT) {
655 // trail character is 0..33FF
657 key1=(uint16_t)(trail<<1)
    [all...]
uiter.cpp 885 UChar trail=U16_TRAIL(iter->reservedField); local
890 return trail;
ucnvisci.c 1062 UChar trail= (*source); local
    [all...]
normalizer2impl.h 42 JAMO_T_BASE=0x11a7, /* "trail" jamo */
460 static int32_t combine(const uint16_t *list, UChar32 trail);
563 * bits 7..0 trail combining class
579 * bits 7..0 trail combining class
609 * bits 7..0 trail combining class
  /external/icu4c/tools/gennorm/
store.c 132 * The lead and trail code points combine into the the combined one,
133 * i.e., there is a canonical decomposition of combined-> <lead, trail>.
136 * After processCombining(), they contain the indexes of the lead and trail
143 uint32_t lead, trail, combined; member in struct:CombiningTriple
414 addCombiningTriple(uint32_t lead, uint32_t trail, uint32_t combined) {
427 createNorm(trail)->combiningFlags|=2; /* combines backward */
430 addCombiningCP(trail, 2);
434 triple->trail=trail;
459 /* add lead and trail indexes to the triples for sorting *
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/locks/
AbstractQueuedLongSynchronizer.java 1660 Node trail = null; local
    [all...]
AbstractQueuedSynchronizer.java 1890 Node trail = null; local
    [all...]
  /external/icu4c/samples/uciter8/
uit_len8.c 411 UChar trail=U16_TRAIL(iter->reservedField); local
416 return trail;
  /external/icu4c/i18n/
ucol.cpp 1834 UChar trail; local
3069 UChar trail = getNextNormalizedChar(source); local
3233 UChar trail; local
    [all...]
  /external/webkit/Source/WebKit/android/nav/
SelectText.cpp 135 UChar trail = *start++; local
136 if (!U16_IS_SURROGATE(trail))
139 *start++ = trail;
    [all...]

Completed in 263 milliseconds

12