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

<<11121314151617181920>>

  /external/chromium_org/v8/test/mjsunit/
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-eval-init.js 43 eval(source);
57 eval(source);
66 eval(source);
84 eval(source);
91 eval(source);
102 eval(source);
111 eval(source);
  /external/v8/test/mjsunit/
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-eval-init.js 43 eval(source);
57 eval(source);
66 eval(source);
84 eval(source);
91 eval(source);
102 eval(source);
111 eval(source);
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
rhino-python.prog 25 eval(loadFile("../../lib/antlr3-all.js"));
26 eval(loadFile("../../lib/antlr3-cli.js"));
27 eval(loadFile("PythonLexer.js"));
28 eval(loadFile("PythonParser.js"));
29 eval(loadFile("rhino-python.extensions"));
  /external/chromium_org/third_party/sqlite/src/test/
fts3fault2.test 32 db eval {SELECT * FROM sqlite_master}
41 db eval {SELECT * FROM sqlite_master}
50 db eval {SELECT * FROM sqlite_master}
59 db eval {SELECT * FROM sqlite_master}
78 db eval {SELECT * FROM sqlite_master}
boundary1.tcl 112 puts " db eval \173"
130 puts " db eval \173"
149 puts " db eval \173"
154 puts " db eval \173"
159 puts " db eval \173"
177 puts " db eval \173"
184 puts " db eval \173"
195 puts " db eval \173"
206 puts " db eval \173"
222 puts " db eval \173
    [all...]
boundary2.tcl 112 puts " db eval \173"
131 puts " db eval \173"
150 puts " db eval \173"
155 puts " db eval \173"
160 puts " db eval \173"
178 puts " db eval \173"
185 puts " db eval \173"
196 puts " db eval \173"
207 puts " db eval \173"
223 puts " db eval \173
    [all...]
