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

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/content/test/data/workers/
worker_common.js 26 else if (/eval.+/.test(evt.data)) {
28 postMessage(eval(evt.data.substr(5)));
  /external/chromium_org/third_party/libevent/
log.c 70 event_err(int eval, const char *fmt, ...)
77 exit(eval);
91 event_errx(int eval, const char *fmt, ...)
98 exit(eval);
  /frameworks/rs/
rsAnimation.h 37 float eval(float) const;
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/
rsAnimation.h 37 float eval(float) const;
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/
rsAnimation.h 37 float eval(float) const;
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/
rsAnimation.h 37 float eval(float) const;
  /external/eigen/test/
geo_homogeneous.cpp 51 VERIFY_IS_APPROX(t1 * (v0.homogeneous().eval()), t1 * v0.homogeneous());
52 VERIFY_IS_APPROX(t1 * (m0.colwise().homogeneous().eval()), t1 * m0.colwise().homogeneous());
55 VERIFY_IS_APPROX(t2 * (v0.homogeneous().eval()), t2 * v0.homogeneous());
56 VERIFY_IS_APPROX(t2 * (m0.colwise().homogeneous().eval()), t2 * m0.colwise().homogeneous());
58 VERIFY_IS_APPROX((v0.transpose().rowwise().homogeneous().eval()) * t2,
60 m0.transpose().rowwise().homogeneous().eval();
61 VERIFY_IS_APPROX((m0.transpose().rowwise().homogeneous().eval()) * t2,
65 VERIFY_IS_APPROX((v0.transpose().rowwise().homogeneous().eval()) * t3,
67 VERIFY_IS_APPROX((m0.transpose().rowwise().homogeneous().eval()) * t3,
  /external/chromium_org/v8/test/webkit/
named-function-expression.js 36 debug("eval'd code should be able to access scoped variables");
37 shouldBe("var z = 6; var x = eval('(function(a,b){ return a + b + z; })'); x(3,4)", "13");
39 debug("eval'd code + self-check");
40 shouldBe("var z = 10; var x = eval('(function Named(a,b){ return (!!Named) ? (a + b + z) : -999; })'); x(4,5)", "19");
49 shouldBe('var hadError = 0; try { eval("function(){ return 2; };"); } catch(e) { hadError = 1; }; hadError;', "1");
117 // Eval var shadowing (should overwrite).
119 (function closure() { eval("var closure"); return closure == undefined && !this.closure; })(),
120 "(function closure() { eval(\"var closure\"); return closure == undefined && !this.closure; })()"
123 // Eval function shadowing (should overwrite).
125 (function closure() { eval("function closure() { }"); return closure != arguments.callee && !this.closure; })()
    [all...]
eval-var-decl.js 35 var firstEvalResult = eval('var result = this.hasOwnProperty("y"); var y = 3; result');
38 var secondEvalResult = eval('delete x; var result = this.hasOwnProperty("x"); var x = 3; result');
43 thirdEvalResult = (function(){ var x=false; try { throw ""; } catch (e) { eval("var x = true;"); } return x; })();
49 // Check that the correct this value is passed to a function called having been caught from a throw, where the catch block contains an eval (bug#).
60 eval('');
  /system/core/toolbox/upstream-netbsd/bin/rm/
rm.c 63 static int dflag, eval, fflag, iflag, Pflag, stdin_ok, vflag, Wflag; variable
156 exit(eval);
197 eval = 1;
214 eval = 1;
271 eval = 1;
303 eval = 1;
310 eval = 1;
317 eval = 1;
339 eval = 1;
524 err: eval = 1
    [all...]
  /build/core/
cleanbuild.mk 31 $(eval _acs_makefile_prefix := $(lastword $(MAKEFILE_LIST)))
32 $(eval _acs_makefile_prefix := $(subst /,_,$(_acs_makefile_prefix)))
33 $(eval _acs_makefile_prefix := $(subst .,-,$(_acs_makefile_prefix)))
34 $(eval _acs_makefile_prefix := $(_acs_makefile_prefix)_acs)
36 $(eval $(_acs_makefile_prefix) := $(INTERNAL_CLEAN_BUILD_VERSION)))
37 $(eval $(_acs_makefile_prefix) := $($(_acs_makefile_prefix))@)
38 $(if $(strip $(2)),$(eval _acs_id := $($(_acs_makefile_prefix))),\
39 $(eval _acs_id := $(_acs_makefile_prefix)$($(_acs_makefile_prefix))))
40 $(eval INTERNAL_CLEAN_STEPS += $(_acs_id))
41 $(eval INTERNAL_CLEAN_STEP.$(_acs_id) := $(1)
    [all...]
  /external/chromium_org/v8/test/mjsunit/
local-load-from-eval.js 28 // Tests loads of local properties from eval.
32 eval(source);
37 test("(function() { var y = 42; eval('1'); assertEquals(42, y); })();");
38 test("(function() { var y = 42; eval('var y = 2; var z = 2;'); assertEquals(2, y); })();");
const-eval-init.js 43 eval(source);
57 eval(source);
66 eval(source);
84 eval(source);
92 eval(source);
103 eval(source);
112 eval(source);
strict-mode-implicit-receiver.js 97 // Check calls to eval within a function with 'undefined' as receiver.
100 return eval("this");
141 // Test calls of aliased eval.
143 var eval = function() { return this; }
146 assertEquals('object', typeof eval());
152 function outer_eval_conversion3(eval, expected) {
155 var x = eval("this");
163 function strict_eval(s) { "use strict"; return eval(s); }
164 function non_strict_eval(s) { return eval(s); }
171 outer_eval_conversion3(eval, 'undefined')
    [all...]
strict-mode.js 92 // Function named 'eval'.
93 CheckStrictMode("function eval() {}", SyntaxError);
98 // Function parameter named 'eval'.
99 CheckStrictMode("function foo(a, b, eval, c, d) {}", SyntaxError);
104 // Property accessor parameter named 'eval'.
105 CheckStrictMode("var o = { set foo(eval) {} }", SyntaxError);
113 // Function constructor: eval parameter name.
114 CheckFunctionConstructorStrictMode("eval");
123 // catch(eval)
124 CheckStrictMode("try{}catch(eval){};", SyntaxError)
    [all...]
const-redecl.js 45 return eval("(function(){" + s + ";return " + e + "})")();
57 return eval(s + ";" + e);
75 // No eval.
77 // Eval everything.
78 TestAll("TypeError", 'eval("' + def0 + '; ' + def1 + '")');
79 // Eval first definition.
80 TestAll("TypeError", 'eval("' + def0 +'"); ' + def1);
81 // Eval second definition.
82 TestAll("TypeError", def0 + '; eval("' + def1 +'")');
83 // Eval both definitions separately
    [all...]
parse-int-float.js 76 var x = eval("1.2e" + i);
78 x = eval("1e" + i);
82 x = eval("-1e" + i);
84 x = eval("-1.2e" + i);
89 var x = eval("1e" + i);
91 x = eval("-1e" + i);
  /external/chromium_org/v8/test/mjsunit/regress/
regress-crbug-385002.js 14 eval("function g() {" + locals + "f();}");
  /external/eigen/test/eigen2/
eigen2_product_large.cpp 35 VERIFY_IS_APPROX((a = a * b), (c * b).eval());
42 VERIFY_IS_APPROX(result, (mat1.row(2)*mat2.transpose()).eval());
  /frameworks/compile/mclinker/lib/Script/
TernaryOp.cpp 19 TernaryOp<Operator::TERNARY_IF>::eval(const Module& pModule, function in class:TernaryOp
33 TernaryOp<Operator::DATA_SEGMENT_ALIGN>::eval(const Module& pModule, function in class:TernaryOp
RpnEvaluator.cpp 31 bool RpnEvaluator::eval(const RpnExpr& pExpr, uint64_t& pResult) function in class:RpnEvaluator
41 operandStack.push(op->eval(m_Module, m_Backend));
48 operandStack.push(op->eval(m_Module, m_Backend));
58 operandStack.push(op->eval(m_Module, m_Backend));
71 operandStack.push(op->eval(m_Module, m_Backend));
  /external/chromium_org/v8/test/webkit/fast/js/
basic-strict-mode.js 86 shouldBeSyntaxError("(function eval(){'use strict';})");
87 shouldBeSyntaxError("(function (eval){'use strict';})");
90 shouldBeSyntaxError("(function (){'use strict'; var eval;})");
92 shouldBeSyntaxError("(function (){'use strict'; try{}catch(eval){}})");
142 shouldThrow("'use strict'; eval('var introducedVariable = \"FAIL: variable introduced into containing scope\";'); introducedVariable");
149 shouldBeSyntaxError("'use strict'; ++eval");
150 shouldBeSyntaxError("'use strict'; eval++");
151 shouldBeSyntaxError("'use strict'; --eval");
152 shouldBeSyntaxError("'use strict'; eval--");
158 shouldThrow("global.eval('\"use strict\"; if (0) ++arguments; true;')")
    [all...]
  /external/chromium_org/v8/test/mjsunit/compiler/
countoperation.js 51 assertEquals(1, eval("++a; 1"));
53 assertEquals(1, eval("a++; 1"));
55 assertEquals(1, eval("++b.x; 1"));
57 assertEquals(1, eval("b.x++; 1"));
59 assertEquals(1, eval("++b[c]; 1"));
61 assertEquals(1, eval("b[c]++; 1"));
  /external/eigen/unsupported/test/
polynomialutils.cpp 80 bool eval = (M >= Max) && (m <= min); local
81 if( !eval )
87 VERIFY( eval );
  /external/ceres-solver/internal/ceres/
normal_prior.cc 58 // The extra eval is to get around a bug in the eigen library.
59 r = A_ * (p - b_).eval();

Completed in 480 milliseconds

1 2 3 45 6 7 8 91011>>