HomeSort by relevance Sort by last modified time
    Searched refs:eval (Results 126 - 150 of 747) sorted by null

1 2 3 4 56 7 8 91011>>

  /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/ExecutionContexts/
10.1.4-1.js 74 testcases[tc].actual = eval( INPUT );
93 array[item++] = new TestCase( "SECTION", "with MyObject, eval should return square of " );
99 this.eval = new Function( "x", "return(Math.pow(Number(x),2))" );
10.1.4-2.js 75 testcases[tc].actual = eval( INPUT );
95 array[item++] = new TestCase( "SECTION", "with MyObject, eval should return square of " );
101 this.eval = new Function( "x", "return(Math.pow(Number(x),2))" );
10.1.4-3.js 73 eval( INPUT );
91 array[item++] = new TestCase( "SECTION", "with MyObject, eval should be [object Global].eval " );
97 this.eval = new Function( "x", "return(Math.pow(Number(x),2))" );
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/
11.2.2-11.js 79 eval("var FUNCTION = new Function(); f = new FUNCTION(); typeof f") );
84 eval("var FUNCTION = new Function('return this'); f = new FUNCTION(); typeof f") );
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/LexicalConventions/
7.2-6.js 53 array[item++] = new TestCase( SECTION, "var a\u000Ab = 5; ab=10;ab;", 10, eval("var a\nb = 5; ab=10;ab") );
54 array[item++] = new TestCase( SECTION, "var a\u000Db = 5; ab=10;b;", 5, eval("var a\nb = 5; ab=10;b") );
7.5-1.js 47 array[item++] = new TestCase( SECTION, "var $123 = 5", 5, eval("var $123 = 5;$123") );
48 array[item++] = new TestCase( SECTION, "var _123 = 5", 5, eval("var _123 = 5;_123") );
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/String/
15.5.2.js 58 array[item++] = new TestCase( SECTION, "var TESTSTRING = new String('string primitive'); TESTSTRING.toString=Object.prototype.toString;TESTSTRING.toString()", "[object String]", eval("var TESTSTRING = new String('string primitive'); TESTSTRING.toString=Object.prototype.toString;TESTSTRING.toString()") );
63 array[item++] = new TestCase( SECTION, "var TESTSTRING = new String(void 0); TESTSTRING.toString=Object.prototype.toString;TESTSTRING.toString()", "[object String]", eval("var TESTSTRING = new String(void 0); TESTSTRING.toString=Object.prototype.toString;TESTSTRING.toString()") );
68 array[item++] = new TestCase( SECTION, "var TESTSTRING = new String(null); TESTSTRING.toString=Object.prototype.toString;TESTSTRING.toString()", "[object String]", eval("var TESTSTRING = new String(null); TESTSTRING.toString=Object.prototype.toString;TESTSTRING.toString()") );
73 array[item++] = new TestCase( SECTION, "var TESTSTRING = new String(true); TESTSTRING.toString=Object.prototype.toString;TESTSTRING.toString()", "[object String]", eval("var TESTSTRING = new String(true); TESTSTRING.toString=Object.prototype.toString;TESTSTRING.toString()") );
78 array[item++] = new TestCase( SECTION, "var TESTSTRING = new String(false); TESTSTRING.toString=Object.prototype.toString;TESTSTRING.toString()", "[object String]", eval("var TESTSTRING = new String(false); TESTSTRING.toString=Object.prototype.toString;TESTSTRING.toString()") );
83 array[item++] = new TestCase( SECTION, "var TESTSTRING = new String(new Boolean(true)); TESTSTRING.toString=Object.prototype.toString;TESTSTRING.toString()", "[object String]", eval("var TESTSTRING = new String(new Boolean(true)); TESTSTRING.toString=Object.prototype.toString;TESTSTRING.toString()") );
88 array[item++] = new TestCase( SECTION, "var TESTSTRING = new String(); TESTSTRING.toString=Object.prototype.toString;TESTSTRING.toString()", "[object String]", eval("var TESTSTRING = new String(); TESTSTRING.toString=Object.prototype.toString;TESTSTRING.toString()") );
93 array[item++] = new TestCase( SECTION, "var TESTSTRING = new String(''); TESTSTRING.toString=Object.prototype.toString;TESTSTRING.toString()", "[object String]", eval("var TESTSTRING = new String(''); TESTSTRING.toString=Object.prototype.toString;TESTSTRING.toString()") );
15.5.3.2-2.js 57 "var MYSTRING = String.fromCharCode(eval(\"var args=''; for ( i = 0x0020; i < 0x007f; i++ ) { args += ( i == 0x007e ) ? i : i + ', '; } args;\")); MYSTRING",
59 eval( "var MYSTRING = String.fromCharCode(" + eval("var args=''; for ( i = 0x0020; i < 0x007f; i++ ) { args += ( i == 0x007e ) ? i : i + ', '; } args;") +"); MYSTRING" ));
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/
forin-002.js 50 "eval ( " + property +" )",
52 object[property] == eval(property) );
67 "eval ( " + property +" )",
69 object[property] == eval(property) );
while-002.js 41 "while expression is eval(\"\")",
42 eval(""),
64 eval( object.statements );
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Object/
regress-90596-001.js 71 // TRY THE SAME THING IN EVAL CODE
76 eval(s);
83 eval(s);
90 eval(s);
97 eval(s);
108 eval(s);
119 eval(s);
130 eval(s);
141 eval(s);
regress-90596-002.js 71 // TRY THE SAME THING IN EVAL CODE
76 eval(s);
83 eval(s);
90 eval(s);
97 eval(s);
108 eval(s);
119 eval(s);
130 eval(s);
141 eval(s);
regress-90596-003.js 77 // TRY THE SAME THING IN EVAL CODE
82 eval(s);
89 eval(s);
96 eval(s);
103 eval(s);
114 eval(s);
125 eval(s);
136 eval(s);
147 eval(s);
  /external/gtest/test/
