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

1 23 4 5 6 7 8 91011>>

  /external/v8/test/mjsunit/compiler/
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));
  /external/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-1170.js 31 eval("var a = 1");
35 eval("with({}) { eval('var a = 2') }");
41 eval("function a() {}");
47 eval("const b = 23");
56 eval("with({}) { eval('const b = 23') }");
66 eval("var c = 1");
regress-1199637.js 39 eval("var a = 5678;");
44 eval("const b = 5678;");
49 eval("var c = 5678;");
54 eval("const d = 5678;");
60 eval("with({}) { var x = 5678; }");
65 eval("with({}) { const y = 5678; }");
70 eval("with({}) { var z = 5678; }");
75 eval("with({}) { const w = 5678; }");
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/
function-001.js 7 * eval("function f(){}function g(){}") at top level is an error for JS1.2
14 * js> eval("function f(){}function g(){}")
17 * js> eval("function f(){}function g(){}")
37 eval("function f(){}function g(){}");
45 "eval(\"function f(){}function g(){}\") (threw "+exception,
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/
try-005.js 7 * as try-004, but the eval statement is called from a function, not
32 function Eval( v ) {
33 return eval( v );
44 result = Eval( value );
51 "eval( " + value +" )",
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/
11.13.2-3.js 60 array[item++] = new TestCase( SECTION, "VAR1 = NaN; VAR2=1; VAR1 %= VAR2", Number.NaN, eval("VAR1 = Number.NaN; VAR2=1; VAR1 %= VAR2") );
61 array[item++] = new TestCase( SECTION, "VAR1 = NaN; VAR2=1; VAR1 %= VAR2; VAR1", Number.NaN, eval("VAR1 = Number.NaN; VAR2=1; VAR1 %= VAR2; VAR1") );
62 array[item++] = new TestCase( SECTION, "VAR1 = NaN; VAR2=0; VAR1 %= VAR2", Number.NaN, eval("VAR1 = Number.NaN; VAR2=0; VAR1 %= VAR2") );
63 array[item++] = new TestCase( SECTION, "VAR1 = NaN; VAR2=0; VAR1 %= VAR2; VAR1", Number.NaN, eval("VAR1 = Number.NaN; VAR2=0; VAR1 %= VAR2; VAR1") );
64 array[item++] = new TestCase( SECTION, "VAR1 = 0; VAR2=NaN; VAR1 %= VAR2", Number.NaN, eval("VAR1 = 0; VAR2=Number.NaN; VAR1 %= VAR2") );
65 array[item++] = new TestCase( SECTION, "VAR1 = 0; VAR2=NaN; VAR1 %= VAR2; VAR1", Number.NaN, eval("VAR1 = 0; VAR2=Number.NaN; VAR1 %= VAR2; VAR1") );
69 array[item++] = new TestCase( SECTION, "VAR1 = Infinity; VAR2= Infinity; VAR1 %= VAR2; VAR1", Number.NaN, eval("VAR1 = Number.POSITIVE_INFINITY; VAR2 = Number.POSITIVE_INFINITY; VAR1 %= VAR2; VAR1") );
70 array[item++] = new TestCase( SECTION, "VAR1 = Infinity; VAR2= -Infinity; VAR1 %= VAR2; VAR1", Number.NaN, eval("VAR1 = Number.POSITIVE_INFINITY; VAR2 = Number.NEGATIVE_INFINITY; VAR1 %= VAR2; VAR1") );
71 array[item++] = new TestCase( SECTION, "VAR1 =-Infinity; VAR2= Infinity; VAR1 %= VAR2; VAR1", Number.NaN, eval("VAR1 = Number.NEGATIVE_INFINITY; VAR2 = Number.POSITIVE_INFINITY; VAR1 %= VAR2; VAR1") );
72 array[item++] = new TestCase( SECTION, "VAR1 =-Infinity; VAR2=-Infinity; VAR1 %= VAR2; VAR1", Number.NaN, eval("VAR1 = Number.NEGATIVE_INFINITY; VAR2 = Number.NEGATIVE_INFINITY; VAR1 %= VAR2; VAR1") )
    [all...]
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/tests/
perf 25 [ "$1" = "eval" ] && echo $2 || echo $*; $perform $*
53 MSG=;EVAL=
98 EVAL="$EVAL $cmd_VDTrate+size=$VDsize"
99 EVAL="$EVAL $cmd_VPrate+size=$VDsize"
105 EVAL="$EVAL $cmd_VCrate+size=$size"
106 EVAL="$EVAL $cmd_VCPrate+size=$size
    [all...]
  /external/openssl/crypto/aes/asm/
aesni-sha1-x86_64.pl 258 eval(shift(@insns));
259 eval(shift(@insns));
262 eval(shift(@insns));
263 eval(shift(@insns));
266 eval(shift(@insns));
267 eval(shift(@insns));
269 eval(shift(@insns));
270 eval(shift(@insns));
272 eval(shift(@insns));
273 eval(shift(@insns))
    [all...]
  /external/openssl/crypto/sha/asm/
sha1-x86_64.pl 376 eval(shift(@insns));
377 eval(shift(@insns));
380 eval(shift(@insns));
381 eval(shift(@insns));
384 eval(shift(@insns));
385 eval(shift(@insns));
387 eval(shift(@insns));
388 eval(shift(@insns));
390 eval(shift(@insns));
391 eval(shift(@insns))
    [all...]
sha1-586.pl 531 eval(shift(@insns));
532 eval(shift(@insns));
535 eval(shift(@insns));
536 eval(shift(@insns));
540 eval(shift(@insns));
541 eval(shift(@insns));
543 eval(shift(@insns));
544 eval(shift(@insns));
546 eval(shift(@insns));
547 eval(shift(@insns))
    [all...]
  /build/core/tasks/
factory_ramdisk.mk 34 $(eval _iofrm_suffix := $(suffix $(1))) \
36 $(eval _iofrm_pattern := %$(_iofrm_suffix)), \
37 $(eval _iofrm_pattern := %$(notdir $(1)))) \
38 $(eval _iofrm_src := $(filter $(_iofrm_pattern),$(2))) \
40 $(eval _fulldest := $(TARGET_FACTORY_RAMDISK_OUT)/$(1)) \
41 $(eval $(call copy-one-file,$(_iofrm_src),$(_fulldest))) \
42 $(eval INTERNAL_FACTORY_RAMDISK_EXTRA_MODULES_FILES += $(_fulldest)), \
49 $(eval _fr_m_tuple := $(subst :, ,$(m))) \
50 $(eval _fr_m_name := $(word 1,$(_fr_m_tuple))) \
51 $(eval _fr_dests := $(wordlist 2,999,$(_fr_m_tuple)))
    [all...]
  /external/skia/src/animator/
