/external/v8/test/mjsunit/ |
array-reduce.js | 34 if (v instanceof Array) { 418 assertTrue(e instanceof TypeError, 428 assertTrue(e instanceof TypeError, 439 assertTrue(e instanceof TypeError, 449 assertTrue(e instanceof TypeError, 460 assertTrue(e instanceof TypeError, 470 assertTrue(e instanceof TypeError,
|
function-bind.js | 181 // Test instanceof obj2 is bar, not f. 182 assertTrue(obj2 instanceof bar); 183 assertFalse(obj2 instanceof f);
|
mirror-script.js | 39 assertTrue(mirror instanceof debug.Mirror); 40 assertFalse(mirror instanceof debug.ValueMirror); 41 assertTrue(mirror instanceof debug.ScriptMirror);
|
body-not-visible.js | 37 assertTrue(e instanceof ReferenceError);
|
call-non-function-call.js | 36 assertTrue(e instanceof TypeError);
|
extra-commas.js | 34 assertTrue(e instanceof SyntaxError, "is syntax error");
|
object-literal.js | 126 "instanceof", 184 assertTrue(vo instanceof construct);
|
get-prototype-of.js | 37 assertTrue(caught instanceof TypeError);
|
/external/v8/benchmarks/ |
earley-boyer.js | 575 (peephole (postfix " instanceof sc_Pair"))) 578 return (p instanceof sc_Pair); 772 (rabbit instanceof sc_Pair && rabbit.cdr === null)) 774 else if ((rabbit instanceof sc_Pair) && 775 (rabbit.cdr instanceof sc_Pair)) { 1181 (peephole (postfix "instanceof sc_Char"))) 1184 return (c instanceof sc_Char); 1361 (peephole (postfix " instanceof sc_Vector"))) 1364 return (v instanceof sc_Vector); [all...] |
/external/webkit/PerformanceTests/SunSpider/tests/v8-v4/ |
v8-earley-boyer.js | 569 (peephole (postfix " instanceof sc_Pair"))) 572 return (p instanceof sc_Pair); 766 (rabbit instanceof sc_Pair && rabbit.cdr === null)) 768 else if ((rabbit instanceof sc_Pair) && 769 (rabbit.cdr instanceof sc_Pair)) { 1175 (peephole (postfix "instanceof sc_Char"))) 1178 return (c instanceof sc_Char); 1355 (peephole (postfix " instanceof sc_Vector"))) 1358 return (v instanceof sc_Vector); [all...] |
/external/webkit/PerformanceTests/SunSpider/tests/v8-v5/ |
v8-earley-boyer.js | 569 (peephole (postfix " instanceof sc_Pair"))) 572 return (p instanceof sc_Pair); 766 (rabbit instanceof sc_Pair && rabbit.cdr === null)) 768 else if ((rabbit instanceof sc_Pair) && 769 (rabbit.cdr instanceof sc_Pair)) { 1175 (peephole (postfix "instanceof sc_Char"))) 1178 return (c instanceof sc_Char); 1355 (peephole (postfix " instanceof sc_Vector"))) 1358 return (v instanceof sc_Vector); [all...] |
/external/webkit/PerformanceTests/SunSpider/tests/v8-v6/ |
v8-earley-boyer.js | 569 (peephole (postfix " instanceof sc_Pair"))) 572 return (p instanceof sc_Pair); 766 (rabbit instanceof sc_Pair && rabbit.cdr === null)) 768 else if ((rabbit instanceof sc_Pair) && 769 (rabbit.cdr instanceof sc_Pair)) { 1175 (peephole (postfix "instanceof sc_Char"))) 1178 return (c instanceof sc_Char); 1355 (peephole (postfix " instanceof sc_Vector"))) 1358 return (v instanceof sc_Vector); [all...] |
/external/v8/test/mjsunit/regress/ |
regress-1020.js | 29 return o instanceof Object;
|
regress-1110.js | 36 assertTrue(e instanceof SyntaxError);
|
regress-1110164.js | 44 assertTrue(e instanceof TypeError);
|
regress-1130.js | 37 assertTrue(e instanceof TypeError);
|
regress-1182832.js | 36 assertTrue(e instanceof TypeError);
|
regress-1215653.js | 35 assertTrue(e instanceof RangeError);
|
regress-341.js | 36 assertThrows("o instanceof F");
|
regress-676025.js | 31 assertTrue(result instanceof SyntaxError);
|
regress-78270.js | 32 var f0 = (object instanceof encodeURI)('foo');
|
regress-900055.js | 40 assertTrue(e instanceof ReferenceError);
|
regress-1213575.js | 38 assertTrue(e instanceof TypeError);
|
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/lib/oauth/ |
OAuth.php | 572 $signature_method = $request instanceof OAuthRequest 597 $consumer_key = $request instanceof OAuthRequest 617 $token_field = $request instanceof OAuthRequest 636 $timestamp = $request instanceof OAuthRequest 639 $nonce = $request instanceof OAuthRequest
|
/external/v8/src/ |
scanner-base.cc | 890 if (MatchKeywordStart(input, "instanceof", 2, Token::INSTANCEOF)) return;
|