HomeSort by relevance Sort by last modified time
    Searched full:eval (Results 476 - 500 of 2959) sorted by null

<<11121314151617181920>>

  /external/chromium_org/v8/test/webkit/
pretty-print.js 38 eval(f.toString());
40 eval(g.toString());
  /external/e2fsprogs/lib/ss/
mk_cmds.sh.in 16 if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
17 eval $as_var=C; export $as_var
  /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());
  /external/eigen/test/
sparse_permutations.cpp 122 res_d = ((p * up_sym_d) * p.inverse()).eval().template triangularView<Upper>();
126 res_d = ((p * lo_sym_d) * p.inverse()).eval().template triangularView<Upper>();
130 res_d = ((p * lo_sym_d) * p.inverse()).eval().template triangularView<Lower>();
134 res_d = ((p * up_sym_d) * p.inverse()).eval().template triangularView<Lower>();
139 res_d = ((p * up_sym_d) * p.inverse()).eval().template triangularView<Upper>();
143 res_d = ((p * lo_sym_d) * p.inverse()).eval().template triangularView<Upper>();
147 res_d = ((p * lo_sym_d) * p.inverse()).eval().template triangularView<Lower>();
151 res_d = ((p * up_sym_d) * p.inverse()).eval().template triangularView<Lower>();
  /external/eigen/unsupported/test/
mpreal_support.cpp 40 VERIFY_IS_APPROX((S.selfadjointView<Lower>()*X).eval(),B);
44 VERIFY_IS_APPROX((A*X).eval(),B);
  /external/mesa3d/m4/
ax_python_module.m4 38 eval AS_TR_CPP(HAVE_PYMOD_$1)=yes
41 eval AS_TR_CPP(HAVE_PYMOD_$1)=no
  /external/v8/test/mjsunit/compiler/
property-simple.js 35 assertEquals(8, eval(code));
39 assertEquals(9, eval(code));
  /external/v8/test/mjsunit/
debug-stepout-scope.js 168 eval(pre + body);
169 eval("'use strict'; " + pre + body);
173 eval(pre + body);
200 // Test global eval and function constructor.
205 eval(pre + body);
206 eval("'use strict'; " + pre + body);
211 eval(pre + body);
220 eval("{}$%:^");
declare-locally.js 39 eval("assertEquals(42, foo); var foo = 87;");
42 eval("assertEquals(87, bar); const bar = 42;");
do-not-strip-fc.js 30 assertEquals(7, eval("'foo\u200dbar'").length);
31 assertEquals(7, eval("'foo\u200cbar'").length);
dont-reinit-global-var.js 44 eval('var baz;');
46 eval('var baz = "hest";');
function-caller.js 46 // Check called from eval.
47 eval('f(null)');
newline-in-string.js 40 assertEquals('asdfasdf', eval(code));
44 assertEquals('asdfasdf', eval(code));
receiver-in-with-calls.js 40 return eval("g")();
46 return eval("g()");
  /external/v8/test/mjsunit/harmony/
block-early-errors.js 38 eval("(function () { " + str + " })");
44 eval("(function () { { " + str + " } })");
  /external/v8/test/mjsunit/regress/
regress-1119.js 35 eval("try { } catch (e) { var x = false; }");
40 eval("try { } catch (e) { var y = false; }");
regress-115452.js 41 eval("function foobl() {}");
46 eval("function foobl() {}");
regress-191.js 37 eval("var x = 42");
39 assertEquals(42, eval("x"));
regress-747.js 31 // This can be a problem if eval is used within the scope.
36 this.callEval = function() {eval('x');};
regress-900055.js 28 var alias = eval;
37 e('s'); // should throw exception since aliased eval is global
regress-990205.js 33 // Force eager compilation of x through the use of eval. The break
35 return eval("while(0) function x() { break; }; 42");
  /external/chromium_org/third_party/sqlite/src/test/
crash5.test 40 db eval {
62 db eval BEGIN
64 catch {db eval { CREATE UNIQUE INDEX i1 ON t1(a); }} msg
72 db eval {
100 db eval {pragma integrity_check}
103 db eval {SELECT * FROM t1}
fts2n.test 37 db eval {
115 db eval {
165 db eval {
173 db eval {INSERT INTO t3(rowid, c) VALUES(3+$i, $bigtext)}
176 db eval {COMMIT;}
181 db eval {SELECT offsets(t3) as o FROM t3 WHERE t3 MATCH 'l*'} {
vtabA.test 33 db eval "PRAGMA table_info($table)" { lappend ret $name }
107 db eval { DROP TABLE IF EXISTS t1e; }
108 db eval { DROP TABLE IF EXISTS t1; }
109 db eval " CREATE TABLE t1 $columns "
110 db eval { CREATE VIRTUAL TABLE t1e USING echo(t1) }
139 db eval {
  /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"));

Completed in 2285 milliseconds

<<11121314151617181920>>