HomeSort by relevance Sort by last modified time
    Searched refs:eval (Results 51 - 75 of 922) sorted by null

1 23 4 5 6 7 8 91011>>

  /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/eigen/test/
product_syrk.cpp 39 ((s1 * rhs2 * rhs2.adjoint()).eval().template triangularView<Lower>().toDenseMatrix()));
42 ((s1 * rhs2 * rhs22.adjoint()).eval().template triangularView<Lower>().toDenseMatrix()));
47 (s1 * rhs2 * rhs2.adjoint()).eval().template triangularView<Upper>().toDenseMatrix());
50 (s1 * rhs22 * rhs2.adjoint()).eval().template triangularView<Upper>().toDenseMatrix());
55 (s1 * rhs1.adjoint() * rhs1).eval().template triangularView<Lower>().toDenseMatrix());
58 (s1 * rhs11.adjoint() * rhs1).eval().template triangularView<Lower>().toDenseMatrix());
63 (s1 * rhs1.adjoint() * rhs1).eval().template triangularView<Upper>().toDenseMatrix());
65 (s1 * rhs1.adjoint() * rhs11).eval().template triangularView<Upper>().toDenseMatrix());
70 (s1 * rhs3.adjoint() * rhs3).eval().template triangularView<Lower>().toDenseMatrix());
74 (s1 * rhs3.adjoint() * rhs3).eval().template triangularView<Upper>().toDenseMatrix())
    [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)) \
  /device/generic/goldfish/opengl/
common.mk 32 $(eval include $(CLEAR_VARS)) \
33 $(eval LOCAL_MODULE := $1) \
34 $(eval LOCAL_MODULE_CLASS := $(patsubst HOST_%,%,$(patsubst %EXECUTABLE,%EXECUTABLES,$(patsubst %LIBRARY,%LIBRARIES,$2)))) \
35 $(eval LOCAL_IS_HOST_MODULE := $(if $3,true,))\
36 $(eval LOCAL_C_INCLUDES := $(EMUGL_COMMON_INCLUDES)) \
37 $(eval LOCAL_CFLAGS := $(EMUGL_COMMON_CFLAGS)) \
38 $(eval LOCAL_PRELINK_MODULE := false)\
39 $(eval _EMUGL_INCLUDE_TYPE := $(BUILD_$2)) \
44 $(eval include $(_EMUGL_INCLUDE_TYPE))\
45 $(eval _EMUGL_INCLUDE_TYPE :=)
    [all...]
  /external/eigen/doc/snippets/
Jacobi_makeJacobi.cpp 2 m = (m + m.adjoint()).eval();
  /frameworks/compile/mclinker/include/mcld/Script/
RpnEvaluator.h 27 bool eval(const RpnExpr& pExpr, uint64_t& pResult);
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
rhino-python.prog 25 eval(loadFile("../../lib/antlr3-all.js"));
26 eval(loadFile("../../lib/antlr3-cli.js"));
27 eval(loadFile("PythonLexer.js"));
28 eval(loadFile("PythonParser.js"));
29 eval(loadFile("rhino-python.extensions"));
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1624-strict.js 28 // Test that global eval calls of strict code (independent from whether being
32 var evil = eval;
34 // Test global direct strict eval in strict script.
37 eval('"use strict"; var no_touch = 1;');
40 // Test global indirect strict eval in strict script.
46 // Test global direct non-strict eval in strict script.
49 eval('var no_touch = 3;');
52 // Test global indirect non-strict eval in strict script.
58 // Test non-global direct strict eval in strict script.
63 eval('"use strict"; var no_touch = 5;')
    [all...]
regress-1624.js 28 // Test that global eval calls of strict code (independent from whether being
31 var evil = eval;
33 // Test global direct strict eval.
36 eval('"use strict"; var no_touch = 1;');
39 // Test global indirect strict eval.
45 // Test global direct non-strict eval.
48 eval('var no_touch = 3;');
51 // Test global indirect non-strict eval.
57 // Test non-global direct strict eval in non-strict function.
62 eval('"use strict"; var no_touch = 5;')
    [all...]
