/external/v8/test/mjsunit/ |
global-const-var-conflicts.js | 29 // is silently ignored (and does not lead to exceptions).
|
fuzz-natives.js | 121 // may lead to out-of-memory. Ditto for StringBuilderJoin.
|
/external/v8/test/mjsunit/regress/ |
regress-1172.js | 31 // Note: no setters would lead to runtime exception if we ever attempt
|
/external/chromium_org/third_party/jinja2/ |
utils.py | 24 '^(?P<lead>(?:%s)*)(?P<middle>.*?)(?P<trail>(?:%s)*)$' % ( 279 lead, middle, trail = match.groups() 298 if lead + middle + trail != word: 299 words[i] = lead + middle + trail
|
/external/icu4c/common/ |
normalizer2impl.h | 41 JAMO_L_BASE=0x1100, /* "lead" jamo */ 278 * Might skip only a lead surrogate rather than the whole surrogate pair if none of 279 * the supplementary code points associated with the lead surrogate have non-zero FCD data. 325 /** Returns TRUE if the single-or-lead code unit c might have non-zero FCD data. */ 326 UBool singleLeadMightHaveNonZeroFCD16(UChar32 lead) const { 327 // 0<=lead<=0xffff 328 uint8_t bits=smallFCD[lead>>8]; 330 return (UBool)((bits>>((lead>>5)&7))&1); 640 * Gets the 16-bit FCD value (lead & trail CCs) for a code point, for u_getIntPropertyValue(). 716 * The trie has a value for each lead surrogate code unit representing the "worst case [all...] |
utrie2.h | 41 * - Still separate data for lead surrogate code _units_ vs. code _points_, 42 * but the lead surrogate code unit values are not required any more 47 * in the lead surrogate data for the associated supplementary code points. 500 * A UTrie2 stores separate values for lead surrogate code _units_ vs. code _points_. 507 * code points associated with a lead surrogate. 509 * lead surrogate code _unit_, with utrie2_set32ForLeadSurrogateCodeUnit(). 513 * data and the code unit is a lead surrogate, then check if a trail surrogate 516 * or UTRIE2_GET32_FROM_SUPP(); otherwise reset the lead 519 * If there is only trivial data for lead and trail surrogates, then processing 525 * Get a value from a lead surrogate code unit as stored in the trie [all...] |
uiter.cpp | 909 UChar lead=U16_LEAD(iter->reservedField); local 915 return lead;
|
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/chromium_org/third_party/icu/source/common/ |
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. 499 * A UTrie2 stores separate values for lead surrogate code _units_ vs. code _points_. 506 * code points associated with a lead surrogate. 508 * lead surrogate code _unit_, with utrie2_set32ForLeadSurrogateCodeUnit(). 512 * data and the code unit is a lead surrogate, then check if a trail surrogate 515 * or UTRIE2_GET32_FROM_SUPP(); otherwise reset the lead 518 * If there is only trivial data for lead and trail surrogates, then processing 524 * Get a value from a lead surrogate code unit as stored in the trie [all...] |
normalizer2impl.cpp | 513 // get the decomposition and the lead and trail cc's 632 * a forward-combining "lead" character, 636 * If the lead and trail characters combine, then this function returns [all...] |
uiter.cpp | 922 UChar lead=U16_LEAD(iter->reservedField); local 928 return lead;
|
utext.cpp | 126 UChar lead = ut->chunkContents[ut->chunkOffset-1]; local 127 if (UTF16_IS_LEAD(lead)) { 212 // the original position before the unpaired lead still needs to be restored. 281 // c is an unpaired lead surrogate at the end of the text. 288 // c was an unpaired lead surrogate, not at the end of the text. 314 // (A lead surrogate seen here is just returned as is, as a surrogate value. 327 UChar32 lead = ut->chunkContents[ut->chunkOffset-1]; local 328 if (U16_IS_LEAD(lead) == FALSE) { 334 UChar32 supplementary = U16_GET_SUPPLEMENTARY(lead, c); 335 ut->chunkOffset--; // move iteration position over the lead surrogate [all...] |
/external/chromium_org/v8/test/webkit/ |
dfg-constant-fold-misprediction.js | 39 // predicted double, will lead the Fixup phase to inject an Int32ToDouble node on
|
dfg-constant-fold-uncaptured-variable-that-is-later-captured.js | 25 "Tests that constant folding an access to an uncaptured variable that is captured later in the same basic block doesn't lead to assertion failures."
|
/external/chromium_org/v8/test/webkit/fast/js/kde/ |
exceptions.js | 121 debug("Except a lot of errors. They should all be caught and lead to PASS");
|
/external/chromium_org/v8/test/webkit/fast/js/ |
toString-number.js | 77 // Passing the string to number should also lead to valid conversion.
|
/external/icu4c/samples/uciter8/ |
uit_len8.c | 448 UChar lead=U16_LEAD(iter->reservedField); local 454 return lead;
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderCounter.cpp | 423 void RenderCounter::computePreferredLogicalWidths(float lead) 436 RenderText::computePreferredLogicalWidths(lead);
|
/external/llvm/lib/Target/NVPTX/ |
NVPTXAsmPrinter.cpp | 1707 const char *lead; local 1722 O << lead; local [all...] |
/external/tinyxml2/ |
tinyxml2.cpp | 42 // ef bb bf (Microsoft "lead bytes") - designates UTF-8
[all...] |
/external/chromium_org/chrome/browser/resources/file_manager/js/photo/ |
select_album_dialog.js | 114 cr.defineProperty(result, 'lead', cr.PropertyKind.BOOL_ATTR);
|
/external/chromium_org/v8/test/mjsunit/ |
fuzz-natives-part1.js | 121 // may lead to out-of-memory. Ditto for StringBuilderJoin.
|
fuzz-natives-part2.js | 121 // may lead to out-of-memory. Ditto for StringBuilderJoin.
|
fuzz-natives-part3.js | 121 // may lead to out-of-memory. Ditto for StringBuilderJoin.
|
fuzz-natives-part4.js | 121 // may lead to out-of-memory. Ditto for StringBuilderJoin.
|