/external/chromium_org/v8/test/preparser/ |
nonstrict-eval.js | 28 // Eval restrictions should not trigger outside of strict-mode code. 30 var eval = 42; variable 31 eval = eval++; 32 eval += --eval; 33 eval -= ++eval; 34 eval *= eval-- 35 function eval(eval) {}; function 44 var eval = 42; variable [all...] |
/external/v8/test/preparser/ |
nonstrict-eval.js | 28 // Eval restrictions should not trigger outside of strict-mode code. 30 var eval = 42; variable 31 eval = eval++; 32 eval += --eval; 33 eval -= ++eval; 34 eval *= eval-- 35 function eval(eval) {}; function 44 var eval = 42; variable [all...] |
/frameworks/native/cmds/installd/tests/ |
Android.mk | 24 $(eval include $(CLEAR_VARS)) \ 25 $(eval LOCAL_SHARED_LIBRARIES := $(shared_libraries)) \ 26 $(eval LOCAL_STATIC_LIBRARIES := $(static_libraries)) \ 27 $(eval LOCAL_SRC_FILES := $(file)) \ 28 $(eval LOCAL_C_INCLUDES := $(c_includes)) \ 29 $(eval LOCAL_MODULE := $(notdir $(file:%.cpp=%))) \ 30 $(eval include $(BUILD_NATIVE_TEST)) \
|
/external/chromium_org/v8/test/webkit/fast/js/ |
numeric-escapes-in-string-literals-expected.txt | 29 PASS eval(stringLiteral) is nonStrictResult 30 PASS eval(stringLiteral) is strictResult 31 PASS eval(stringLiteral) is nonStrictResult 32 PASS eval(stringLiteral) threw exception SyntaxError: Octal literals are not allowed in strict mode.. 33 PASS eval(stringLiteral) is nonStrictResult 34 PASS eval(stringLiteral) threw exception SyntaxError: Octal literals are not allowed in strict mode.. 35 PASS eval(stringLiteral) is nonStrictResult 36 FAIL eval(stringLiteral) should throw an exception. Was 8. 37 PASS eval(stringLiteral) is nonStrictResult 38 FAIL eval(stringLiteral) should throw an exception. Was 9 [all...] |
/frameworks/wilhelm/tests/ |
Android.mk | 27 $(eval include $(CLEAR_VARS)) \ 28 $(eval LOCAL_SHARED_LIBRARIES := $(shared_libraries)) \ 29 $(eval LOCAL_STATIC_LIBRARIES := $(static_libraries)) \ 30 $(eval LOCAL_C_INCLUDES := $(c_includes)) \ 31 $(eval LOCAL_SRC_FILES := $(file)) \ 32 $(eval LOCAL_MODULE := libopenslestests) \ 33 $(eval LOCAL_MODULE_PATH := $(TARGET_OUT_DATA)/nativetest) \ 34 $(eval LOCAL_MODULE_TAGS := $(module_tags)) \ 35 $(eval include $(BUILD_EXECUTABLE)) \
|
/frameworks/base/libs/androidfw/tests/ |
Android.mk | 22 $(eval include $(CLEAR_VARS)) \ 23 $(eval LOCAL_SHARED_LIBRARIES := $(shared_libraries)) \ 24 $(eval LOCAL_STATIC_LIBRARIES := $(static_libraries)) \ 25 $(eval LOCAL_SRC_FILES := $(file)) \ 26 $(eval LOCAL_MODULE := $(notdir $(file:%.cpp=%))) \ 27 $(eval include $(BUILD_NATIVE_TEST)) \
|
/system/core/libutils/tests/ |
Android.mk | 28 $(eval include $(CLEAR_VARS)) \ 29 $(eval LOCAL_SHARED_LIBRARIES := $(shared_libraries)) \ 30 $(eval LOCAL_STATIC_LIBRARIES := $(static_libraries)) \ 31 $(eval LOCAL_SRC_FILES := $(file)) \ 32 $(eval LOCAL_MODULE := $(notdir $(file:%.cpp=%))) \ 33 $(eval include $(BUILD_NATIVE_TEST)) \
|
/external/chromium_org/third_party/JSON/JSON-2.59/t/ |
x02_error.t | 20 eval { JSON->new->encode ([\-1]) }; ok $@ =~ /cannot encode reference/; 21 eval { JSON->new->encode ([\undef]) }; ok $@ =~ /cannot encode reference/; 22 eval { JSON->new->encode ([\2]) }; ok $@ =~ /cannot encode reference/; 23 eval { JSON->new->encode ([\{}]) }; ok $@ =~ /cannot encode reference/; 24 eval { JSON->new->encode ([\[]]) }; ok $@ =~ /cannot encode reference/; 25 eval { JSON->new->encode ([\\1]) }; ok $@ =~ /cannot encode reference/; 27 eval { JSON->new->allow_nonref (1)->decode ('"\u1234\udc00"') }; ok $@ =~ /missing high /; 28 eval { JSON->new->allow_nonref->decode ('"\ud800"') }; ok $@ =~ /missing low /; 29 eval { JSON->new->allow_nonref (1)->decode ('"\ud800\u1234"') }; ok $@ =~ /surrogate pair /; 31 eval { JSON->new->decode ('null') }; ok $@ =~ /allow_nonref/ [all...] |
02_error.t | 18 eval { JSON->new->encode ([\-1]) }; ok $@ =~ /cannot encode reference/; 19 eval { JSON->new->encode ([\undef]) }; ok $@ =~ /cannot encode reference/; 20 eval { JSON->new->encode ([\2]) }; ok $@ =~ /cannot encode reference/; 21 eval { JSON->new->encode ([\{}]) }; ok $@ =~ /cannot encode reference/; 22 eval { JSON->new->encode ([\[]]) }; ok $@ =~ /cannot encode reference/; 23 eval { JSON->new->encode ([\\1]) }; ok $@ =~ /cannot encode reference/; 24 eval { JSON->new->allow_nonref (1)->decode ('"\u1234\udc00"') }; ok $@ =~ /missing high /; 25 eval { JSON->new->allow_nonref->decode ('"\ud800"') }; ok $@ =~ /missing low /; 26 eval { JSON->new->allow_nonref (1)->decode ('"\ud800\u1234"') }; ok $@ =~ /surrogate pair /; 27 eval { JSON->new->decode ('null') }; ok $@ =~ /allow_nonref/ [all...] |
/external/chromium_org/third_party/WebKit/ManualTests/inspector-wrappers/ |
console-eval.html | 5 window.eval = function() { doAttack(eval); }
|
/external/chromium_org/v8/test/mjsunit/ |
eval.js | 28 assertEquals(void 0, eval()); 29 assertEquals(4, eval(4)); 32 assertTrue(f === eval(f)); 37 assertEquals(4, eval('2 + 2', count++)); 41 eval('hest 7 &*^*&^'); 48 // eval has special evaluation order for consistency with other browsers. 49 global_eval = eval; 50 assertEquals(void 0, eval(eval("var eval = function f(x) { return 'hest';}")) 54 eval = function(x, y) { return x + y; }; function [all...] |
eval-stack-trace.js | 80 // Simple eval. 87 eval(code1); 94 // f (eval at g (eval-stack.js:87:8), <anonymous>:2:9) 95 // eval (eval at g (eval-stack.js:87:8), <anonymous>:4:1) 96 // g (eval-stack.js:87:3) 97 // eval-stack.js:94:3 100 ["f", "eval", "g" [all...] |
global-load-from-nested-eval.js | 28 // Tests global loads from nested eval. 34 eval('eval(' + source +')'); 41 eval('eval(' + source +')'); 46 // Shadow variable with an eval-introduced variable. 48 eval('var x = 1'); 50 eval('eval('+ source + ')'); 56 // Eval that does not shadow [all...] |
/external/v8/test/mjsunit/ |
eval.js | 28 assertEquals(void 0, eval()); 29 assertEquals(4, eval(4)); 32 assertTrue(f === eval(f)); 37 assertEquals(4, eval('2 + 2', count++)); 41 eval('hest 7 &*^*&^'); 48 // eval has special evaluation order for consistency with other browsers. 49 global_eval = eval; 50 assertEquals(void 0, eval(eval("var eval = function f(x) { return 'hest';}")) 54 eval = function(x, y) { return x + y; }; function [all...] |
global-load-from-nested-eval.js | 28 // Tests global loads from nested eval. 34 eval('eval(' + source +')'); 41 eval('eval(' + source +')'); 46 // Shadow variable with an eval-introduced variable. 48 eval('var x = 1'); 50 eval('eval('+ source + ')'); 56 // Eval that does not shadow [all...] |
/frameworks/base/services/input/tests/ |
Android.mk | 37 $(eval include $(CLEAR_VARS)) \ 38 $(eval LOCAL_SHARED_LIBRARIES := $(shared_libraries)) \ 39 $(eval LOCAL_STATIC_LIBRARIES := $(static_libraries)) \ 40 $(eval LOCAL_C_INCLUDES := $(c_includes)) \ 41 $(eval LOCAL_SRC_FILES := $(file)) \ 42 $(eval LOCAL_MODULE := $(notdir $(file:%.cpp=%))) \ 43 $(eval LOCAL_MODULE_TAGS := $(module_tags)) \ 44 $(eval include $(BUILD_NATIVE_TEST)) \
|
/system/vold/tests/ |
Android.mk | 28 $(eval include $(CLEAR_VARS)) \ 29 $(eval LOCAL_SHARED_LIBRARIES := $(shared_libraries)) \ 30 $(eval LOCAL_STATIC_LIBRARIES := $(static_libraries)) \ 31 $(eval LOCAL_C_INCLUDES := $(c_includes)) \ 32 $(eval LOCAL_SRC_FILES := $(file)) \ 33 $(eval LOCAL_MODULE := $(notdir $(file:%.cpp=%))) \ 34 $(eval LOCAL_MODULE_TAGS := $(module_tags)) \ 35 $(eval include $(BUILD_EXECUTABLE)) \
|
/external/chromium_org/v8/test/webkit/ |
toString-elision-trailing-comma-expected.txt | 32 PASS unevalf(eval(unevalf(f1))) is unevalf(f1) 33 PASS eval(unevalf(f1))().length is 1 34 PASS eval(unevalf(f1))()[1-1] is undefined 37 PASS unevalf(eval(unevalf(f2))) is unevalf(f2) 38 PASS eval(unevalf(f2))().length is 1 39 PASS eval(unevalf(f2))()[1-1] is 1 42 PASS unevalf(eval(unevalf(f3))) is unevalf(f3) 43 PASS eval(unevalf(f3))().length is 1 44 PASS eval(unevalf(f3))()[1-1] is 1 47 PASS unevalf(eval(unevalf(f4))) is unevalf(f4 [all...] |
eval-throw-return-expected.txt | 24 This test verifies the result returned by the eval function when exceptions are thrown and caught whithin the contents of the evaluated string. 29 PASS eval("1;") is 1 30 PASS eval("1; try { foo = [2,3,throwFunc(), 4]; } catch (e){}") is 1 31 PASS eval("1; try { 2; throw \"\"; } catch (e){}") is 2 32 PASS eval("1; try { 2; throwFunc(); } catch (e){}") is 2 33 PASS eval("1; try { 2; throwFunc(); } catch (e){3;} finally {}") is 3 34 PASS eval("1; try { 2; throwFunc(); } catch (e){3;} finally {4;}") is 4 35 PASS eval("function blah() { 1; }\n blah();") is undefined 36 PASS eval("var x = 1;") is undefined 37 PASS eval("if (true) { 1; } else { 2; }") is [all...] |
eval-throw-return.js | 24 description('This test verifies the result returned by the eval function when exceptions are thrown and caught whithin the contents of the evaluated string.'); 39 shouldBe('eval("1;")', "1"); 40 shouldBe('eval("1; try { foo = [2,3,throwFunc(), 4]; } catch (e){}")', "1"); 41 shouldBe('eval("1; try { 2; throw \\"\\"; } catch (e){}")', "2"); 42 shouldBe('eval("1; try { 2; throwFunc(); } catch (e){}")', "2"); 43 shouldBe('eval("1; try { 2; throwFunc(); } catch (e){3;} finally {}")', "3"); 44 shouldBe('eval("1; try { 2; throwFunc(); } catch (e){3;} finally {4;}")', "4"); 45 shouldBe('eval("function blah() { 1; }\\n blah();")', "undefined"); 46 shouldBe('eval("var x = 1;")', "undefined"); 47 shouldBe('eval("if (true) { 1; } else { 2; }")', "1") [all...] |
/external/valgrind/main/gdbserver_tests/ |
mcvabits.stdinB.gdb | 23 eval "monitor check_memory addressable 0x%x 10", $0xundefined 24 eval "monitor check_memory defined 0x%x 10", $0xundefined 25 eval "monitor get_vbits 0x%x 10", $0xundefined 31 eval "monitor check_memory addressable 0x%x 10", $0xundefined 32 eval "monitor check_memory defined 0x%x 10", $0xundefined 33 eval "monitor get_vbits 0x%x 10", $0xundefined 37 eval "monitor make_memory defined 0x%x 3", $0xundefined_2 39 eval "monitor check_memory addressable 0x%x 10", $0xundefined 40 eval "monitor check_memory defined 0x%x 10", $0xundefined 41 eval "monitor get_vbits 0x%x 10", $0xundefine [all...] |
/external/chromium_org/third_party/sqlite/src/test/ |
like2.test | 22 db eval { 155 db eval { 163 db eval { 171 db eval "SELECT x FROM t1 WHERE y LIKE ' %'" 174 db eval "SELECT x FROM t2 WHERE y LIKE ' %'" 177 db eval "SELECT x FROM t3 WHERE y LIKE 'abc %'" 180 db eval "SELECT x FROM t1 WHERE y LIKE '!%'" 183 db eval "SELECT x FROM t2 WHERE y LIKE '!%'" 186 db eval "SELECT x FROM t3 WHERE y LIKE 'abc!%'" 189 db eval "SELECT x FROM t1 WHERE y LIKE '\"%' [all...] |
keyword1.test | 20 db eval { 94 db eval "CREATE TABLE \"$kw\"($kw $kw)" 96 db eval "CREATE TABLE ${kw}($kw $kw)" 98 db eval "INSERT INTO $kw VALUES(99)" 99 db eval "INSERT INTO $kw SELECT a FROM t1" 101 db eval "SELECT * FROM $kw ORDER BY $kw ASC" 103 db eval "SELECT * FROM $kw ORDER BY \"$kw\" ASC" 108 db eval "DROP TABLE \"$kw\"" 109 db eval "CREATE INDEX \"$kw\" ON t1(a)" 111 db eval "DROP TABLE $kw [all...] |
/frameworks/native/libs/input/tests/ |
Android.mk | 24 $(eval include $(CLEAR_VARS)) \ 25 $(eval LOCAL_SHARED_LIBRARIES := $(shared_libraries)) \ 26 $(eval LOCAL_STATIC_LIBRARIES := $(static_libraries)) \ 27 $(eval LOCAL_SRC_FILES := $(file)) \ 28 $(eval LOCAL_MODULE := $(notdir $(file:%.cpp=%))) \ 29 $(eval include $(BUILD_NATIVE_TEST)) \
|
/frameworks/native/libs/ui/tests/ |
Android.mk | 20 $(eval include $(CLEAR_VARS)) \ 21 $(eval LOCAL_SHARED_LIBRARIES := $(shared_libraries)) \ 22 $(eval LOCAL_STATIC_LIBRARIES := $(static_libraries)) \ 23 $(eval LOCAL_SRC_FILES := $(file)) \ 24 $(eval LOCAL_MODULE := $(notdir $(file:%.cpp=%))) \ 25 $(eval include $(BUILD_NATIVE_TEST)) \
|