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

1 2 3 4 5 6 7 891011>>

  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/
statement-009.js 24 eval("return;");
lexical-002.js 37 result = eval("\r\n\expect");
44 "result=eval(\"\r\nexpect\")" +
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/
try-012.js 64 eval( expression );
79 "eval( " + expression +" ): evaluated inner finally block",
84 "eval( " + expression +" ): evaluated outer catch block ",
89 "eval( " + expression +" ): evaluated outer finally block",
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Expressions/
11.6.1-1.js 79 * The next sections test the + operator via eval()
113 * Applies the + operator to the provided arguments via eval().
115 * Form an eval string of the form 'arg1 + arg2 + arg3', but
116 * remember to add double-quotes inside the eval string around
118 * arguments were 11, 'a', 22. Then the eval string should be
123 * we'd get this for an eval string:
127 * If we eval() this, we get 'ReferenceError: a is not defined'.
128 * With proper quoting, we get eval('11 + "a" + 22') as desired.
149 return eval(sEval);
  /external/webkit/Source/WebCore/manual-tests/inspector/
returnEvent-crash.html 10 eval("test2()");
  /external/qemu/
Makefile.android 163 $(eval include $(CLEAR_VARS)) \
164 $(eval LOCAL_NO_DEFAULT_COMPILER_FLAGS := true) \
165 $(eval LOCAL_CC := $(MY_CC)) \
166 $(eval LOCAL_CXX := $(MY_CXX)) \
167 $(eval LOCAL_CFLAGS := $(MY_CFLAGS)) \
168 $(eval LOCAL_AR := $(MY_AR)) \
169 $(eval LOCAL_LDLIBS := $(MY_LDLIBS)) \
170 $(eval LOCAL_MODULE := $1) \
171 $(eval LOCAL_MODULE_CLASS := STATIC_LIBRARIES)
175 $(eval include $(BUILD_HOST_STATIC_LIBRARY)
    [all...]
  /external/v8/test/mjsunit/
const-redecl.js 45 return eval("(function(){" + s + ";return " + e + "})")();
66 this.eval(code);
88 return eval(s + ";" + e);
108 // No eval.
110 // Eval everything.
111 TestAll("TypeError", 'eval("' + def0 + '; ' + def1 + '")');
112 // Eval first definition.
113 TestAll("TypeError", 'eval("' + def0 +'"); ' + def1);
114 // Eval second definition.
115 TestAll("TypeError", def0 + '; eval("' + def1 + '")')
    [all...]
const-declaration.js 69 eval(s);
87 eval(s);
111 eval(s);
130 eval(s);
141 eval(s);
147 eval(s);
159 eval(s);
166 eval(s);
keywords-and-reserved_words.js 38 eval("var " + x + ";");
49 eval("'use strict'; var "+x+";");
86 eval("var x = { " + word + " : 42 };");
87 eval("var x = { get " + word + " () {} };");
88 eval("var x = { set " + word + " (value) {} };");
91 eval("var x = { '" + word + "' : 42 };");
92 eval("var x = { get '" + word + "' () { } };");
93 eval("var x = { set '" + word + "' (value) { } };");
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/ObjectObjects/
15.2.1.1.js 77 array[item++] = new TestCase( SECTION, "var MYOB = Object(true); MYOB.toString = Object.prototype.toString; MYOB.toString()", "[object Boolean]", eval("var MYOB = Object(true); MYOB.toString = Object.prototype.toString; MYOB.toString()") );
81 array[item++] = new TestCase( SECTION, "var MYOB = Object(false); MYOB.toString = Object.prototype.toString; MYOB.toString()", "[object Boolean]", eval("var MYOB = Object(false); MYOB.toString = Object.prototype.toString; MYOB.toString()") );
85 array[item++] = new TestCase( SECTION, "var MYOB = Object(0); MYOB.toString = Object.prototype.toString; MYOB.toString()", "[object Number]", eval("var MYOB = Object(0); MYOB.toString = Object.prototype.toString; MYOB.toString()") );
89 array[item++] = new TestCase( SECTION, "var MYOB = Object(-0); MYOB.toString = Object.prototype.toString; MYOB.toString()", "[object Number]", eval("var MYOB = Object(-0); MYOB.toString = Object.prototype.toString; MYOB.toString()") );
93 array[item++] = new TestCase( SECTION, "var MYOB = Object(1); MYOB.toString = Object.prototype.toString; MYOB.toString()", "[object Number]", eval("var MYOB = Object(1); MYOB.toString = Object.prototype.toString; MYOB.toString()") );
97 array[item++] = new TestCase( SECTION, "var MYOB = Object(-1); MYOB.toString = Object.prototype.toString; MYOB.toString()", "[object Number]", eval("var MYOB = Object(-1); MYOB.toString = Object.prototype.toString; MYOB.toString()") );
101 array[item++] = new TestCase( SECTION, "var MYOB = Object(Number.MAX_VALUE); MYOB.toString = Object.prototype.toString; MYOB.toString()", "[object Number]", eval("var MYOB = Object(Number.MAX_VALUE); MYOB.toString = Object.prototype.toString; MYOB.toString()") );
105 array[item++] = new TestCase( SECTION, "var MYOB = Object(Number.MIN_VALUE); MYOB.toString = Object.prototype.toString; MYOB.toString()", "[object Number]", eval("var MYOB = Object(Number.MIN_VALUE); MYOB.toString = Object.prototype.toString; MYOB.toString()") );
109 array[item++] = new TestCase( SECTION, "var MYOB = Object(Number.POSITIVE_INFINITY); MYOB.toString = Object.prototype.toString; MYOB.toString()", "[object Number]", eval("var MYOB = Object(Number.POSITIVE_INFINITY); MYOB.toString = Object.prototype.toString; MYOB.toString()") );
113 array[item++] = new TestCase( SECTION, "var MYOB = Object(Number.NEGATIVE_INFINITY); MYOB.toString = Object.prototype.toString; MYOB.toString()", "[object Number]", eval("var MYOB = Object(Number.NEGATIVE_INFINITY); MYOB.toString = Object.prototype.toString; MYOB.toSt (…)
    [all...]
  /external/libvpx/libvpx/build/make/
gen_msvs_sln.sh 66 eval "${var}_file=\"$1\""
67 eval "${var}_name=$name"
68 eval "${var}_guid=$guid"
78 eval "local file=\${$1_file}"
79 eval "local name=\${$1_name}"
80 eval "local guid=\${$1_guid}"
87 eval "${var}_guid=$guid"
92 eval "local deps=\"\${${var}_deps}\""
98 eval "local dep_guid=\${${dep}_guid}"
136 eval "local proj_guid=\${${proj}_guid}
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Array/
15.4.5.1-1.js 78 eval("var A = new Array(); A.length = 1000; A.length") );
84 eval("var A = new Array(1000); A.name = 'name of this array'; A.name") );
89 eval("var A = new Array(1000); A.name = 'name of this array'; A.length") );
98 eval("var A = new Array(1000); A[123] = 'hola'; A[123]") );
103 eval("var A = new Array(1000); A[123] = 'hola'; A.length") );
120 eval( TEST_STRING + " A[150] = 'hello'; A[150]" ) );
125 eval( TEST_STRING + " A[150] = 'hello'; A.length" ) );
133 eval("var A = new Array(); A[123] = true; A.length") );
138 eval("var A = new Array(0,1,2,3,4,5,6,7,8,9,10); A[15] ='15'; A.length") );
151 eval("var A = new Array(); A.join.length = 4; A.join.length") )
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/String/
regress-179068.js 42 * For that the script passes to eval() "str ='LONG_STRING_LITERAL';" where
54 * > eval("str='".concat(long_str, "';"));
59 * > uses eval() simply to assign the value of |long_str| to |str|. Why is
67 * > Or do we specifically need to test eval() to exercise the interpreter?
69 * The reason for eval is to test string literals like in 'a string literal
71 * run time where lengths > 64K. Without eval it would be necessary to have
78 * > you have done: |eval("str='".concat(long_str, "';"))|, or can we simply
79 * > do |eval("str = long_str;")| ?
81 * The concat is a replacement for eval("str='"+long_str+"';"), but as
105 // Generate 200K long string and assign it to |str| via eval()
    [all...]
  /external/bison/build-aux/
