/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)) \
|
/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/native/libs/utils/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/webkit/Source/JavaScriptCore/tests/mozilla/ecma/GlobalObject/ |
15.1.2.1-1.js | 24 ECMA Section: 15.1.2.1 eval(x) 34 var TITLE = "eval(x)"; 48 array[item++] = new TestCase( SECTION, "eval.length", 1, eval.length ); 49 array[item++] = new TestCase( SECTION, "delete eval.length", false, delete eval.length ); 50 array[item++] = new TestCase( SECTION, "var PROPS = ''; for ( p in eval ) { PROPS += p }; PROPS", "", eval("var PROPS = ''; for ( p in eval ) { PROPS += p }; PROPS") ); 51 array[item++] = new TestCase( SECTION, "eval.length = null; eval.length", 1, eval( "eval.length = null; eval.length") ) [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...] |
global-load-from-eval-in-with.js | 28 // Tests global loads from eval inside of a with statement. 34 eval(source); 38 // Test shadowing in eval scope. 42 // Test shadowing in local scope inside an eval scope. 46 // Test shadowing in local scope inside an eval scope. Deeper nesting 51 // Test shadowing in local scope inside an eval scope with eval calls in the eval scopes. 52 test({ x: 42 }, "function f() { eval('1'); assertEquals(42, x) }; f();"); 53 test({ y: 42 }, "function f() { eval('1'); assertEquals(27, x) }; f();") [all...] |
/external/webkit/Source/WebCore/manual-tests/inspector-wrappers/ |
console-eval.html | 5 window.eval = function() { doAttack(eval); }
|
/frameworks/base/services/input/tests/ |
Android.mk | 36 $(eval include $(CLEAR_VARS)) \ 37 $(eval LOCAL_SHARED_LIBRARIES := $(shared_libraries)) \ 38 $(eval LOCAL_STATIC_LIBRARIES := $(static_libraries)) \ 39 $(eval LOCAL_C_INCLUDES := $(c_includes)) \ 40 $(eval LOCAL_SRC_FILES := $(file)) \ 41 $(eval LOCAL_MODULE := $(notdir $(file:%.cpp=%))) \ 42 $(eval LOCAL_MODULE_TAGS := $(module_tags)) \ 43 $(eval include $(BUILD_EXECUTABLE)) \
|
/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)) \
|
/hardware/msm7k/libgralloc-qsd8k/tests/ |
Android.mk | 37 $(eval include $(CLEAR_VARS)) \ 38 $(eval LOCAL_CPP_EXTENSION := .cpp) \ 39 $(eval LOCAL_SRC_FILES := $(file)) \ 40 $(eval LOCAL_C_INCLUDES := $(libgralloc_test_includes)) \ 41 $(eval LOCAL_MODULE := $(notdir $(file:%.cpp=%))) \ 42 $(eval LOCAL_CFLAGS += $(EXTRA_CFLAGS)) \ 43 $(eval LOCAL_LDLIBS += $(EXTRA_LDLIBS)) \ 44 $(eval LOCAL_STATIC_LIBRARIES := $(libgralloc_test_static_libs)) \ 45 $(eval include $(BUILD_HOST_EXECUTABLE)) \ 47 $(eval EXTRA_CFLAGS :=) [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...] |
/frameworks/base/libs/androidfw/tests/ |
Android.mk | 26 $(eval include $(CLEAR_VARS)) \ 27 $(eval LOCAL_SHARED_LIBRARIES := $(shared_libraries)) \ 28 $(eval LOCAL_STATIC_LIBRARIES := $(static_libraries)) \ 29 $(eval LOCAL_SRC_FILES := $(file)) \ 30 $(eval LOCAL_MODULE := $(notdir $(file:%.cpp=%))) \ 31 $(eval include $(BUILD_NATIVE_TEST)) \
|
/frameworks/native/libs/ui/tests/ |
Android.mk | 17 $(eval include $(CLEAR_VARS)) \ 18 $(eval LOCAL_SHARED_LIBRARIES := $(shared_libraries)) \ 19 $(eval LOCAL_STATIC_LIBRARIES := $(static_libraries)) \ 20 $(eval LOCAL_SRC_FILES := $(file)) \ 21 $(eval LOCAL_MODULE := $(notdir $(file:%.cpp=%))) \ 22 $(eval include $(BUILD_NATIVE_TEST)) \
|
/build/core/ |
copy_headers.mk | 16 $(eval _chFrom := $(LOCAL_PATH)/$(header)) \ 17 $(eval _chTo := \ 19 $(eval $(call copy-one-header,$(_chFrom),$(_chTo))) \ 20 $(eval all_copied_headers: $(_chTo)) \
|
/ndk/sources/host-tools/sed-4.2.1/testsuite/ |
eval.sed | 3 #Try eval command 5 e../sed/sed 1q eval.in2 12 #Try eval option 13 s,.* *cpu *,../sed/sed 1q eval.in2; echo "&",e 21 #Try eval option with print 22 s,.* *cpu.*,../sed/sed 1q eval.in2,ep 34 s,.*,../sed/sed 1q eval.in2,ep 36 s,.*,../sed/sed 1q eval.in2,pe 38 s,.*,../sed/sed 1q eval.in2,
|
/system/extras/tests/bionic/libstdc++/ |
Android.mk | 31 $(eval include $(CLEAR_VARS)) \ 32 $(eval LOCAL_SRC_FILES := $(file)) \ 33 $(eval LOCAL_MODULE := $(notdir $(file:%.cpp=%))) \ 34 $(eval LOCAL_CFLAGS += $(EXTRA_CFLAGS)) \ 35 $(eval LOCAL_MODULE_TAGS := tests) \ 36 $(eval include $(BUILD_EXECUTABLE)) \ 38 $(eval EXTRA_CFLAGS :=) 46 $(eval include $(CLEAR_VARS)) \ 47 $(eval LOCAL_SRC_FILES := $(file)) \ 48 $(eval LOCAL_MODULE := $(notdir $(file:%.cpp=%))) [all...] |
/external/eigen/test/ |
product_extra.cpp | 42 VERIFY_IS_APPROX(m3.noalias() = m1 * m2.adjoint(), m1 * m2.adjoint().eval()); 43 VERIFY_IS_APPROX(m3.noalias() = m1.adjoint() * square.adjoint(), m1.adjoint().eval() * square.adjoint().eval()); 44 VERIFY_IS_APPROX(m3.noalias() = m1.adjoint() * m2, m1.adjoint().eval() * m2); 45 VERIFY_IS_APPROX(m3.noalias() = (s1 * m1.adjoint()) * m2, (s1 * m1.adjoint()).eval() * m2); 46 VERIFY_IS_APPROX(m3.noalias() = ((s1 * m1).adjoint()) * m2, (internal::conj(s1) * m1.adjoint()).eval() * m2); 47 VERIFY_IS_APPROX(m3.noalias() = (- m1.adjoint() * s1) * (s3 * m2), (- m1.adjoint() * s1).eval() * (s3 * m2).eval()); 48 VERIFY_IS_APPROX(m3.noalias() = (s2 * m1.adjoint() * s1) * m2, (s2 * m1.adjoint() * s1).eval() * m2); 49 VERIFY_IS_APPROX(m3.noalias() = (-m1*s2) * s1*m2.adjoint(), (-m1*s2).eval() * (s1*m2.adjoint()).eval()) [all...] |
/external/v8/test/mjsunit/regress/ |
regress-1200351.js | 40 eval("SetValueOf(typeof(break.prototype.name), Math.max(typeof(break)))") 44 eval("export Join((void), false.className(), null instanceof continue, return 'a', 0.__defineGetter__(x,function(){native}))") 48 eval("with ({ void&&null.push(goto NaN) : Math.max(undef).toText }) { {-1/null,1.isNull} }") 52 eval("new break>>>=native.charCodeAt(-1.valueOf())") 56 eval("new Number(this > native)") 60 eval("new {native,0.2}?continue+undef:IsSmi(0.2)") 64 eval("const x = break.toString()&&return continue") 68 eval("for (-1==continue.toJSONProtocol, GetFunctionFor(break.call(NaN)), (!new RegExp).prototype.new Object()<<void) { debugger.__defineSetter__(null,function(){continue})>>>=GetFunctionFor(-1) }") 72 eval("for (parseFloat(NaN).splice() in null.add(1).className()) { true[0.2]<<x.splice() }") 76 eval("let (debugger.constructor.valueOf()) { this.sort().true.splice() }" [all...] |
/development/testrunner/tests/ |
Android_gtestlib.mk | 44 $(eval include $(CLEAR_VARS)) \ 45 $(eval LOCAL_SHARED_LIBRARIES := $(shared_libraries)) \ 46 $(eval LOCAL_STATIC_LIBRARIES := $(static_libraries)) \ 47 $(eval LOCAL_C_INCLUDES := $(c_includes)) \ 48 $(eval LOCAL_SRC_FILES := $(file)) \ 49 $(eval LOCAL_MODULE := $(notdir $(file:%.cpp=%))) \ 50 $(eval LOCAL_MODULE_TAGS := $(module_tags)) \ 51 $(eval include $(BUILD_EXECUTABLE)) \
|
/external/eigen/doc/snippets/ |
TopicAliasing_block_correct.cpp | 5 // The eval() solves the aliasing problem 6 mat.bottomRightCorner(2,2) = mat.topLeftCorner(2,2).eval();
|
/external/webkit/Source/WebCore/tests/ |
Android.mk | 38 $(eval include $(CLEAR_VARS)) \ 39 $(eval LOCAL_SHARED_LIBRARIES := $(shared_libraries)) \ 40 $(eval LOCAL_STATIC_LIBRARIES := $(static_libraries)) \ 41 $(eval LOCAL_C_INCLUDES := $(c_includes)) \ 42 $(eval LOCAL_SRC_FILES := $(file)) \ 43 $(eval LOCAL_MODULE := $(notdir $(file:%.cpp=%))) \ 44 $(eval LOCAL_MODULE_TAGS := $(module_tags)) \ 45 $(eval include $(BUILD_EXECUTABLE)) \
|
/external/webkit/Source/WebCore/ |
DerivedSources.pro | 11 eval($${1}.CONFIG = target_predeps no_link) 12 eval($${1}.variable_out =) 13 eval($${1}.dependency_type = TYPE_C) 15 wkScript = $$eval($${1}.wkScript) 16 eval($${1}.depends += $$wkScript)
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/ |
11.3.1.js | 67 array[item++] = new TestCase( SECTION, "var MYVAR; MYVAR++", NaN, eval("var MYVAR; MYVAR++") ); 68 array[item++] = new TestCase( SECTION, "var MYVAR= void 0; MYVAR++", NaN, eval("var MYVAR=void 0; MYVAR++") ); 69 array[item++] = new TestCase( SECTION, "var MYVAR=null; MYVAR++", 0, eval("var MYVAR=null; MYVAR++") ); 70 array[item++] = new TestCase( SECTION, "var MYVAR=true; MYVAR++", 1, eval("var MYVAR=true; MYVAR++") ); 71 array[item++] = new TestCase( SECTION, "var MYVAR=false; MYVAR++", 0, eval("var MYVAR=false; MYVAR++") ); 75 array[item++] = new TestCase( SECTION, "var MYVAR=Number.POSITIVE_INFINITY;MYVAR++", Number.POSITIVE_INFINITY, eval("var MYVAR=Number.POSITIVE_INFINITY;MYVAR++") ); 76 array[item++] = new TestCase( SECTION, "var MYVAR=Number.NEGATIVE_INFINITY;MYVAR++", Number.NEGATIVE_INFINITY, eval("var MYVAR=Number.NEGATIVE_INFINITY;MYVAR++") ); 77 array[item++] = new TestCase( SECTION, "var MYVAR=Number.NaN;MYVAR++", Number.NaN, eval("var MYVAR=Number.NaN;MYVAR++") ); 81 array[item++] = new TestCase( SECTION, "var MYVAR=Number.POSITIVE_INFINITY;MYVAR++;MYVAR", Number.POSITIVE_INFINITY, eval("var MYVAR=Number.POSITIVE_INFINITY;MYVAR++;MYVAR") ); 82 array[item++] = new TestCase( SECTION, "var MYVAR=Number.NEGATIVE_INFINITY;MYVAR++;MYVAR", Number.NEGATIVE_INFINITY, eval("var MYVAR=Number.NEGATIVE_INFINITY;MYVAR++;MYVAR") ) [all...] |