/external/webkit/WebCore/manual-tests/ |
go-back-after-alert.html | 3 This tests a bug where going back just before putting up an alert can lead to a crash.
|
/external/icu4c/i18n/ |
bocsu.h | 45 * - Similar to a UTF, encoding the length of the byte sequence in the lead bytes. 47 * (trail byte values may overlap with lead/single byte values). 53 * Instead, we split the lead byte range in the middle and encode non-negative values 60 * is added to a lead byte avoiding the single-byte range. 64 * for lead/single bytes so that the middle range of single bytes is as large 66 * Note that the lead byte ranges overlap some, but that the sequences as a whole 67 * are well ordered. I.e., even if the lead byte is the same for sequences of different 88 * Number of lead bytes: 106 * Symmetrical lead byte counts are for convenience. 108 * no advantage to asymmetrical lead byte counts [all...] |
/external/icu4c/common/ |
bmpset.cpp | 64 int32_t lead=start>>6; local 68 uint32_t bits=(uint32_t)1<<lead; 77 if(lead==limitLead) { 90 ++lead; 92 if(lead<limitLead) { 93 bits=~((1<<lead)-1); 209 bits=3; // Lead bytes 0xC0 and 0xC1. 214 bits=1; // Lead byte 0xE0. 219 mask=~(0x10001<<0xd); // Lead byte 0xED. 226 mask=~(0x10001<<0xd); // Lead byte 0xED 274 int lead=c>>12; local 315 int lead=c>>12; local 355 int lead=c>>12; local 404 int lead=c>>12; local 447 int lead=c>>12; local 700 int lead=c>>12; local [all...] |
utrie.h | 38 * even for lead surrogate code _points_, while the _FROM_LEAD() macros 39 * get special "folded" values for lead surrogate code _units_ if 45 * to get that offset from the folded value for a lead surrogate unit. 62 * Lead surrogate code points' index displacement in the index array. 83 * Number of index (stage 1) entries per lead surrogate. 109 * possible duplicate entries for 1024 lead surrogates.) 121 * BMP index + 1 index block for lead surrogate code points + 122 * Latin-1-linear array + 1 data block for lead surrogate code points 132 * Extract from a lead surrogate's data the 133 * index array offset of the indexes for that lead surrogate [all...] |
bmpset.h | 97 * One byte per ASCII character, or trail byte in lead position. 109 * lead=c{10..6} 111 * it is set.contains(c)==(table7FF[trail] bit lead) 123 * lead=c{15..12} 125 * test bits (lead+16) and lead in bmpBlockBits[t1].
|
utrie.c | 395 * with the lead surrogates indexing this compact area. 397 * Duplicate the index values for lead surrogates: 415 /* copy the lead surrogate indexes into a temporary array */ 419 * set all values for lead surrogate code *units* to leadUnitValue 423 * the respective lead units 447 * In case the first lead surrogate has significant data, 450 * lead surrogate indexes. 457 /* there is data, treat the full block for a lead surrogate */ 462 /* printf("supplementary data for lead surrogate U+%04lx\n", (long)(0xd7c0+(c>>10))); */ 470 * if different from the value for the lead surrogate code point [all...] |
utrie2.h | 40 * - Still separate data for lead surrogate code _units_ vs. code _points_, 41 * but the lead surrogate code unit values are not required any more 46 * in the lead surrogate data for the associated supplementary code points. 490 * A UTrie2 stores separate values for lead surrogate code _units_ vs. code _points_. 497 * code points associated with a lead surrogate. 499 * lead surrogate code _unit_, with utrie2_set32ForLeadSurrogateCodeUnit(). 503 * data and the code unit is a lead surrogate, then check if a trail surrogate 506 * or UTRIE2_GET32_FROM_SUPP(); otherwise reset the lead 509 * If there is only trivial data for lead and trail surrogates, then processing 515 * Get a value from a lead surrogate code unit as stored in the trie [all...] |
unifilt.cpp | 53 // the lead surrogate).
|
/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/strace/ |
strace-graph | 279 my ($pid, $lead) = @_; 303 print "$lead [$elapsed] @$argv\n"; 306 print "$lead @$argv\n"; 310 if ($lead =~ /-$/) { 311 display_pid_trace($$elem[1], "$lead--+--"); 313 display_pid_trace($$elem[1], "$lead +--"); 316 display_pid_trace($$elem[1], "$lead `--"); 318 display_pid_trace($$elem[1], "$lead +--"); 322 $lead =~ s/\`--/ /g; 323 $lead =~ s/-/ /g [all...] |
/external/webkit/WebCore/platform/graphics/wx/ |
GlyphMapWx.cpp | 46 UChar lead = buffer[i * 2]; local 48 character = U16_GET_SUPPLEMENTARY(lead, trail);
|
/external/srec/srec/include/ |
fpi_tgt.h | 54 #define POINTER_GAP(PKT, LEAD, LAG) ((((LEAD) - (LAG)) & (PKT)->stackMask)/(PKT)->frameSize) 61 #define POINTER_GAP(PKT, LEAD, LAG) ((LEAD) >= (LAG) ? ((LEAD) - (LAG))/(PKT)->frameSize : ((PKT)->featuresInStack + (LEAD) - (LAG))/(PKT)->frameSize)
|
/external/icu4c/common/unicode/ |
utf16.h | 53 * Is this code unit a lead surrogate (U+d800..U+dbff)? 78 * is it a lead surrogate? 102 * from its lead and trail surrogates. 104 * lead and trail surrogates. 106 * @param lead lead surrogate (U+d800..U+dbff) 111 #define U16_GET_SUPPLEMENTARY(lead, trail) \ 112 (((UChar32)(lead)<<10UL)+(UChar32)(trail)-U16_SURROGATE_OFFSET) 116 * Get the lead surrogate (0xd800..0xdbff) for a 119 * @return lead surrogate (U+d800..U+dbff) for supplementar [all...] |
/external/webkit/JavaScriptCore/icu/unicode/ |
utf16.h | 53 * Is this code unit a lead surrogate (U+d800..U+dbff)? 78 * is it a lead surrogate? 93 * from its lead and trail surrogates. 95 * lead and trail surrogates. 97 * @param lead lead surrogate (U+d800..U+dbff) 102 #define U16_GET_SUPPLEMENTARY(lead, trail) \ 103 (((UChar32)(lead)<<10UL)+(UChar32)(trail)-U16_SURROGATE_OFFSET) 107 * Get the lead surrogate (0xd800..0xdbff) for a 110 * @return lead surrogate (U+d800..U+dbff) for supplementar [all...] |
/external/webkit/JavaScriptGlue/icu/unicode/ |
utf16.h | 53 * Is this code unit a lead surrogate (U+d800..U+dbff)? 78 * is it a lead surrogate? 93 * from its lead and trail surrogates. 95 * lead and trail surrogates. 97 * @param lead lead surrogate (U+d800..U+dbff) 102 #define U16_GET_SUPPLEMENTARY(lead, trail) \ 103 (((UChar32)(lead)<<10UL)+(UChar32)(trail)-U16_SURROGATE_OFFSET) 107 * Get the lead surrogate (0xd800..0xdbff) for a 110 * @return lead surrogate (U+d800..U+dbff) for supplementar [all...] |
/external/webkit/WebCore/icu/unicode/ |
utf16.h | 53 * Is this code unit a lead surrogate (U+d800..U+dbff)? 78 * is it a lead surrogate? 93 * from its lead and trail surrogates. 95 * lead and trail surrogates. 97 * @param lead lead surrogate (U+d800..U+dbff) 102 #define U16_GET_SUPPLEMENTARY(lead, trail) \ 103 (((UChar32)(lead)<<10UL)+(UChar32)(trail)-U16_SURROGATE_OFFSET) 107 * Get the lead surrogate (0xd800..0xdbff) for a 110 * @return lead surrogate (U+d800..U+dbff) for supplementar [all...] |
/external/webkit/WebKit/mac/icu/unicode/ |
utf16.h | 53 * Is this code unit a lead surrogate (U+d800..U+dbff)? 78 * is it a lead surrogate? 93 * from its lead and trail surrogates. 95 * lead and trail surrogates. 97 * @param lead lead surrogate (U+d800..U+dbff) 102 #define U16_GET_SUPPLEMENTARY(lead, trail) \ 103 (((UChar32)(lead)<<10UL)+(UChar32)(trail)-U16_SURROGATE_OFFSET) 107 * Get the lead surrogate (0xd800..0xdbff) for a 110 * @return lead surrogate (U+d800..U+dbff) for supplementar [all...] |
/external/icu4c/test/cintltst/ |
bocu1tst.c | 74 /* number of lead bytes */ 90 /* number of lead bytes for positive and negative 2/3/4-byte sequences */ 109 /* The lead byte start values. */ 120 /* The length of a byte sequence, according to the lead byte (!=BOCU1_RESET). */ 121 #define BOCU1_LENGTH_FROM_LEAD(lead) \ 122 ((BOCU1_START_NEG_2<=(lead) && (lead)<BOCU1_START_POS_2) ? 1 : \ 123 (BOCU1_START_NEG_3<=(lead) && (lead)<BOCU1_START_POS_3) ? 2 : \ 124 (BOCU1_START_NEG_4<=(lead) && (lead)<BOCU1_START_POS_4) ? 3 : 4 287 int32_t result, m, lead, count, shift; local [all...] |
sprpdata.c | 209 UChar lead = UTF16_LEAD(mapping[i]); local 211 if(mappingData[index+i] != lead || 213 log_err( "Did not get the expected result. Expected: 0x%04X 0x%04X Got: 0x%04X 0x%04X\n", lead, trail, mappingData[index+i], mappingData[index+i+1]); 240 // get data for lead surrogate 244 // get the real data from the folded lead/trail units
|
/external/webkit/JavaScriptCore/wtf/unicode/glib/ |
UnicodeMacrosFromICU.h | 33 #define U16_GET_SUPPLEMENTARY(lead, trail) \ 34 (((UChar32)(lead)<<10UL)+(UChar32)(trail)-U16_SURROGATE_OFFSET)
|
/external/webkit/WebCore/platform/graphics/haiku/ |
GlyphPageTreeNodeHaiku.cpp | 50 UChar lead = characterBuffer[i * 2]; local 52 character = U16_GET_SUPPLEMENTARY(lead, trail);
|
/development/simulator/wrapsim/ |
Android.mk | 31 # library or system calls they make could lead to recursive behavior.
|
/external/icu4c/data/mappings/ |
noop-cns-11643.ucm | 23 # (state 0) lead byte, selects the CNS plane (0x80 + plane number)
|
/external/stlport/test/unit/ |
stldbg_include.cpp | 22 * This lead to compile-time error.
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
NameLookupBuilder.java | 153 * Inserts Korean lead consonants records of name for the given structured name. 175 // Decompose and take a only lead-consonant for composed Korean characters. 177 // Lead consonant = "Lead consonant base" + 179 // ("Lead consonant count" * "middle Vowel count") 185 // This is not lead-consonant 190 // This is not lead-consonant
|