Android.mk 65 $(eval include $(CLEAR_VARS)) \
66 $(eval LOCAL_CPP_EXTENSION := .cc) \
67 $(eval LOCAL_SRC_FILES := $(file)) \
68 $(eval LOCAL_C_INCLUDES := $(libgtest_test_includes)) \
69 $(eval LOCAL_MODULE := $(notdir $(file:%.cc=%))$(4)) \
70 $(eval LOCAL_CFLAGS += $(3)) \
71 $(eval LOCAL_STATIC_LIBRARIES := $(libgtest_test$(4)_static_lib)) \
72 $(eval LOCAL_SHARED_LIBRARIES := $(libgtest_test$(4)_shared_lib)) \
73 $(eval LOCAL_MODULE_TAGS := tests) \
74 $(eval LOCAL_MODULE_PATH := $(TARGET_OUT_DATA_APPS))
    [all...]
  /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/regress/
regress-1170.js 31 eval("var a = 1");
35 eval("with({}) { eval('var a = 2') }");
41 eval("function a() {}");
46 eval("const b = 23");
52 eval("with({}) { eval('const b = 23') }");
60 eval("var c = 1");
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Types/
8.4.js 51 eval("var s = ''; s.length") );
56 eval("var s = ''; s.charAt(0)") );
67 eval("var s = '" + TEST_STRING+ "'; s") );
72 eval("var s = '" + TEST_STRING+ "'; s.length") );
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/
exception-008.js 30 result = eval("continue;");
37 "eval(\"continue\") [ exception is " + exception +" ]",
expression-015.js 24 eval("result = 3.valueOf();");
lexical-001.js 37 result = eval("\r\n\expect");
lexical-002.js 37 result = eval("\r\n\expect");
44 "result=eval(\"\r\nexpect\")" +
lexical-003.js 27 eval("/*\n/* nested comment */\n*/\n");

Completed in 702 milliseconds

1 2 3 4 56 7 8 91011>>