vc-list-files 76 eval exec git ls-tree -r 'HEAD:"$dir"' \
79 eval exec hg locate '"$dir/*"' $postprocess
82 eval exec bzr ls -R --versioned '"$dir"' $postprocess
86 eval build-aux/cvsu --find --types=AFGM '"$dir"' $postprocess
88 eval cvsu --find --types=AFGM '"$dir"' $postprocess
90 eval awk -F/ \''{ \
100 eval exec svn list -R '"$dir"' $postprocess
108 # eval: (add-hook 'write-file-hooks 'time-stamp)
  /external/clang/test/SemaCXX/
constant-expression.cpp 12 enum Enum { eval = 1 }; enumerator in enum:Enum
14 const Enum ceval = eval;
17 static const Enum seval = eval;
23 v2 = eval,
36 b2 : eval,
49 i2 = eval,
63 case 100 + eval:
80 template struct C<1, eval>;
  /external/srtp/
configure 44 if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
45 eval $as_var=C; export $as_var
228 as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
231 as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
358 eval "$ac_prev=\$ac_option"
402 eval "enable_$ac_feature=no" ;;
415 eval "enable_$ac_feature='$ac_optarg'" ;;
597 eval "with_$ac_package='$ac_optarg'" ;;
606 eval "with_$ac_package=no" ;;
638 eval "$ac_envvar='$ac_optarg'
    [all...]
  /external/v8/test/mjsunit/regress/
regress-35.js 29 eval("result = 42; while(true)break");
32 eval("result = 87; while(false)continue");
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Statements/
12.10-1.js 88 eval("with( new Number() ) { this +'' }") );
97 eval("var MYOB = new WithObject(true); with (MYOB) { parseInt() }") );
103 eval("var MYOB = new WithObject(false); with (MYOB) { NaN }") );
109 eval("var MYOB = new WithObject(NaN); with (MYOB) { Infinity }") );
115 eval("var MYOB = new WithObject(false); with (MYOB) { }; Infinity") );
122 eval("var MYOB = new WithObject(0); with (MYOB) { delete Infinity; Infinity }") );
130 eval("var MYOB = new WithObject(0); while (true) { with (MYOB) { Infinity; break; } } Infinity") );
147 this.eval = new Function( "return this.value" );
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Function/
regress-193555.js 69 // test via eval() outside function
71 eval ('function a() {return a.toString();}');
77 eval ('var y = function b() {return b.toString();}');
82 // test via eval() inside function
84 function c() {return eval('c').toString();};
90 var z = function d() {return eval('d').toString();};
97 eval('var w = function e() {return eval("e").toString();}');
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-68498-004.js 22 * SUMMARY: self.eval(str) inside a function
32 * of a Program by eval to create a property of eval's caller's variable object.
38 var summary = 'Testing self.eval(str) inside a function';
53 function f(o,s,x) {with(o) eval(s); return z;};
55 // Run-time statements to pass to the eval inside f
71 * 2. At run-time (via with(o) eval(s) inside f), z is defined as the return value of g
72 * 3. At run-time (via with(o) eval(s) inside f), g is defined to return x
  /external/webkit/LayoutTests/fast/js/resources/
