Searched refs:eval (Results 51 - 75 of 897) sorted by relevance

1234567891011>>

/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/ecma/Array/
H A D15.4.5.1-1.js78 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") );
122 eval( TEST_STRING + " A[150] = 'hello'; A[150]" ) );
127 eval( TEST_STRING + " A[150] = 'hello'; A.length" ) );
135 eval("var A = new Array(); A[123] = true; A.length") );
140 eval("var A = new Array(0,1,2,3,4,5,6,7,8,9,10); A[15] ='15'; A.length") );
153 eval("va
[all...]
H A D15.4.4.3-1.js56 array[item++] = new TestCase( SECTION, "delete Array.prototype.join.length; Array.prototype.join.length", 1, eval("delete Array.prototype.join.length; Array.prototype.join.length") );
63 eval("var TEST_ARRAY = new Array(); TEST_ARRAY.join()") );
70 eval("var TEST_ARRAY = new Array(); TEST_ARRAY.join(' ')") );
76 eval("var TEST_ARRAY = new Array(null, void 0, true, false, 123, new Object(), new Boolean(true) ); TEST_ARRAY.join('&')") );
82 eval("var TEST_ARRAY = new Array(null, void 0, true, false, 123, new Object(), new Boolean(true) ); TEST_ARRAY.join('')") );
87 eval("var TEST_ARRAY = new Array(null, void 0, true, false, 123, new Object(), new Boolean(true) ); TEST_ARRAY.join(void 0)") );
93 eval("var TEST_ARRAY = new Array(null, void 0, true, false, 123, new Object(), new Boolean(true) ); TEST_ARRAY.join()") );
99 eval("var TEST_ARRAY = new Array(null, void 0, true, false, 123, new Object(), new Boolean(true) ); TEST_ARRAY.join('\v')") );
105 eval("var TEST_ARRAY = new Array(true); TEST_ARRAY.join('\v')") );
122 TEST_ARRAY = eval( "ne
[all...]
H A D15.4.2.1-1.js71 eval("var arr = new Array(1,2,3); arr.getClass = Object.prototype.toString; arr.getClass()") );
74 array[item++] = new TestCase( SECTION, "var arr = (new Array(1,2)); arr[0]", 1, eval("var arr = (new Array(1,2)); arr[0]") );
75 array[item++] = new TestCase( SECTION, "var arr = (new Array(1,2)); arr[1]", 2, eval("var arr = (new Array(1,2)); arr[1]") );
76 array[item++] = new TestCase( SECTION, "var arr = (new Array(1,2)); String(arr)", "1,2", eval("var arr = (new Array(1,2)); String(arr)") );
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/ecma/ExecutionContexts/
H A D10.1.4-6.js67 "with MyObject, eval should be [object Global].eval " );
76 testcases[0].actual = eval( INPUT );
82 this.eval = new Function( "x", "return(Math.pow(Number(x),2))" );
H A D10.2.2-2.js27 When control enters an execution context for eval code, the previous
68 testcases[tc++] = new TestCase( SECTION, "eval( 'this == THIS' )", true, eval("this == THIS") );
71 testcases[tc++] = new TestCase( SECTION, "eval(new MyObject('hello').value)", "hello", eval("value") );
73 testcases[tc++] = new TestCase( SECTION, "eval(new MyObject('hello').getClass())", "[object Object]", eval("getClass()") );
74 testcases[tc++] = new TestCase( SECTION, "eval(new MyObject('hello').toString())", "hello", eval("toString()") );
75 testcases[tc++] = new TestCase( SECTION, "eval('getClas
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/ecma/Statements/
H A D12.10-1.js88 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" );
H A D12.6.1-1.js43 eval("var MYVAR = 0; while( MYVAR++ < 100) { if ( MYVAR < 100 ) break; } MYVAR "));
48 eval("var MYVAR = 0; while( MYVAR++ < 100) { if ( MYVAR < 100 ) continue; else break; } MYVAR "));
53 eval("function MYFUN( arg1 ) { while ( arg1++ < 100 ) { if ( arg1 < 100 ) return arg1; } }; MYFUN(1)"));
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/js1_5/Regress/
H A Dregress-96526-002.js55 try {eval(s);}
H A Dregress-89474.js56 eval(sEval);
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/ecma/LexicalConventions/
H A D7.1-1.js59 array[item++] = new TestCase( SECTION, 'var'+'\t'+'MYVAR1=10;MYVAR1', 10, eval('var'+'\t'+'MYVAR1=10;MYVAR1') );
60 array[item++] = new TestCase( SECTION, 'var'+'\f'+'MYVAR2=10;MYVAR2', 10, eval('var'+'\f'+'MYVAR2=10;MYVAR2') );
61 array[item++] = new TestCase( SECTION, 'var'+'\v'+'MYVAR2=10;MYVAR2', 10, eval('var'+'\v'+'MYVAR2=10;MYVAR2') );
62 array[item++] = new TestCase( SECTION, 'var'+'\ '+'MYVAR2=10;MYVAR2', 10, eval('var'+'\ '+'MYVAR2=10;MYVAR2') );
69 eval("var a = new Array(12345); a\t\v\f .\u0009\u0020\u000C\u000Blength") );
H A D7.1-2.js55 array[item++] = new TestCase( SECTION, "'var'+'\u000B'+'MYVAR1=10;MYVAR1'", 10, eval('var'+'\u000B'+'MYVAR1=10;MYVAR1') );
56 array[item++] = new TestCase( SECTION, "'var'+'\u0009'+'MYVAR2=10;MYVAR2'", 10, eval('var'+'\u0009'+'MYVAR2=10;MYVAR2') );
57 array[item++] = new TestCase( SECTION, "'var'+'\u000C'+'MYVAR3=10;MYVAR3'", 10, eval('var'+'\u000C'+'MYVAR3=10;MYVAR3') );
58 array[item++] = new TestCase( SECTION, "'var'+'\u0020'+'MYVAR4=10;MYVAR4'", 10, eval('var'+'\u0020'+'MYVAR4=10;MYVAR4') );
H A D7.8.2-n.js44 array[item++] = new TestCase( "7.8.2", "{ 1 2 } 3", "error", eval("{1 2 } 3") );
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/ecma/String/
H A D15.5.5.1.js54 eval("var s = new String(); s.length") );
59 eval("var s = new String(); s.length = 10; s.length") );
64 eval("var s = new String(); var props = ''; for ( var p in s ) { props += p; }; props") );
69 eval("var s = new String(); delete s.length") );
74 eval("var s = new String('hello'); delete s.length; s.length") );
H A D15.5.4.8-3.js101 eval("var s = new String(); s.split().length") );
106 eval("var s = new String(); s.split()[0]") );
113 eval("var s = new String(); s.split('').length") );
118 eval("var s = new String(); s.split(' ').length") );
124 eval("var s = new String(' '); s.split().length") );
129 eval("var s = new String(' '); s.split()[0]") );
134 eval("var s = new String(' '); s.split('').length") );
139 eval("var s = new String(' '); s.split('')[0]") );
144 eval("var s = new String(' '); s.split(' ').length") );
149 eval("va
[all...]
H A D15.5.4.8-2.js100 eval("var s = new String( TEST_STRING ); s.split('').length") );
107 eval("var s = new String( TEST_STRING ); s.split('')["+i+"]") );
119 eval("var s = new String( TEST_STRING ); s.split(void 0).length") );
125 eval("var s = new String( TEST_STRING ); s.split(void 0)["+i+"]") );
135 eval("var s = new String( TEST_STRING ); s.split(null).length") );
141 eval("var s = new String( TEST_STRING ); s.split(null)["+i+"]") );
151 eval("var s = new String( TEST_STRING ); s.split(true).length") );
157 eval("var s = new String( TEST_STRING ); s.split(true)["+i+"]") );
167 eval("var s = new String( TEST_STRING ); s.split(123).length") );
173 eval("va
[all...]
H A D15.5.4.7-2.js79 array[item++] = new TestCase( SECTION, "delete String.prototype.lastIndexOf.length; String.prototype.lastIndexOf.length", 1, eval("delete String.prototype.lastIndexOf.length; String.prototype.lastIndexOf.length" ) );
81 array[item++] = new TestCase( SECTION, "var s = new String(''); s.lastIndexOf('', 0)", LastIndexOf("","",0), eval("var s = new String(''); s.lastIndexOf('', 0)") );
82 array[item++] = new TestCase( SECTION, "var s = new String(''); s.lastIndexOf('')", LastIndexOf("",""), eval("var s = new String(''); s.lastIndexOf('')") );
83 array[item++] = new TestCase( SECTION, "var s = new String('hello'); s.lastIndexOf('', 0)", LastIndexOf("hello","",0), eval("var s = new String('hello'); s.lastIndexOf('',0)") );
84 array[item++] = new TestCase( SECTION, "var s = new String('hello'); s.lastIndexOf('')", LastIndexOf("hello",""), eval("var s = new String('hello'); s.lastIndexOf('')") );
86 array[item++] = new TestCase( SECTION, "var s = new String('hello'); s.lastIndexOf('ll')", LastIndexOf("hello","ll"), eval("var s = new String('hello'); s.lastIndexOf('ll')") );
87 array[item++] = new TestCase( SECTION, "var s = new String('hello'); s.lastIndexOf('ll', 0)", LastIndexOf("hello","ll",0), eval("var s = new String('hello'); s.lastIndexOf('ll', 0)") );
88 array[item++] = new TestCase( SECTION, "var s = new String('hello'); s.lastIndexOf('ll', 1)", LastIndexOf("hello","ll",1), eval("var s = new String('hello'); s.lastIndexOf('ll', 1)") );
89 array[item++] = new TestCase( SECTION, "var s = new String('hello'); s.lastIndexOf('ll', 2)", LastIndexOf("hello","ll",2), eval("var s = new String('hello'); s.lastIndexOf('ll', 2)") );
90 array[item++] = new TestCase( SECTION, "var s = new String('hello'); s.lastIndexOf('ll', 3)", LastIndexOf("hello","ll",3), eval("va
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/ecma/Types/
H A D8.1.js46 eval("var x; typeof x") );
51 eval("var x; typeof x == 'undefined'") );
56 eval("var x; x == void 0") );
/macosx-10.9.5/Security-55471.14.18/libsecurity_codesigning/dtrace/
H A Dreqint.d33 codesign*:::eval-reqint-start
40 codesign*:::eval-reqint-end
42 @eval[arg1] = count();
45 codesign*:::eval-reqint-end
52 codesign*:::eval-reqint-end
59 codesign*:::eval-reqint-end
67 codesign*:::eval-reqint-unknown*
74 codesign*:::eval-reqint-fragment-load
84 codesign*:::eval-reqint-fragment-load
94 codesign*:::eval
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/ecma/SourceText/
H A D6-2.js77 eval("var s = 'PAS\\u0022SED'; s") );
82 eval('var s = "PAS\\u0022SED"; s') );
88 eval("var s = 'PAS\\u0027SED'; s") );
94 eval('var s = "PAS\\u0027SED"; s') );
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/ecma_2/LexicalConventions/
H A Dkeywords-001.js19 eval("super;");
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/ecma_3/Statements/
H A Dregress-83532-002.js48 eval(sToEval);
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/js1_6/Array/
H A Dregress-320887.js48 (function xxx() { ["var x"].map(eval); })()
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/js1_6/Regress/
H A Dregress-320172.js49 (function xxx(){ ["var x"].forEach(eval); })();
/macosx-10.9.5/cctools-845/ar/
H A Dappend.c91 int afd, fd, eval; local
102 for (eval = 0; (file = *argv++);) {
105 eval = 1;
116 return (eval);
/macosx-10.9.5/libarchive-29/libarchive/libarchive_fe/
H A Derr.h39 void lafe_errc(int eval, int code, const char *fmt, ...) __LA_DEAD;

Completed in 113 milliseconds

1234567891011>>