regress-124.js 31 assertEquals("[object global]", eval("this.toString()"));
32 assertEquals("[object Undefined]", eval("toString()"));
34 assertEquals("[object global]", eval("var f; this.toString()"));
35 assertEquals("[object Undefined]", eval("var f; toString()"));
42 assertEquals("[object global]", eval("this.toString()"));
43 assertEquals("[object Undefined]", eval("toString()"));
45 assertEquals("[object global]", eval("var f; this.toString()"));
46 assertEquals("[object Undefined]", eval("var f; toString()"));
48 assertEquals("[object Undefined]", eval("f()"));
51 assertEquals("[object Arguments]", eval("arguments[0]()"))
    [all...]
  /system/extras/tests/bionic/libc/
Android.mk 30 $(eval include $(CLEAR_VARS)) \
31 $(eval LOCAL_SRC_FILES := $(file)) \
32 $(eval LOCAL_MODULE := $(notdir $(file:%.c=%))) \
33 $(eval LOCAL_MODULE := $(LOCAL_MODULE:%.cpp=%)) \
34 $(eval LOCAL_CFLAGS += $(EXTRA_CFLAGS)) \
35 $(eval LOCAL_LDFLAGS += $(EXTRA_LDLIBS)) \
36 $(eval LOCAL_MODULE_TAGS := tests) \
37 $(eval include $(BUILD_EXECUTABLE)) \
39 $(eval EXTRA_CFLAGS :=) \
40 $(eval EXTRA_LDLIBS :=
    [all...]
  /external/chromium_org/v8/test/mjsunit/
eval-enclosing-function-name.js 28 // From within 'eval', the name of the enclosing function should be
35 f = function y() { return eval('typeof y'); };
51 f = function y() { y = 3; return eval('typeof y'); }
59 f = function y() { var y = 3; return eval('typeof y'); }
63 f = function y() { eval('y = 3'); return typeof y; }
67 f = function y() { eval('y = 3'); return eval('typeof y'); }
71 f = function y() { eval('var y = 3'); return typeof y; }
75 f = function y() { eval('var y = 3'); return eval('typeof y');
    [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); }
46 eval("var c");
47 try { eval("const c"); } catch (e) { caught++; assertTrue(e instanceof TypeError); }
50 try { eval("const c = 1"); } catch (e) { caught++; assertTrue(e instanceof TypeError); }
54 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/chromium_org/v8/test/mjsunit/compiler/
literals.js 29 assertEquals(8, eval("8"));
31 assertEquals(null, eval("null"));
33 assertEquals("abc", eval("'abc'"));
35 assertEquals(8, eval("6;'abc';8"));
75 assertEquals([1,2,3,4], eval('[1,2,3,4]'));
76 assertEquals([[1,2],3,4], eval('[[1,2],3,4]'));
77 assertEquals([1,[2,3,4]], eval('[1,[2,3,4]]'));
79 assertEquals([1,2,3,4], eval('var a=1, b=2; [a,b,3,4]'))
80 assertEquals([1,2,3,4], eval('var a=1, b=2, c = [a,b,3,4]; c'));
84 assertEquals([2,4,6,8], eval(s))
    [all...]
globals.js 32 assertEquals(1, eval('g = 1'));
37 assertEquals(1, eval('g = 1'));
39 assertEquals(1, eval('g = 1'));
43 assertEquals("2", eval('g = "2"'));
47 assertEquals("2", eval('g'));
50 assertEquals("2", eval('g'));
51 assertEquals("2", eval('g'));
55 assertEquals(3, eval('g'));
64 assertEquals(1, eval(code));
  /sdk/emulator/opengl/
common.mk 43 $(eval include $(CLEAR_VARS)) \
44 $(eval LOCAL_MODULE := $1) \
45 $(eval LOCAL_MODULE_TAGS := $(if $3,,debug)) \
46 $(eval LOCAL_MODULE_CLASS := $(patsubst HOST_%,%,$(patsubst %EXECUTABLE,%EXECUTABLES,$(patsubst %LIBRARY,%LIBRARIES,$2)))) \
47 $(eval LOCAL_IS_HOST_MODULE := $(if $3,true,))\
48 $(eval LOCAL_C_INCLUDES += $(EMUGL_COMMON_INCLUDES)) \
49 $(eval LOCAL_CFLAGS += $(EMUGL_COMMON_CFLAGS)) \
50 $(eval LOCAL_LDLIBS += -lstdc++) \
51 $(eval LOCAL_PRELINK_MODULE := false)\
52 $(eval _EMUGL_INCLUDE_TYPE := $(BUILD_$2))
    [all...]
  /external/chromium_org/v8/test/mjsunit/harmony/
block-let-semantics.js 37 eval("(function(){" + s + "; })")();
47 eval("(function(){ {" + s + ";} })")();
91 TestAll('eval("x + 1;"); let x;');
92 TestAll('eval("x = 1;"); let x;');
93 TestAll('eval("x += 1;"); let x;');
94 TestAll('eval("++x;"); let x;');
95 TestAll('eval("x++;"); let x;');
96 TestAll('eval("x"); const x = 1;');
98 // Use before initialization with check for eval-shadowed bindings.
99 TestAll('function f() { eval("var y = 2;"); x + 1; }; f(); let x;')
    [all...]
  /external/chromium_org/v8/test/webkit/
unmatching-argument-count.js 35 shouldBe('eval("f()")', '""');
36 shouldBe('eval("f(1)")', '"1"');
37 shouldBe('eval("f(1, 2)")', '"1, 2"');
38 shouldBe('eval("f(1, 2, 3)")', '"1, 2, 3"');
39 shouldBe('eval("f(1, 2, 3, 4)")', '"1, 2, 3, 4"');
40 shouldBe('eval("f(1, 2, 3, 4, 5)")', '"1, 2, 3, 4, 5"');
41 shouldBe('eval("f(1, 2, 3, 4, 5, 6)")', '"1, 2, 3, 4, 5, 6"');
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...]
  /external/apache-xml/src/main/java/org/apache/xpath/
