/external/chromium_org/third_party/sqlite/src/test/ |
trans3.test | 23 db eval { 32 db eval BEGIN 33 db eval {INSERT INTO t1 VALUES(4);} 36 db eval {SELECT * FROM t1 LIMIT 1} { 37 if {[catch {db eval COMMIT} errmsg]} { 52 db eval {SELECT * FROM t1} 55 db eval BEGIN 56 db eval {INSERT INTO t1 VALUES(5);} 59 db eval {SELECT * FROM t1} { 60 if {[catch {db eval ROLLBACK} errmsg]} [all...] |
nan.test | 33 db eval { 42 db eval {SELECT x, typeof(x) FROM t1} 49 db eval {SELECT x, typeof(x) FROM t1} 55 db eval {SELECT x, typeof(x) FROM t1} 61 db eval {SELECT x, typeof(x) FROM t1} 67 db eval {SELECT x, typeof(x) FROM t1} 73 db eval {SELECT x, typeof(x) FROM t1} 76 db eval { 91 db eval { 97 db eval {SELECT CAST(x AS text), typeof(x) FROM t1 [all...] |
securedel.test | 26 db eval {PRAGMA secure_delete;} 31 db eval { 38 db eval { 44 db eval { 51 db eval { 58 db eval { 65 db eval {
|
shared4.test | 41 db1 eval { 45 db2 eval { 49 db3 eval { 53 db4 eval { 57 db1 eval { 62 db2 eval { 67 db3 eval { 72 db4 eval { 77 db1 eval { 85 db2 eval { [all...] |
intarray.test | 25 db eval { 30 db eval {INSERT INTO t1(a,b) VALUES($i,$b)} 32 db eval { 44 db eval { 51 db eval { 58 db eval { 64 db eval { 79 eval $cmd 80 db eval { 88 db eval { [all...] |
/ndk/sources/cxx-stl/gabi++/tests/ |
Android.mk | 4 $(eval include $$(CLEAR_VARS))\ 5 $(eval LOCAL_MODULE := test_gabixx_static_$1)\ 6 $(eval LOCAL_SRC_FILES := $2)\ 7 $(eval LOCAL_CFLAGS := $3)\ 8 $(eval LOCAL_STATIC_LIBRARIES := gabi++_static)\ 9 $(eval include $$(BUILD_EXECUTABLE))\ 11 $(eval include $$(CLEAR_VARS))\ 12 $(eval LOCAL_MODULE := test_gabixx_shared_$1)\ 13 $(eval LOCAL_SRC_FILES := $2)\ 14 $(eval LOCAL_CFLAGS := $3) [all...] |
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/tests/ |
dromaeo-core-eval.html | 5 window.onload = function(){ startTest("dromaeo-core-eval", 'efec1da2'); 13 // TESTS: eval() 23 test( "Normal eval", function(){ 24 eval(tmp);
|
/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,
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_opcodes.py | 73 f = eval('lambda: None') 74 g = eval('lambda: None') 77 f = eval('lambda a: a') 78 g = eval('lambda a: a') 81 f = eval('lambda a=1: a') 82 g = eval('lambda a=1: a') 85 f = eval('lambda: 0') 86 g = eval('lambda: 1') 89 f = eval('lambda: None') 90 g = eval('lambda a: None' [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_opcodes.py | 73 f = eval('lambda: None') 74 g = eval('lambda: None') 77 f = eval('lambda a: a') 78 g = eval('lambda a: a') 81 f = eval('lambda a=1: a') 82 g = eval('lambda a=1: a') 85 f = eval('lambda: 0') 86 g = eval('lambda: 1') 89 f = eval('lambda: None') 90 g = eval('lambda a: None' [all...] |
/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/chromium_org/third_party/mesa/src/src/mesa/vbo/ |
vbo_exec_eval.c | 38 assert(attr < Elements(exec->eval.map1)); 39 exec->eval.map1[attr].map = NULL; 44 assert(attr < Elements(exec->eval.map2)); 45 exec->eval.map2[attr].map = NULL; 51 assert(attr < Elements(exec->eval.map1)); 52 if (!exec->eval.map1[attr].map) { 53 exec->eval.map1[attr].map = map; 54 exec->eval.map1[attr].sz = dim; 61 assert(attr < Elements(exec->eval.map2)); 62 if (!exec->eval.map2[attr].map) [all...] |
/external/mesa3d/src/mesa/vbo/ |
vbo_exec_eval.c | 38 assert(attr < Elements(exec->eval.map1)); 39 exec->eval.map1[attr].map = NULL; 44 assert(attr < Elements(exec->eval.map2)); 45 exec->eval.map2[attr].map = NULL; 51 assert(attr < Elements(exec->eval.map1)); 52 if (!exec->eval.map1[attr].map) { 53 exec->eval.map1[attr].map = map; 54 exec->eval.map1[attr].sz = dim; 61 assert(attr < Elements(exec->eval.map2)); 62 if (!exec->eval.map2[attr].map) [all...] |
/external/chromium_org/v8/test/webkit/fast/js/ |
read-modify-eval.js | 25 'Tests whether eval() works inside statements that read and modify a value.' 31 x *= eval('2'); 38 x /= eval('2'); 45 x += eval('1'); 52 x -= eval('1'); 59 x <<= eval('1'); 66 x >>= eval('1'); 73 x >>>= eval('1'); 80 x &= eval('1'); 87 x ^= eval('1') [all...] |
/external/chromium_org/v8/test/mjsunit/ |
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...] |
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...] |
/external/v8/test/mjsunit/ |
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/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/chromium_org/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...] |
/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/libvpx/libvpx/build/make/ |
rtcd.sh | 35 --disable-*) eval "disable_${opt#--disable-}=true";; 56 [ -f "$config_file" ] && eval $(grep CONFIG_ "$config_file") 70 eval "${2}_rtyp='$rtyp'" 71 eval "${2}_args='$3'" 80 eval "${fn}_${opt}=${fn}_${opt}" 87 ofn=$(eval "echo \$${fn}_${opt}") 92 best=$(eval "echo \$${fn}_default") 93 best_ofn=$(eval "echo \$${best}") 94 [ -n "$best" ] && [ "$best_ofn" != "$ofn" ] && eval "${best}_link=false" 95 eval "${fn}_default=${fn}_${opt} [all...] |
/ndk/sources/host-tools/make-3.81/tests/scripts/functions/ |
eval | 3 $description = "Test the eval function."; 5 $details = "This is a test of the eval function in GNU make. 17 X = $(eval $(value Y)) 19 $(eval $(shell echo A = A)) 20 $(eval $(Y)) 21 $(eval A = C) 22 $(eval $(X)) 46 $(foreach v,$(VARS),$(eval $(call VARSET,$v,$v))) 60 # Test to make sure eval'ing inside conditionals works properly 76 $(eval $(Y) [all...] |