/external/chromium_org/v8/test/webkit/ |
exception-with-handler-inside-eval-with-dynamic-scope.js | 24 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("try { throw ''; } catch (e) { result = test; shouldBe('result', '\"outer scope\"'); }") [all...] |
toString-prefix-postfix-preserve-parens-expected.txt | 29 PASS unevalf(eval(unevalf(prefix_should_preserve_parens))) is unevalf(prefix_should_preserve_parens) 32 PASS eval(unevalf(prefix_should_preserve_parens))(1, 2, 3); threw exception ReferenceError: Invalid left-hand side expression in prefix operation. 33 PASS unevalf(eval(unevalf(postfix_should_preserve_parens))) is unevalf(postfix_should_preserve_parens) 36 PASS eval(unevalf(postfix_should_preserve_parens))(1, 2, 3); threw exception ReferenceError: Invalid left-hand side expression in postfix operation. 37 PASS unevalf(eval(unevalf(both_should_preserve_parens))) is unevalf(both_should_preserve_parens) 40 PASS eval(unevalf(both_should_preserve_parens))(1, 2, 3); threw exception ReferenceError: Invalid left-hand side expression in prefix operation. 41 PASS unevalf(eval(unevalf(prefix_should_preserve_parens_multi))) is unevalf(prefix_should_preserve_parens_multi) 44 PASS eval(unevalf(prefix_should_preserve_parens_multi))(1, 2, 3); threw exception ReferenceError: Invalid left-hand side expression in prefix operation. 45 PASS unevalf(eval(unevalf(postfix_should_preserve_parens_multi))) is unevalf(postfix_should_preserve_parens_multi) 48 PASS eval(unevalf(postfix_should_preserve_parens_multi))(1, 2, 3); threw exception ReferenceError: Invalid l (…) [all...] |
/external/v8/test/mjsunit/ |
global-const-var-conflicts.js | 33 eval("const a"); 34 try { eval("var a"); } catch (e) { caught++; assertTrue(e instanceof TypeError); } 36 try { eval("var a = 1"); } catch (e) { caught++; assertTrue(e instanceof TypeError); } 39 eval("const b = 0"); 40 try { eval("var b"); } catch (e) { caught++; assertTrue(e instanceof TypeError); } 42 try { eval("var b = 1"); } catch (e) { caught++; assertTrue(e instanceof TypeError); } 45 eval("var c"); 46 try { eval("const c"); } catch (e) { caught++; assertTrue(e instanceof TypeError); } 48 try { eval("const c = 1"); } catch (e) { caught++; assertTrue(e instanceof TypeError); } 51 eval("var d = 0") [all...] |
global-load-from-eval.js | 28 // Tests global loads from eval. 34 assertEquals(27, eval('x')); 38 assertEquals(22, eval('x')); 41 assertEquals(44, eval('x')); 43 assertEquals(x, eval('x')); 46 assertEquals(x, eval('x')); 61 // Test loading of globals from deeply nested eval. This code is a 64 // global variable becomes shadowed by an eval-introduced variable. 67 eval(source); 73 eval(load) [all...] |
/ndk/tests/device/test-stlport_shared-exception/jni/ |
ref9.cpp | 6 ex eval() const; 18 ex basic::eval() const { function in class:basic 25 const ex & tmpex = b.eval();
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
ref9.cpp | 6 ex eval() const; 18 ex basic::eval() const { function in class:basic 25 const ex & tmpex = b.eval();
|
/build/core/ |
copy_headers.mk | 16 $(eval _chFrom := $(LOCAL_PATH)/$(header)) \ 17 $(eval _chTo := \ 21 $(eval $(call copy-one-header,$(_chFrom),$(_chTo))) \ 22 $(eval all_copied_headers: $(_chTo)) \
|
multi_prebuilt.mk | 54 $(eval include $(CLEAR_VARS)) \ 55 $(eval LOCAL_IS_HOST_MODULE := $(2)) \ 56 $(eval LOCAL_MODULE_CLASS := $(3)) \ 57 $(eval LOCAL_MODULE_TAGS := $(4)) \ 58 $(eval OVERRIDE_BUILT_MODULE_PATH := $(5)) \ 59 $(eval LOCAL_UNINSTALLABLE_MODULE := $(6)) \ 60 $(eval tw := $(subst :, ,$(strip $(t)))) \ 63 $(eval LOCAL_MODULE := $(word 1,$(tw))) \ 64 $(eval LOCAL_SRC_FILES := $(word 2,$(tw))) \ 66 $(eval LOCAL_MODULE := $(basename $(notdir $(t)))) [all...] |
/external/antlr/antlr-3.4/runtime/Perl5/t/author/ |
pod-coverage.t | 6 eval "use Test::Pod::Coverage";
|
pod.t | 6 eval "use Test::Pod";
|
/external/chromium_org/third_party/JSON/JSON-2.59/t/ |
00_pod.t | 6 eval "use Test::Pod 1.00";
|
e14_decode_prefix.t | 23 eval { $json->decode( "\n" ) }; ok( $@ =~ /malformed JSON/ ); 24 eval { $json->decode('null') }; ok $@ =~ /allow_nonref/; 26 eval { $json->decode_prefix( "\n" ) }; ok( $@ =~ /malformed JSON/ ); 27 eval { $json->decode_prefix('null') }; ok $@ =~ /allow_nonref/;
|
13_limit.t | 18 ok (!eval { $js->decode (("[" x ($def + 1)) . ("]" x ($def + 1))) }); 21 ok (!eval { $js->decode (("{\"\":" x $def) . "[]" . ("}" x $def)) }); 26 ok (!eval { $js->encode ([[]]), 1 }); 29 ok (!eval { $js->encode ([[{}]]), 1 }); 31 ok (eval { ref $js->max_size (8)->decode ("[ ]") }); 32 eval { $js->max_size (8)->decode ("[ ]") }; ok ($@ =~ /max_size/);
|
/external/chromium_org/third_party/sqlite/src/test/ |
whereA.test | 20 db eval { 29 db eval { 38 db eval { 46 db eval { 52 db eval { 58 db eval { 65 db eval { 73 db eval { 79 db eval { 86 db eval { [all...] |
whereB.test | 28 db eval { 40 db eval { 45 db eval { 50 db eval { 55 db eval { 61 db eval { 66 db eval { 80 db eval { 95 db eval { 100 db eval { [all...] |
tkt-d82e3f3721.test | 21 db eval { 31 db eval { 41 db eval { 49 db eval { 60 db eval { 64 db2 eval { 68 db eval { 73 db eval {
|
tkt2686.test | 25 db eval { 33 db eval BEGIN 36 db eval {INSERT INTO filler (fill) VALUES (randstr(1000, 10000)) } 48 catch {db eval COMMIT} 55 db eval { 63 db eval BEGIN 66 db eval {INSERT INTO filler (fill) VALUES (randstr(1000, 10000)) } 78 catch {db eval COMMIT}
|
tclsqlite.test | 38 } {1 {bad option "bogus": must be authorizer, backup, busy, cache, changes, close, collate, collation_needed, commit_hook, complete, copy, enable_load_extension, errorcode, eval, exists, function, incrblob, interrupt, last_insert_rowid, nullvalue, onecolumn, profile, progress, rekey, restore, rollback_hook, status, timeout, total_changes, trace, transaction, unlock_notify, update_hook, version, or wal_hook}} 51 db eval {SELECT * FROM t1} data { 59 db eval {SELECT * FROM t2} data { 67 db eval {SELECT * FROM t1} data { 76 db eval {SELECT * FROM t1} data { 115 set v [catch {db eval} msg] 117 } {1 {wrong # args: should be "db eval SQL ?ARRAY-NAME? ?SCRIPT?"}} 166 db eval "SELECT * FROM t\u0123x" result break 255 db eval { 271 db eval {SELECT * FROM t1} [all...] |
/external/valgrind/main/ |
autogen.sh | 6 eval $*
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_input.py | 1 """Fixer that changes input(...) into eval(input(...)).""" 10 context = patcomp.compile_pattern("power< 'eval' trailer< '(' any ')' > >") 20 # If we're already wrapped in a eval() call, we're done. 26 return Call(Name(u"eval"), [new], prefix=node.prefix)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_input.py | 1 """Fixer that changes input(...) into eval(input(...)).""" 10 context = patcomp.compile_pattern("power< 'eval' trailer< '(' any ')' > >") 20 # If we're already wrapped in a eval() call, we're done. 26 return Call(Name(u"eval"), [new], prefix=node.prefix)
|
/external/chromium_org/v8/test/webkit/fast/js/kde/ |
eval.js | 25 shouldBe("eval.length", "1"); 26 shouldBe("eval('this')", "this"); 32 eval("b = new MyObject();"); 33 var bx = b.x // rule out side effects of eval() in shouldBe() test function 37 eval("var c = new MyObject();"); // the 'var' makes a difference 42 if (true.eval) { 44 shouldBe("o.eval('str')", "1"); 45 shouldBe("o.eval('this')", "this"); 47 testPassed("Skipping test for deprecated Object.prototype.eval()"); 52 // j must be accessible to eval() [all...] |
/external/chromium_org/third_party/skia/src/utils/ |
SkBoundaryPatch.cpp | 32 SkPoint SkBoundaryPatch::eval(SkScalar unitU, SkScalar unitV) { function in class:SkBoundaryPatch 34 SkPoint u = SkPointInterp(b->eval(SkBoundary::kLeft, SK_Scalar1 - unitV), 35 b->eval(SkBoundary::kRight, unitV), 37 SkPoint v = SkPointInterp(b->eval(SkBoundary::kTop, unitU), 38 b->eval(SkBoundary::kBottom, SK_Scalar1 - unitU), 55 *verts++ = this->eval(x * invR, yy); 65 SkPoint SkLineBoundary::eval(Edge e, SkScalar t) { function in class:SkLineBoundary 70 SkPoint SkCubicBoundary::eval(Edge e, SkScalar t) { function in class:SkCubicBoundary
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/nasm/ |
nasm-eval.h | 0 /* eval.h header file for eval.c
|
/external/skia/src/utils/ |
SkBoundaryPatch.cpp | 32 SkPoint SkBoundaryPatch::eval(SkScalar unitU, SkScalar unitV) { function in class:SkBoundaryPatch 34 SkPoint u = SkPointInterp(b->eval(SkBoundary::kLeft, SK_Scalar1 - unitV), 35 b->eval(SkBoundary::kRight, unitV), 37 SkPoint v = SkPointInterp(b->eval(SkBoundary::kTop, unitU), 38 b->eval(SkBoundary::kBottom, SK_Scalar1 - unitU), 55 *verts++ = this->eval(x * invR, yy); 65 SkPoint SkLineBoundary::eval(Edge e, SkScalar t) { function in class:SkLineBoundary 70 SkPoint SkCubicBoundary::eval(Edge e, SkScalar t) { function in class:SkCubicBoundary
|