CachedXPathAPI.java 183 XObject list = eval(contextNode, str, namespaceNode);
222 XObject list = eval(contextNode, str, namespaceNode);
243 public XObject eval(Node contextNode, String str) method in class:CachedXPathAPI
246 return eval(contextNode, str, contextNode);
269 public XObject eval(Node contextNode, String str, Node namespaceNode) method in class:CachedXPathAPI
318 public XObject eval( method in class:CachedXPathAPI
XPathAPI.java 128 XObject list = eval(contextNode, str, namespaceNode);
167 XObject list = eval(contextNode, str, namespaceNode);
188 public static XObject eval(Node contextNode, String str) method in class:XPathAPI
191 return eval(contextNode, str, contextNode);
214 public static XObject eval(Node contextNode, String str, Node namespaceNode) method in class:XPathAPI
266 public static XObject eval( method in class:XPathAPI
  /external/gtest/test/
Android.mk 53 $(eval include $(CLEAR_VARS)) \
54 $(eval LOCAL_CPP_EXTENSION := .cc) \
55 $(eval LOCAL_SRC_FILES := $(file)) \
56 $(eval LOCAL_C_INCLUDES := $(libgtest_test$(4)_includes)) \
57 $(eval LOCAL_MODULE := $(notdir $(file:%.cc=%))$(4)) \
58 $(eval LOCAL_CFLAGS += $(3) -Wno-empty-body) \
59 $(eval LOCAL_LDFLAGS += $(libgtest_test$(4)_ldflags)) \
60 $(eval LOCAL_STATIC_LIBRARIES := $(libgtest_test$(4)_static_lib)) \
61 $(eval LOCAL_SHARED_LIBRARIES := $(libgtest_test$(4)_shared_lib)) \
62 $(if $(2),,$(eval LOCAL_MODULE_TAGS := tests))
    [all...]
  /packages/apps/Calculator/
arity-2.1.2.jar 
  /build/core/tasks/
sdk-addon.mk 45 $(eval _src := $(call module-stubs-files,$(call word-colon,1,$(cf)))) \
46 $(eval $(call stub-addon-jar,$(_src))) \
47 $(eval _src := $(call stub-addon-jar-file,$(_src))) \
48 $(if $(_src),,$(eval $(error Unknown or unlinkable module: $(call word-colon,1,$(cf)). Requested by $(INTERNAL_PRODUCT)))) \
49 $(eval _dest := $(call word-colon,2,$(cf))) \
50 $(eval files_to_copy += $(addon_dir_leaf):$(_src):$(_dest)) \
57 $(eval _src := $(call word-colon,1,$(cf))) \
58 $(eval _dest := $(call word-colon,2,$(cf))) \
59 $(if $(findstring images/,$(_dest)), $(eval _root := $(addon_dir_img)), $(eval _root := $(addon_dir_leaf)))
    [all...]

Completed in 1196 milliseconds

1 23 4 5 6 7 8 91011>>