HomeSort by relevance Sort by last modified time
    Searched refs:eval (Results 1 - 25 of 778) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bootable/recovery/tests/
Android.mk 19 $(eval include $(CLEAR_VARS)) \
20 $(eval LOCAL_SHARED_LIBRARIES := $(shared_libraries)) \
21 $(eval LOCAL_STATIC_LIBRARIES := $(static_libraries)) \
22 $(eval LOCAL_SRC_FILES := $(file)) \
23 $(eval LOCAL_MODULE := $(notdir $(file:%.cpp=%))) \
24 $(eval LOCAL_C_INCLUDES := $(LOCAL_PATH)/..) \
25 $(eval include $(BUILD_NATIVE_TEST)) \
  /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/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...]
cross-realm-filtering.js 9 "(function () { Realm.eval(Realm.current(), 'throw Error()') })";
11 thrower_0: Realm.eval(realms[0], thrower_script),
12 thrower_1: Realm.eval(realms[1], thrower_script),
35 Realm.eval(realms[1], script);
43 Realm.eval(realms[0], script);
55 caller_0 : Realm.eval(realms[0], caller_script),
56 caller_1 : Realm.eval(realms[1], caller_script),
66 Realm.eval(realms[1], script);
70 Realm.eval(realms[0], script);
  /external/ant-glob/src/org/apache/tools/ant/taskdefs/condition/
Condition.java 33 boolean eval() throws BuildException; method in interface:Condition
  /external/chromium_org/third_party/skia/include/utils/
SkBoundaryPatch.h 26 virtual SkPoint eval(Edge, SkScalar unitInterval) = 0;
40 SkPoint eval(SkScalar unitU, SkScalar unitV);
54 virtual SkPoint eval(Edge, SkScalar);
63 virtual SkPoint eval(Edge, SkScalar);
  /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/eigen/test/
product_extra.cpp 41 VERIFY_IS_APPROX(m3.noalias() = m1 * m2.adjoint(), m1 * m2.adjoint().eval());
42 VERIFY_IS_APPROX(m3.noalias() = m1.adjoint() * square.adjoint(), m1.adjoint().eval() * square.adjoint().eval());
43 VERIFY_IS_APPROX(m3.noalias() = m1.adjoint() * m2, m1.adjoint().eval() * m2);
44 VERIFY_IS_APPROX(m3.noalias() = (s1 * m1.adjoint()) * m2, (s1 * m1.adjoint()).eval() * m2);
45 VERIFY_IS_APPROX(m3.noalias() = ((s1 * m1).adjoint()) * m2, (numext::conj(s1) * m1.adjoint()).eval() * m2);
46 VERIFY_IS_APPROX(m3.noalias() = (- m1.adjoint() * s1) * (s3 * m2), (- m1.adjoint() * s1).eval() * (s3 * m2).eval());
47 VERIFY_IS_APPROX(m3.noalias() = (s2 * m1.adjoint() * s1) * m2, (s2 * m1.adjoint() * s1).eval() * m2);
48 VERIFY_IS_APPROX(m3.noalias() = (-m1*s2) * s1*m2.adjoint(), (-m1*s2).eval() * (s1*m2.adjoint()).eval())
    [all...]
mixingtypes.cpp 85 VERIFY_IS_APPROX((vf * vcf.transpose()).eval(), (vf.template cast<complex<float> >() * vcf.transpose()).eval());
89 VERIFY_IS_APPROX((vf * vcf.transpose()).eval(), (vf.template cast<complex<float> >() * vcf.transpose()).eval());
96 VERIFY_IS_APPROX(sd*md*mcd, (sd*md).template cast<CD>().eval()*mcd);
98 VERIFY_IS_APPROX(scd*md*mcd, scd*md.template cast<CD>().eval()*mcd);
106 VERIFY_IS_APPROX(sf*mf*vcf, (sf*mf).template cast<CF>().eval()*vcf);
107 VERIFY_IS_APPROX(scf*mf*vcf,(scf*mf.template cast<CF>()).eval()*vcf);
111 VERIFY_IS_APPROX(sf*vcf.adjoint()*mf, sf*vcf.adjoint()*mf.template cast<CF>().eval());
112 VERIFY_IS_APPROX(scf*vcf.adjoint()*mf, scf*vcf.adjoint()*mf.template cast<CF>().eval());
    [all...]
  /external/clang/test/CXX/temp/temp.arg/temp.arg.template/
