Searched refs:eval (Results 1 - 25 of 731) sorted by relevance

1234567891011>>

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1546.js32 eval("/*\u822a/ */");
H A Dregress-974.js32 eval("(function(){try { } catch(x) { } finally { gc() }})")();
H A Dregress-113924.js30 eval("var a = new Object(10); a[2] += 7;");
H A Dregress-189.js33 eval("delete x; const x = 32");
H A Dregress-260.js32 function test() { eval("while(!function () { var x; });"); }
H A Dregress-990205.js33 // Force eager compilation of x through the use of eval. The break
35 return eval("while(0) function x() { break; }; 42");
H A Dregress-1126.js32 eval('--');
H A Dregress-1528.js38 eval('const x = 7');
H A Dregress-35.js29 eval("result = 42; while(true)break");
32 eval("result = 87; while(false)continue");
H A Dregress-682649.js30 assertEquals(this.toString(), eval("this.toString()"));
H A Dregress-crbug-135066.js31 // Test strict eval in global context.
32 assertEquals(23, eval(
43 // Test default eval in strict context.
46 return eval(
/external/v8/test/mjsunit/regress/
H A Dregress-1546.js32 eval("/*\u822a/ */")
H A Dregress-974.js32 eval("(function(){try { } catch(x) { } finally { gc() }})")();
H A Dregress-113924.js30 eval("var a = new Object(10); a[2] += 7;");
H A Dregress-189.js33 eval("delete x; const x = 32");
H A Dregress-260.js32 function test() { eval("while(!function () { var x; });"); }
H A Dregress-990205.js33 // Force eager compilation of x through the use of eval. The break
35 return eval("while(0) function x() { break; }; 42");
/external/chromium_org/v8/test/preparser/
H A Dnonstrict-eval.js30 var eval = 42; variable
31 eval = eval++;
32 eval += --eval;
33 eval -= ++eval;
34 eval *= eval--;
35 function eval(eva function
44 var eval = 42; variable
[all...]
/external/v8/test/preparser/
H A Dnonstrict-eval.js30 var eval = 42; variable
31 eval = eval++;
32 eval += --eval;
33 eval -= ++eval;
34 eval *= eval--;
35 function eval(eva function
44 var eval = 42; variable
[all...]
/external/chromium_org/v8/test/webkit/
H A Dexception-with-handler-inside-eval-with-dynamic-scope.js24 description('This test makes sure stack unwinding works correctly when it occurs inside an eval contained in a dynamic scope.');
29 eval("try { throw ''; } catch (e) { result = test; shouldBe('result', '\"inner scope\"'); }");
31 eval("try { with({test:'innermost scope'}) throw ''; } catch (e) { result = test; shouldBe('result', '\"inner scope\"'); }");
33 eval("with ({test:'innermost scope'}) try { throw ''; } catch (e) { result = test; shouldBe('result', '\"innermost scope\"'); }");
35 with ({test:'innermost scope'}) eval("try { throw ''; } catch (e) { result = test; shouldBe('result', '\"innermost scope\"'); }");
38 eval("try { throw ''; } finally { result = test; shouldBe('result', '\"inner scope\"'); result = null; undeclared; }");
43 eval("try { with({test:'innermost scope'}) throw ''; } catch (e) { result = test; shouldBe('result', '\"inner scope\"'); }");
45 eval("with ({test:'innermost scope'}) try { throw ''; } catch (e) { result = test; shouldBe('result', '\"innermost scope\"'); }");
47 with ({test:'innermost scope'}) eval("try { throw ''; } catch (e) { result = test; shouldBe('result', '\"innermost scope\"'); }");
51 eval("tr
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Ddelete-in-eval.js28 // Should be able to delete properties in the context through eval().
30 assertTrue(eval("delete XXX")); // non-existing
31 assertTrue(eval("delete tmp")); // existing
H A Ddo-not-strip-fc.js30 assertEquals(7, eval("'foo\u200dbar'").length);
31 assertEquals(7, eval("'foo\u200cbar'").length);
/external/v8/test/mjsunit/
H A Ddelete-in-eval.js28 // Should be able to delete properties in the context through eval().
30 assertTrue(eval("delete XXX")); // non-existing
31 assertTrue(eval("delete tmp")); // existing
H A Ddo-not-strip-fc.js30 assertEquals(7, eval("'foo\u200dbar'").length);
31 assertEquals(7, eval("'foo\u200cbar'").length);
/external/chromium_org/v8/test/webkit/fast/js/
H A Dend-in-string-escape.js29 eval('"\\');

Completed in 449 milliseconds

1234567891011>>