standalone-pre.js 74 _av = eval(_a);
78 var _bv = eval(_b);
106 _av = eval(_a);
125 _av = eval(_a);
132 _ev = eval(_e);
  /external/webkit/Source/JavaScriptCore/
DerivedSources.pro 34 eval($${1}.CONFIG = target_predeps no_link)
35 eval($${1}.variable_out =)
36 eval($${1}.dependency_type = TYPE_C)
38 wkScript = $$eval($${1}.wkScript)
39 eval($${1}.depends += $$wkScript)
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/ExecutionContexts/
10.1.4-4.js 73 eval( INPUT );
76 testcases[tc].actual = eval( INPUT );
94 array[item++] = new TestCase( "SECTION", "with MyObject, eval should be [object Global].eval " );
100 this.eval = new Function( "x", "return(Math.pow(Number(x),2))" );
10.1.4-5.js 73 eval = null;
76 testcases[tc].actual = eval( INPUT );
94 array[item++] = new TestCase( "SECTION", "with MyObject, eval should be [object Global].eval " );
100 this.eval = new Function( "x", "return(Math.pow(Number(x),2))" );
10.1.4-7.js 73 delete( eval );
74 testcases[tc].actual = eval( INPUT );
93 array[item++] = new TestCase( "SECTION", "with MyObject, eval should be [object Global].eval " );
99 this.eval = new Function( "x", "return(Math.pow(Number(x),2))" );

Completed in 919 milliseconds

1 2 3 4 5 6 7 891011>>