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

  /external/webkit/Source/WebCore/platform/graphics/haiku/
GlyphPageTreeNodeHaiku.cpp 50 UChar lead = characterBuffer[i * 2]; local
52 character = U16_GET_SUPPLEMENTARY(lead, trail);
  /external/webkit/Source/WebCore/platform/graphics/wx/
GlyphMapWx.cpp 46 UChar lead = buffer[i * 2]; local
48 character = U16_GET_SUPPLEMENTARY(lead, trail);
  /external/webkit/Source/WebCore/platform/android/
KeyEventAndroid.cpp 204 UChar lead = U16_LEAD(c); local
206 UChar utf16[2] = {lead, trail};
  /external/icu4c/samples/uciter8/
uit_len8.c 448 UChar lead=U16_LEAD(iter->reservedField); local
454 return lead;
  /external/icu4c/test/cintltst/
sprpdata.c 210 UChar lead = U16_LEAD(mapping[i]); local
212 if(mappingData[idx+i] != lead ||
214 log_err( "Did not get the expected result. Expected: 0x%04X 0x%04X Got: 0x%04X 0x%04X\n", lead, trail, mappingData[idx+i], mappingData[idx+i+1]);
241 // get data for lead surrogate
245 // get the real data from the folded lead/trail units
bocu1tst.c 75 /* number of lead bytes */
91 /* number of lead bytes for positive and negative 2/3/4-byte sequences */
110 /* The lead byte start values. */
121 /* The length of a byte sequence, according to the lead byte (!=BOCU1_RESET). */
122 #define BOCU1_LENGTH_FROM_LEAD(lead) \
123 ((BOCU1_START_NEG_2<=(lead) && (lead)<BOCU1_START_POS_2) ? 1 : \
124 (BOCU1_START_NEG_3<=(lead) && (lead)<BOCU1_START_POS_3) ? 2 : \
125 (BOCU1_START_NEG_4<=(lead) && (lead)<BOCU1_START_POS_4) ? 3 : 4
288 int32_t result, m, lead, count, shift; local
    [all...]
trie2test.c 207 /* test values for lead surrogate code units */
358 0xed, 0xa0, 0x80, /* lead surrogate U+d800 */
386 /* first a couple of trail bytes in lead position */
842 /* set some values for lead surrogate code units */
1334 UChar lead; local
    [all...]
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
815 first!=u_strchr(s+1, lead) ||
816 first!=u_strchr32(s+1, lead) ||
817 first!=u_memchr(s+1, lead, 9) ||
818 first!=u_memchr32(s+1, lead, 9) ||
821 first!=u_strFindFirst(s+1, -1, &lead, 1) ||
823 first!=u_strFindFirst(s+1, 9, &lead, 1) ||
824 first!=u_strrchr(s+1, lead) ||
825 first!=u_strrchr32(s+1, lead) ||
826 first!=u_memrchr(s+1, lead, 9) |
    [all...]
  /bionic/libc/tzcode/
strftime.c 745 register int lead; local
750 lead = a / DIVISOR + b / DIVISOR + trail / DIVISOR;
752 if (trail < 0 && lead > 0) {
754 --lead;
755 } else if (lead < 0 && trail > 0) {
757 ++lead;
760 if (lead == 0 && trail < 0)
762 else pt = _conv(lead, getformat(modifier, "%02d",
  /external/icu4c/test/intltest/
testidn.cpp 385 UChar lead = U16_LEAD(mapping[i]); local
387 if(mappingData[index+i] != lead ||
389 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]);
414 // get data for lead surrogate
418 // get the real data from the folded lead/trail units
  /external/icu4c/common/
uiter.cpp 925 UChar lead=U16_LEAD(iter->reservedField); local
931 return lead;
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) {
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) {
902 /* lead surrogate code point - make <d800 */
    [all...]
utrie2_builder.cpp 46 * Exception: Support for separate values for lead surrogate code _units_
59 * corresponding to one lead surrogate.
174 * Plus as many as needed for lead surrogate code points.
368 UChar lead; local
390 for(lead=0xd800; lead<0xdc00; ++lead) {
393 value=UTRIE2_GET16_FROM_U16_SINGLE_LEAD(other, lead);
395 value=UTRIE2_GET32_FROM_U16_SINGLE_LEAD(other, lead);
398 utrie2_set32ForLeadSurrogateCodeUnit(context.trie, lead, value, pErrorCode)
412 UChar lead; local
    [all...]
utext.cpp 129 UChar lead = ut->chunkContents[ut->chunkOffset-1]; local
130 if (U16_IS_LEAD(lead)) {
215 // the original position before the unpaired lead still needs to be restored.
284 // c is an unpaired lead surrogate at the end of the text.
291 // c was an unpaired lead surrogate, not at the end of the text.
317 // (A lead surrogate seen here is just returned as is, as a surrogate value.
330 UChar32 lead = ut->chunkContents[ut->chunkOffset-1]; local
331 if (U16_IS_LEAD(lead) == FALSE) {
337 UChar32 supplementary = U16_GET_SUPPLEMENTARY(lead, c);
338 ut->chunkOffset--; // move iteration position over the lead surrogate
    [all...]
  /external/icu4c/layout/
HangulLayoutEngine.cpp 111 static le_int32 compose(LEUnicode lead, LEUnicode vowel, LEUnicode trail, LEUnicode &syllable)
113 le_int32 lIndex = lead - LJMO_FIRST;
132 static le_int32 decompose(LEUnicode syllable, LEUnicode &lead, LEUnicode &vowel, LEUnicode &trail)
140 lead = LJMO_FIRST + (sIndex / HSYL_LVCNT);
151 static le_int32 getCharClass(LEUnicode ch, LEUnicode &lead, LEUnicode &vowel, LEUnicode &trail)
153 lead = LJMO_FILL;
158 lead = ch;
172 le_int32 c = decompose(ch, lead, vowel, trail);
248 LEUnicode lead = 0; local
251 int32_t chClass = getCharClass(chars[i], lead, vowel, trail)
308 LEUnicode lead = outChars[outStart]; local
    [all...]
  /external/icu4c/tools/gennorm2/
n2builder.cpp 365 UChar32 lead=m.char32At(0); local
367 if(getCC(lead)!=0) {
372 (long)start, (long)lead);
377 // Insert (trail, composite) pair into compositions list for the lead character.
379 Norm *leadNorm=createNorm(lead);
394 (long)start, (long)lead, (long)trail);
702 UChar32 lead= c<=0xffff ? c : U16_LEAD(c); local
703 smallFCD[lead>>8]|=(uint8_t)1<<((lead>>5)&7);
844 UChar32 lead= c<=0xffff ? c : U16_LEAD(c) local
    [all...]
  /external/icu4c/tools/tzcode/
zdump.c 828 register int lead; local
854 lead = timeptr->tm_year / DIVISOR + TM_YEAR_BASE / DIVISOR +
857 if (trail < 0 && lead > 0) {
859 --lead;
860 } else if (lead < 0 && trail > 0) {
862 ++lead;
864 if (lead == 0)
866 else (void) printf("%d%d", lead, ((trail < 0) ? -trail : trail));
931 register int lead; local
939 lead = loc.tm_year / DIVISOR + TM_YEAR_BASE / DIVISOR + trail / DIVISOR
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp 1710 const char *lead; local
1727 O << lead; local
    [all...]
  /external/icu4c/i18n/
ucol.cpp 1925 UChar lead; local
3479 UChar lead; local
3810 UChar lead = getPrevNormalizedChar(source, status); local
3892 UChar lead = getPrevNormalizedChar(source, status); local
    [all...]
  /external/v8/src/
objects.cc 7112 uint16_t lead = unibrow::Utf16::LeadSurrogate(c); local
7120 uint16_t lead = unibrow::Utf16::LeadSurrogate(c); local
    [all...]
  /external/v8/test/cctest/
test-api.cc 5836 uint16_t lead = StringGet(string, nchars - 2); local
    [all...]
  /prebuilts/tools/common/m2/internal/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar 

Completed in 3413 milliseconds