recover.test 24 db eval {
43 db eval {
56 db eval {
72 db eval {
86 db eval "DROP TABLE IF EXISTS $table"
88 db eval "CREATE TABLE $table (t TEXT,n INT)"
91 db eval [concat {INSERT INTO} $table {VALUES ($t, $i)}]
102 db eval {
119 db eval {
136 db eval {
    [all...]
  /external/chromium_org/v8/test/mjsunit/compiler/
unary-add.js 38 assertEquals(1, eval("+'1'; 1"));
39 assertEquals(1, eval("+1; 1"));
40 assertEquals(1, eval("+1.12; 1"));
41 assertEquals(1, eval("+undefined; 1"));
42 assertEquals(1, eval("+{}; 1"));
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1178598.js 40 eval("const e=1");
48 // Make sure that catch variables can be accessed using eval.
54 result = eval("e");
74 result = eval("e");
80 eval("e");
regress-1199401.js 44 assertEquals(result, eval(min_smi + " * -1"), name + "-litconmult");
45 assertEquals(result, eval(min_smi + " / -1"), name + "-litcondiv");
46 assertEquals(result, eval("-(" + min_smi + ")"), name + "-litneg");
47 assertEquals(result, eval("0 - (" + min_smi + ")")), name + "-conlitsub";
64 assertEquals(result, eval(min_smi + " * minus_one"), name + "-litvarmult");
65 assertEquals(result, eval(min_smi + " / minus_one"), name + "-litvarmdiv");
66 assertEquals(result, eval("0 - (" + min_smi + ")"), name + "-varlitsub");
  /external/chromium_org/v8/test/webkit/
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('');
named-function-expression-expected.txt 33 eval'd code should be able to access scoped variables
34 PASS var z = 6; var x = eval('(function(a,b){ return a + b + z; })'); x(3,4) is 13
35 eval'd code + self-check
36 PASS var z = 10; var x = eval('(function Named(a,b){ return (!!Named) ? (a + b + z) : -999; })'); x(4,5) is 19
42 PASS var hadError = 0; try { eval("function(){ return 2; };"); } catch(e) { hadError = 1; }; hadError; is 1
55 PASS: (function closure() { eval("var closure"); return closure == undefined && !this.closure; })() should be true and is.
56 PASS: (function closure() { eval("function closure() { }"); return closure != arguments.callee && !this.closure; })() should be true and is.
57 PASS: (function closure() { eval("var closure;"); closure = 1; return closure == 1 && !this.closure; })() should be true and is.
58 PASS: (function closure() { eval("var closure"); delete closure; return closure == arguments.callee && !this.closure; })() should be true and is.
59 PASS: (function closure() { eval("function closure() { }"); delete closure; return closure == arguments.callee && !this.closure; }) (…)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/
Makefile.android 86 $(eval $(call install-target,objs/sdl-config,$(target)/bin/sdl-config)) \
87 $(eval $(call install-target,objs/SDL_config.h,$(target)/include/SDL/SDL_config.h)) \
88 $(eval $(call install-target,objs/libs/libSDL.a,$(target)/libs/libSDL.a)) \
89 $(eval $(call install-target,objs/libs/libSDLmain.a,$(target)/libs/libSDLmain.a)) \
91 $(eval $(call install-target,include/$(header),$(target)/include/SDL/$(header))) \
  /external/v8/test/mjsunit/compiler/
unary-add.js 38 assertEquals(1, eval("+'1'; 1"));
39 assertEquals(1, eval("+1; 1"));
40 assertEquals(1, eval("+1.12; 1"));
41 assertEquals(1, eval("+undefined; 1"));
42 assertEquals(1, eval("+{}; 1"));
  /external/v8/test/mjsunit/regress/
regress-1178598.js 40 eval("const e=1");
48 // Make sure that catch variables can be accessed using eval.
54 result = eval("e");
74 result = eval("e");
80 eval("e");
regress-1199401.js 44 assertEquals(result, eval(min_smi + " * -1"), name + "-litconmult");
45 assertEquals(result, eval(min_smi + " / -1"), name + "-litcondiv");
46 assertEquals(result, eval("-(" + min_smi + ")"), name + "-litneg");
47 assertEquals(result, eval("0 - (" + min_smi + ")")), name + "-conlitsub";
64 assertEquals(result, eval(min_smi + " * minus_one"), name + "-litvarmult");
65 assertEquals(result, eval(min_smi + " / minus_one"), name + "-litvarmdiv");
66 assertEquals(result, eval("0 - (" + min_smi + ")"), name + "-varlitsub");
  /build/core/
distdir.mk 60 $(eval fw := $(subst :,$(space),$(file))) \
61 $(eval src := $(word 1,$(fw))) \
62 $(eval dst := $(word 2,$(fw))) \
63 $(eval dst := $(if $(dst),$(dst),$(notdir $(src)))) \
65 $(eval $(call add-dependency,$(1),$(DIST_DIR)/$(dst))),\
66 $(eval $(call copy-one-dist-file,\
68 $(eval _all_dist_src_dst_pairs += $(src):$(dst))\
  /build/core/tasks/
factory_bundle.mk 45 $(eval _fb_m_tuple := $(subst :, ,$(_fb_m))) \
46 $(eval _fb_m_name := $(word 1,$(_fb_m_tuple))) \
47 $(eval _fb_dests := $(wordlist 2,999,$(_fb_m_tuple))) \
48 $(eval _fb_m_built := $(filter $(HOST_OUT)/%, $(ALL_MODULES.$(_fb_m_name).BUILT))) \
50 $(foreach _fb_f,$(_fb_dests),$(eval $(call copy-one-file,$(_fb_m_built),$(root_dir)/$(_fb_f))))\
60 $(eval $(call copy-one-file,$(TARGET_OUT)/build.prop,$(root_dir)/build.prop))
63 $(eval $(call copy-one-file,$(PRODUCT_OUT)/factory_ramdisk.img,$(root_dir)/factory_ramdisk.img))
sdk-addon.mk 44 $(eval _src := $(call module-stubs-files,$(call word-colon,1,$(cf)))) \
45 $(eval $(call stub-addon-jar,$(_src))) \
46 $(eval _src := $(call stub-addon-jar-file,$(_src))) \
47 $(if $(_src),,$(eval $(error Unknown or unlinkable module: $(call word-colon,1,$(cf)). Requested by $(INTERNAL_PRODUCT)))) \
48 $(eval _dest := $(call word-colon,2,$(cf))) \
49 $(eval files_to_copy += $(_src):$(_dest)) \
66 $(eval _src := $(call word-colon,1,$(cf))) \
67 $(eval _dest := $(call append-path,$(staging),$(call word-colon,2,$(cf)))) \
68 $(eval $(call copy-one-file,$(_src),$(_dest))) \
69 $(eval sdk_addon_deps += $(_dest))
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/
out_test.sh 41 eval "failed$failedct='C: ${a} crashed!'"
48 eval "failed$failedct='E: ${a} returned an error code!'"
59 eval "failed$failedct='W: ${a} did not match errors and warnings!'"
68 eval "failed$failedct='E: ${a} did not return an error code!'"
80 eval "failed$failedct='W: ${a} did not match errors and warnings!'"
86 eval "failed$failedct='O: ${a} did not match object file!'"
99 eval "failure=\$failed$i"
  /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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_compiler.py 142 'eval')
143 self.assertEqual(eval(c), [(0, 3), (1, 3), (2, 3)])
146 c = compiler.compile('{1, 2, 3}', '<string>', 'eval')
147 self.assertEqual(eval(c), {1,2,3})
148 c = compiler.compile('{1, 2, 3,}', '<string>', 'eval')
149 self.assertEqual(eval(c), {1,2,3})
152 c = compiler.compile('{1:2, 2:3, 3:4}', '<string>', 'eval')
153 self.assertEqual(eval(c), {1:2, 2:3, 3:4})
154 c = compiler.compile('{1:2, 2:3, 3:4,}', '<string>', 'eval')
155 self.assertEqual(eval(c), {1:2, 2:3, 3:4}
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_compiler.py 142 'eval')
143 self.assertEqual(eval(c), [(0, 3), (1, 3), (2, 3)])
146 c = compiler.compile('{1, 2, 3}', '<string>', 'eval')
147 self.assertEqual(eval(c), {1,2,3})
148 c = compiler.compile('{1, 2, 3,}', '<string>', 'eval')
149 self.assertEqual(eval(c), {1,2,3})
152 c = compiler.compile('{1:2, 2:3, 3:4}', '<string>', 'eval')
153 self.assertEqual(eval(c), {1:2, 2:3, 3:4})
154 c = compiler.compile('{1:2, 2:3, 3:4,}', '<string>', 'eval')
155 self.assertEqual(eval(c), {1:2, 2:3, 3:4}
    [all...]

Completed in 352 milliseconds

<<11121314151617181920>>