thingstodo.txt 5 eval(eval(eval... user callouts
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Unicode/
uc-003.js 39 reportCompare (5, eval("\u0041"),
41 reportCompare (6, eval("++\u0041"),
43 reportCompare (15, eval("A\u03B2"),
45 reportCompare (16, eval("++A\u03B2"),
47 reportCompare (25, eval("c\\u00" + "61se"),
49 reportCompare (26, eval("++c\\u00" + "61se"),
  /external/v8/test/mjsunit/
arguments-load-across-eval.js 28 // Tests loading of aguments across eval calls.
30 // Test loading across an eval call that does not shadow variables.
33 eval('1');
47 // Test loading across eval calls that do not shadow variables.
49 eval('1');
51 eval('1');
65 // Test loading across an eval call that shadows variables.
70 eval('var x = 3; var h = function() { return 4; };');
  /external/v8/test/mjsunit/harmony/
block-let-semantics.js 38 eval("(function(){" + s + "; })")();
48 eval("(function(){ {" + s + ";} })")();
92 TestAll('eval("x + 1;"); let x;');
93 TestAll('eval("x = 1;"); let x;');
94 TestAll('eval("x += 1;"); let x;');
95 TestAll('eval("++x;"); let x;');
96 TestAll('eval("x++;"); let x;');
97 TestAll('eval("x"); const x = 1;');
99 // Use before initialization with check for eval-shadowed bindings.
100 TestAll('function f() { eval("var y = 2;"); x + 1; }; f(); let x;')
    [all...]
  /external/webkit/Source/
DerivedSources.pro 14 eval($${subtarget}.makefile = "Makefile.DerivedSources")
15 eval(generated_files-$${subtarget}.commands = (cd $$subdir && $(MAKE) -f Makefile.DerivedSources generated_files))
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/ExecutionContexts/
10.1.3.js 53 eval("function t() { return \"first\" };" +
60 eval("var t; function t(){}; typeof(t)"));
68 eval("function t1(a,b) { return b; }; t1( 4 );") );
73 eval("function t1(a,b) { return a; }; t1(4)"));
78 eval("function t1(a,b) { return a; }; t1()"));
83 eval("function t1(a,b) { return a; }; t1(1,2,4)"));
88 eval("function t1(a,a) { return a; }; t1( 4 )"));
93 eval("function t1(a,a) { return a; }; t1( 1,2 )"));
100 eval("function t1(a,b) { return a; }; t1( false, true );"));
105 eval("function t1(a,b) { return b; }; t1( false, true );"))
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_4/Eval/
eval-001.js 23 * File Name: eval-001.js
26 * The global eval function may not be accessed indirectly and then called.
40 * Indirect eval IS NOT ILLEGAL per ECMA3!!! See
47 * doesn't throw EvalError must allow assignment to eval and indirect calls
51 var SECTION = "eval-001.js";
53 var TITLE = "Calling eval indirectly should NOT fail in version 140";
62 var MY_EVAL = eval;
70 "Call eval indirectly",
eval-002.js 23 * File Name: eval-002.js
26 * The global eval function may not be accessed indirectly and then called.
40 * Indirect eval IS NOT ILLEGAL per ECMA3!!! See
47 * doesn't throw EvalError must allow assignment to eval and indirect calls
51 var SECTION = "eval-002.js";
53 var TITLE = "Calling eval indirectly should NOT fail in version 140";
61 var MY_EVAL = eval;
76 "Call eval indirectly",
eval-003.js 23 * File Name: eval-003.js
26 * The global eval function may not be accessed indirectly and then called.
40 * Indirect eval IS NOT ILLEGAL per ECMA3!!! See
47 * doesn't throw EvalError must allow assignment to eval and indirect calls
51 var SECTION = "eval-003.js";
53 var TITLE = "Calling eval indirectly should NOT fail in version 140";
61 var MY_EVAL = eval;
80 "Call eval indirectly",
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-204210.js 38 * SUMMARY: eval() is not a constructor, but don't crash on |new eval();|
46 var summary = "eval() is not a constructor, but don't crash on |new eval();|";
67 var x = new eval();
68 new eval();
83 var x = new eval();
84 new eval();
93 * eval scope -
98 s += ' var x = new eval();';
    [all...]
  /external/webkit/Tools/
DerivedSources.pro 10 eval($${subtarget}.makefile = "Makefile.DerivedSources")
11 eval(generated_files-$${subtarget}.commands = (cd $$subdir && $(MAKE) -f Makefile.DerivedSources generated_files))
  /build/core/
product.mk 39 $(eval PRODUCT_MAKEFILES :=) \
40 $(eval LOCAL_DIR := $(patsubst %/,%,$(dir $(f)))) \
41 $(eval include $(f)) \
44 $(eval PRODUCT_MAKEFILES :=) \
45 $(eval LOCAL_DIR :=) \
113 $(eval $(v) := $($(v)) $(INHERIT_TAG)$(strip $(1)))) \
114 $(eval inherit_var := \
116 $(eval $(inherit_var) := $(sort $($(inherit_var)) $(strip $(1)))) \
117 $(eval inherit_var:=) \
118 $(eval ALL_PRODUCTS := $(sort $(ALL_PRODUCTS) $(word 1,$(_include_stack)))
    [all...]

Completed in 629 milliseconds

1 23 4 5 6 7 8 91011>>