p3-0x.cpp 3 template <class T> struct eval; // expected-note 3{{template is declared here}}
6 struct eval<TT<T1, Rest...>> { }; struct
14 eval<A<int>> eA;
15 eval<B<int, float>> eB;
16 eval<C<17>> eC; // expected-error{{implicit instantiation of undefined template 'eval<C<17> >'}}
17 eval<D<int, 17>> eD; // expected-error{{implicit instantiation of undefined template 'eval<D<int, 17> >'}}
18 eval<E<int, float>> eE; // expected-error{{implicit instantiation of undefined template 'eval<E<int, float, 17> >}
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
MediaQueryEvaluator.h 81 bool eval(const MediaQuerySet*, MediaQueryResultList* = 0) const;
84 bool eval(const MediaQuery*, MediaQueryResultList*) const;
87 bool eval(const MediaQueryExp*) const;
  /external/chromium_org/v8/test/webkit/
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/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/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...]
  /bionic/libc/bionic/
err.c 40 err(int eval, const char *fmt, ...)
45 verr(eval, fmt, ap);
50 errx(int eval, const char *fmt, ...)
55 verrx(eval, fmt, ap);
60 verr(int eval, const char *fmt, va_list ap)
71 exit(eval);
76 verrx(int eval, const char *fmt, va_list ap)
82 exit(eval);
  /build/core/tasks/tools/
package-modules.mk 21 $(eval _pickup_files := $(strip $(ALL_MODULES.$(m).PICKUP_FILES)\
23 $(eval _built_files := $(strip $(ALL_MODULES.$(m).BUILT_INSTALLED)\
27 $(eval my_pickup_files += $(_pickup_files))\
29 $(eval bui_ins := $(subst :,$(space),$(i)))\
30 $(eval ins := $(word 2,$(bui_ins)))\
32 $(eval bui := $(word 1,$(bui_ins)))\
33 $(eval my_built_modules += $(bui))\
34 $(eval my_copy_dest := $(patsubst data/%,DATA/%,\
37 $(eval my_copy_pairs += $(bui):$(my_staging_dir)/$(my_copy_dest)))\
42 $(eval pair := $(subst :,$(space),$(p)))
    [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/chromium_org/v8/test/mjsunit/compiler/
literals-assignment.js 31 assertEquals(8, eval("(function() { return 8; })()"));
39 assertEquals(8, eval(code));
46 assertEquals("abc", eval(code));
55 assertEquals(8, eval(code));
63 assertEquals(8, eval(code));
70 assertEquals(8, eval(code));
75 eval(code);
79 eval(code);
85 assertEquals(10, eval(code));
88 eval(code)
    [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/third_party/libevent/
log.h 36 void event_err(int eval, const char *fmt, ...) EV_CHECK_FMT(2,3);
38 void event_errx(int eval, const char *fmt, ...) EV_CHECK_FMT(2,3);
  /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/clang/test/SemaCXX/
constant-expression.cpp 12 enum Enum { eval = 1 }; enumerator in enum:Enum
14 const Enum ceval = eval;
17 static const Enum seval = eval;
23 v2 = eval,
36 b2 : eval,
49 i2 = eval,
63 case 100 + eval:
80 template struct C<1, eval>;
  /external/mesa3d/
.dir-locals.el 7 (eval . (progn

Completed in 3386 milliseconds

1 2 3 4 5 6 7 8 91011>>