HomeSort by relevance Sort by last modified time
    Searched refs:lead (Results 26 - 50 of 104) sorted by null

12 3 4 5

  /external/chromium_org/base/third_party/icu/
icu_utf.h 95 * is it a lead surrogate?
109 * Count the trail bytes for a UTF-8 lead byte.
115 * Mask a UTF-8 lead byte, leave only the lower bits that form part of the code point value.
129 * Is this code unit (byte) a UTF-8 lead byte?
181 * The offset may point to the lead byte of a multi-byte sequence,
248 * Is this code unit a lead surrogate (U+d800..U+dbff)?
273 * is it a lead surrogate?
288 * from its lead and trail surrogates.
290 * lead and trail surrogates.
292 * @param lead lead surrogate (U+d800..U+dbff
    [all...]
  /external/chromium_org/v8/test/mjsunit/
array-push4.js 40 // and don't lead to overzealous optimization.
array-push5.js 10 // property detected and don't lead to overzealous optimization.
  /external/chromium_org/third_party/icu/source/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
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...]
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...]
  /external/icu/icu4c/source/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
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...]
custrtst.c 711 static const UChar a=0x61, b=0x62, lead=0xd801, trail=0xdc02, nul=0; local
811 first!=u_strchr(s+1, lead) ||
812 first!=u_strchr32(s+1, lead) ||
813 first!=u_memchr(s+1, lead, 9) ||
814 first!=u_memchr32(s+1, lead, 9) ||
817 first!=u_strFindFirst(s+1, -1, &lead, 1) ||
819 first!=u_strFindFirst(s+1, 9, &lead, 1) ||
820 first!=u_strrchr(s+1, lead) ||
821 first!=u_strrchr32(s+1, lead) ||
822 first!=u_memrchr(s+1, lead, 9) |
    [all...]
  /external/chromium_org/third_party/icu/source/common/
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...]
utrie2.cpp 574 * Enumerate values for lead surrogate code points, not code units:
700 utrie2_enumForLeadSurrogate(const UTrie2 *trie, UChar32 lead,
703 if(!U16_IS_LEAD(lead)) {
706 lead=(lead-0xd7c0)<<10; /* start code point */
707 enumEitherTrie(trie, lead, lead+0x400, enumValue, enumRange, context);
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...]
ucnvbocu.cpp 63 /* number of lead bytes */
79 /* number of lead bytes for positive and negative 2/3/4-byte sequences */
98 /* The lead byte start values. */
109 /* The length of a byte sequence, according to the lead byte (!=BOCU1_RESET). */
110 #define BOCU1_LENGTH_FROM_LEAD(lead) \
111 ((BOCU1_START_NEG_2<=(lead) && (lead)<BOCU1_START_POS_2) ? 1 : \
112 (BOCU1_START_NEG_3<=(lead) && (lead)<BOCU1_START_POS_3) ? 2 : \
113 (BOCU1_START_NEG_4<=(lead) && (lead)<BOCU1_START_POS_4) ? 3 : 4
    [all...]
ucnvscsu.c 1030 UChar lead, trail; local
1520 UChar lead, trail; local
    [all...]
  /external/icu/icu4c/source/common/
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...]
utrie2.cpp 603 * Enumerate values for lead surrogate code points, not code units:
729 utrie2_enumForLeadSurrogate(const UTrie2 *trie, UChar32 lead,
732 if(!U16_IS_LEAD(lead)) {
735 lead=(lead-0xd7c0)<<10; /* start code point */
736 enumEitherTrie(trie, lead, lead+0x400, enumValue, enumRange, context);
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...]
ucnvbocu.cpp 63 /* number of lead bytes */
79 /* number of lead bytes for positive and negative 2/3/4-byte sequences */
98 /* The lead byte start values. */
109 /* The length of a byte sequence, according to the lead byte (!=BOCU1_RESET). */
110 #define BOCU1_LENGTH_FROM_LEAD(lead) \
111 ((BOCU1_START_NEG_2<=(lead) && (lead)<BOCU1_START_POS_2) ? 1 : \
112 (BOCU1_START_NEG_3<=(lead) && (lead)<BOCU1_START_POS_3) ? 2 : \
113 (BOCU1_START_NEG_4<=(lead) && (lead)<BOCU1_START_POS_4) ? 3 : 4
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
testidn.cpp 386 UChar lead = U16_LEAD(mapping[i]); local
388 if(mappingData[index+i] != lead ||
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]);
415 // get data for lead surrogate
419 // get the real data from the folded lead/trail units
  /external/icu/icu4c/source/test/intltest/
testidn.cpp 386 UChar lead = U16_LEAD(mapping[i]); local
388 if(mappingData[index+i] != lead ||
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]);
415 // get data for lead surrogate
419 // get the real data from the folded lead/trail units
  /external/icu/icu4c/source/i18n/
collationdatareader.cpp 290 // Mark each lead surrogate as "unsafe"
293 for(UChar lead = 0xd800; lead < 0xdc00; ++lead, c += 0x400) {
295 tailoring.unsafeBackwardSet->add(lead);
  /external/chromium_org/third_party/icu/source/common/unicode/
utf16.h 51 * Is this code unit a lead surrogate (U+d800..U+dbff)?
76 * is it a lead surrogate?
100 * from its lead and trail surrogates.
102 * lead and trail surrogates.
104 * @param lead lead surrogate (U+d800..U+dbff)
109 #define U16_GET_SUPPLEMENTARY(lead, trail) \
110 (((UChar32)(lead)<<10UL)+(UChar32)(trail)-U16_SURROGATE_OFFSET)
114 * Get the lead surrogate (0xd800..0xdbff) for a
117 * @return lead surrogate (U+d800..U+dbff) for supplementar
    [all...]
  /external/chromium_org/v8/test/webkit/
dfg-force-exit-then-sparse-conditional-constant-prop-in-loop.js 25 "Checks that increased aggressiveness in sparse conditional constant propagation resultin from a node being proven to be force exit does not lead to a cascade of unsound decisions."
  /external/icu/icu4c/source/common/unicode/
utf16.h 51 * Is this code unit a lead surrogate (U+d800..U+dbff)?
76 * is it a lead surrogate?
100 * from its lead and trail surrogates.
102 * lead and trail surrogates.
104 * @param lead lead surrogate (U+d800..U+dbff)
109 #define U16_GET_SUPPLEMENTARY(lead, trail) \
110 (((UChar32)(lead)<<10UL)+(UChar32)(trail)-U16_SURROGATE_OFFSET)
114 * Get the lead surrogate (0xd800..0xdbff) for a
117 * @return lead surrogate (U+d800..U+dbff) for supplementar
    [all...]
  /external/chromium_org/third_party/jinja2/
utils.py 20 '^(?P<lead>(?:%s)*)(?P<middle>.*?)(?P<trail>(?:%s)*)$' % (
205 lead, middle, trail = match.groups()
225 if lead + middle + trail != word:
226 words[i] = lead + middle + trail

Completed in 1950 milliseconds

12 3 4 5