/bionic/libc/bionic/ |
c32rtomb.cpp | 67 uint8_t lead; local 70 lead = 0; 73 lead = 0xc0; 76 lead = 0xe0; 79 lead = 0xf0; 94 *s = (c32 & 0xff) | lead;
|
/external/chromium_org/third_party/icu/scripts/ |
sjis_gen.sh | 74 { lead = $1 / 188; \ 75 lead_offset = lead < 0x1F ? 0x81 : 0xC1; \ 81 lead + lead_offset, trail + trail_offset, tag);\ 94 # The upper bound for the lead byte is 0xF8 because each lead can 98 for lead in $(seq 0xF0 0xF8) 103 pointer=$((($lead - 0xC1) * 188 + $byte - $offset)) 105 printf "<U%4X> \\\x%02X\\\x%02X |3\n" $unicode $lead $byte
|
/external/strace/ |
strace-graph | 277 my ($pid, $lead) = @_; 301 print "$lead [$elapsed] @$argv\n"; 304 print "$lead @$argv\n"; 308 if ($lead =~ /-$/) { 309 display_pid_trace($$elem[1], "$lead--+--"); 311 display_pid_trace($$elem[1], "$lead +--"); 314 display_pid_trace($$elem[1], "$lead `--"); 316 display_pid_trace($$elem[1], "$lead +--"); 320 $lead =~ s/\`--/ /g; 321 $lead =~ s/-/ /g [all...] |
/external/chromium_org/ui/webui/resources/css/ |
list.css | 38 list > [lead], 39 grid > [lead] { 43 list:focus > [lead], 44 grid:focus > [lead] { 76 list:focus > [lead][selected], 78 grid:focus > [lead][selected],
|
table.css | 9 .table[has-element-focus] > list > [lead] { 19 .table[has-element-focus] > list > [lead][selected],
|
/external/chromium_org/third_party/icu/source/common/ |
bmpset.cpp | 70 int32_t lead=start>>6; // Named for UTF-8 2-byte lead byte with upper 5 bits. 74 uint32_t bits=(uint32_t)1<<lead; 83 if(lead==limitLead) { 96 ++lead; 98 if(lead<limitLead) { 99 bits=~((1<<lead)-1); 218 bits=3; // Lead bytes 0xC0 and 0xC1. 223 bits=1; // Lead byte 0xE0. 228 mask=~(0x10001<<0xd); // Lead byte 0xED [all...] |
/external/icu/icu4c/source/common/ |
bmpset.cpp | 70 int32_t lead=start>>6; // Named for UTF-8 2-byte lead byte with upper 5 bits. 74 uint32_t bits=(uint32_t)1<<lead; 83 if(lead==limitLead) { 96 ++lead; 98 if(lead<limitLead) { 99 bits=~((1<<lead)-1); 218 bits=3; // Lead bytes 0xC0 and 0xC1. 223 bits=1; // Lead byte 0xE0. 228 mask=~(0x10001<<0xd); // Lead byte 0xED [all...] |
/external/icu/icu4c/source/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/chromium_org/ui/file_manager/file_manager/foreground/css/ |
list.css | 32 list:focus > [lead], 33 grid:focus > [lead] {
|
table.css | 11 .table[hasElementFocus] > list > [lead] {
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/options/css/ |
list.css | 38 list:not([hasElementFocus]) > [lead][selected] { 44 list[hasElementFocus] > [lead][selected], 46 list:not([hasElementFocus]) > [selected][lead]:hover { 87 list > *:not(:hover):not([lead]) .close-button,
|
/external/chromium_org/chrome/browser/resources/options/ |
options_page.css | 199 list:not([has-element-focus]) > [lead][selected] { 205 list[has-element-focus] > [lead][selected], 207 list:not([has-element-focus]) > [selected][lead]:hover { 212 .settings-list[has-element-focus] > [lead], 213 .settings-list[has-element-focus] > [lead][selected] { 218 .settings-list[has-element-focus] > [lead]:nth-child(2), 219 .settings-list[has-element-focus] > [lead][selected]:nth-child(2) { 223 .settings-list[has-element-focus] > [lead]:nth-last-child(2), 224 .settings-list[has-element-focus] > [lead][selected]:nth-last-child(2) { 228 .settings-list[disabled] > [lead][selected] [all...] |
/external/chromium_org/v8/src/ |
unicode.h | 82 static inline bool IsSurrogatePair(int lead, int trail) { 83 return IsLeadSurrogate(lead) && IsTrailSurrogate(trail); 94 static inline int CombineSurrogatePair(uchar lead, uchar trail) { 95 return 0x10000 + ((lead & 0x3ff) << 10) + (trail & 0x3ff); 102 // 4 bytes and the 3 bytes that were used to encode the lead surrogate
|
/external/chromium_org/chrome/browser/resources/ |
about_invalidations.css | 11 #invalidations-info .lead {
|
/external/chromium_org/third_party/icu/source/test/cintltst/ |
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...] |
/external/icu/icu4c/source/test/cintltst/ |
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...] |
/bionic/libc/tzcode/ |
strftime.c | 705 register int lead; local 710 lead = a / DIVISOR + b / DIVISOR + trail / DIVISOR; 712 if (trail < 0 && lead > 0) { 714 --lead; 715 } else if (lead < 0 && trail > 0) { 717 ++lead; 720 if (lead == 0 && trail < 0) 722 else pt = _conv(lead, getformat(modifier, "%02d", "%2d", "%d", "%02d"), pt, ptlim);
|
/bionic/libc/upstream-openbsd/lib/libc/time/ |
wcsftime.c | 532 register int lead; local 537 lead = a / DIVISOR + b / DIVISOR + trail / DIVISOR; 539 if (trail < 0 && lead > 0) { 541 --lead; 542 } else if (lead < 0 && trail > 0) { 544 ++lead; 547 if (lead == 0 && trail < 0) 549 else pt = _conv(lead, L"%02d", pt, ptlim);
|
/external/deqp/framework/delibs/debase/ |
deString.c | 100 deBool deStringBeginsWith (const char* str, const char* lead) 103 const char* b = lead;
|
/frameworks/base/core/java/android/text/format/ |
TimeFormatter.java | 418 int lead; local 423 lead = value / DIVISOR + trail / DIVISOR; 425 if (trail < 0 && lead > 0) { 427 --lead; 428 } else if (lead < 0 && trail > 0) { 430 ++lead; 433 if (lead == 0 && trail < 0) { 436 numberFormatter.format(getFormat(modifier, "%02d", "%2d", "%d", "%02d"), lead); local
|
/external/chromium_org/third_party/icu/source/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/icu/icu4c/source/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/icu/icu4c/source/i18n/ |
utf16collationiterator.cpp | 111 UChar lead; local 112 if(U16_IS_TRAIL(c) && pos != start && U16_IS_LEAD(lead = *(pos - 1))) { 114 return U16_GET_SUPPLEMENTARY(lead, c); 314 UChar lead; local 315 if(U16_IS_TRAIL(c) && pos != start && U16_IS_LEAD(lead = *(pos - 1))) { 317 return U16_GET_SUPPLEMENTARY(lead, c);
|
/external/chromium_org/third_party/icu/source/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/icu/icu4c/source/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...] |