HomeSort by relevance Sort by last modified time
    Searched full:eval (Results 376 - 400 of 1854) sorted by null

<<11121314151617181920>>

  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-68498-001.js 22 * SUMMARY: var self = global JS object, outside any eval, is DontDelete
29 * "Demonstrate that variable statement outside any eval creates a
34 var summary ='Testing that variable statement outside any eval creates' +
  /ndk/sources/host-tools/sed-4.2.1/m4/
gettext.m4 86 dnl if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" != "yes"; }; then
164 [eval "$gt_func_gnugettext_libc=yes"],
165 [eval "$gt_func_gnugettext_libc=no"])])
167 if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" != "yes"; }; then
194 [eval "$gt_func_gnugettext_libintl=yes"],
195 [eval "$gt_func_gnugettext_libintl=no"])
197 if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" != yes; } && test -n "$LIBICONV"; then
211 eval "$gt_func_gnugettext_libintl=yes"
222 if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" = "yes"; } \
223 || { { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.test.performance_3.6.0.v20091014.jar 
  /external/openssl/crypto/aes/asm/
aesni-x86.pl 108 eval"&aes${p} ($inout,$rndkey1)";
113 eval"&aes${p}last ($inout,$rndkey1)";
130 eval"&aes${p} ($inout,$rndkey1)";
132 eval"&aes${p} ($inout,$rndkey0)";
135 eval"&aes${p} ($inout,$rndkey1)";
137 eval"&aes${p} ($inout,$rndkey0)";
140 eval"&aes${p} ($inout,$rndkey1)";
142 eval"&aes${p} ($inout,$rndkey0)";
144 eval"&aes${p} ($inout,$rndkey1)";
146 eval"&aes${p} ($inout,$rndkey0)"
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Function/
regress-58274.js 81 eval(sEval);
104 eval(sEval);
175 * Note we can't simply do |eval(str)|, since in practice |str| will be an
176 * identifier somewhere in the program (e.g. a function name); thus |eval(str)|
188 * js> eval("'" + '\nHello' + "'");
196 return eval("'" + str + "'");
  /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();
  /external/chromium/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/e2fsprogs/lib/et/
compile_et.sh.in 25 if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
26 eval $as_var=C; export $as_var
  /external/e2fsprogs/tests/
run_e2fsck 48 eval $PREP_CMD
64 eval $AFTER_CMD
  /external/eigen/test/
hessenberg.cpp 37 VERIFY_IS_EQUAL(cs1.matrixH().eval(), cs2.matrixH().eval());
  /external/libvpx/libvpx/build/make/
version.sh 53 if eval echo \$$v |grep -E -q '[^[:digit:]]'; then
54 eval $v=0
  /external/v8/test/mjsunit/compiler/
regress-closures-with-eval.js 30 // Verifies that closures in presence of eval work fine.
40 var o = eval(expr);
  /external/v8/test/mjsunit/
debug-set-script-source.js 55 eval('a=1');
56 eval('(function(){})');
debug-step-stub-callfunction.js 47 // Use 'eval' to ensure that the call to print is through CodeStub CallFunction.
51 eval('');
function-without-prototype.js 40 eval(name + ".prototype = 42;");
44 testPrototype(eval);
getter-in-prototype.js 54 eval('1');
60 eval('1');
  /external/v8/test/mjsunit/regress/
regress-109195.js 49 eval(src);
65 eval(src);
regress-1151.js 34 eval.__proto__ = function () { };
35 eval['prototype'] = {};
regress-1620.js 39 eval("var \\u1234 = 42;");
40 assertEquals(42, eval("\u1234"));
regress-799761.js 85 // const variables may be declared via 'eval'
88 eval('const x = 7');
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Boolean/
15.6.3.1-4.js 56 eval("var BOOL_PROTO = Boolean.prototype; Boolean.prototype=null; Boolean.prototype == BOOL_PROTO") );
61 eval("var BOOL_PROTO = Boolean.prototype; Boolean.prototype=null; Boolean.prototype == null") );
15.6.4.2-3.js 50 array[item++] = new TestCase( SECTION, "tostr=Boolean.prototype.toString; x=true; x.toString=tostr;x.toString()", "true", eval("tostr=Boolean.prototype.toString; x=true; x.toString=tostr;x.toString()") );
51 array[item++] = new TestCase( SECTION, "tostr=Boolean.prototype.toString; x=false; x.toString=tostr;x.toString()", "false", eval("tostr=Boolean.prototype.toString; x=false; x.toString=tostr;x.toString()") );
15.6.4.3-2.js 50 array[item++] = new TestCase( SECTION, "valof=Boolean.prototype.valueOf; x=new Boolean(); x.valueOf=valof;x.valueOf()", false, eval("valof=Boolean.prototype.valueOf; x=new Boolean(); x.valueOf=valof;x.valueOf()") );
51 array[item++] = new TestCase( SECTION, "valof=Boolean.prototype.valueOf; x=new Boolean(true); x.valueOf=valof;x.valueOf()", true, eval("valof=Boolean.prototype.valueOf; x=new Boolean(true); x.valueOf=valof;x.valueOf()") );
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/
11.12-2-n.js 53 // get around parse time error by putting expression in an eval statement
55 testcases[tc].actual = eval ( testcases[tc].actual );
11.12-3.js 53 // get around potential parse time error by putting expression in an eval statement
55 testcases[tc].actual = eval ( testcases[tc].actual );

Completed in 866 milliseconds

<<11121314151617181920>>