/external/webkit/JavaScriptCore/tests/mozilla/ecma/FunctionObjects/ |
15.3.1.1-3.js | 79 testcases[testcases.length] = new TestCase( SECTION, "FUN1 = Function( 'a','b','c', 'return FUN1.length' ); FUN1.length", 3, eval("FUN1 = Function( 'a','b','c', 'return FUN1.length' ); FUN1.length") ); 80 testcases[testcases.length] = new TestCase( SECTION, "FUN1 = Function( 'a','b','c', 'return FUN1.length' ); FUN1()", 3, eval("FUN1 = Function( 'a','b','c', 'return FUN1.length' ); FUN1()") ) [all...] |
15.3.2.1-3.js | 79 array[item++] = new TestCase( SECTION, "FUN1 = new Function( 'a','b','c', 'return FUN1.length' ); FUN1.length", 3, eval("FUN1 = new Function( 'a','b','c', 'return FUN1.length' ); FUN1.length") ); 80 array[item++] = new TestCase( SECTION, "FUN1 = new Function( 'a','b','c', 'return FUN1.length' ); FUN1()", 3, eval("FUN1 = new Function( 'a','b','c', 'return FUN1.length' ); FUN1()") ) [all...] |
15.3.5-1.js | 101 array[item++] = new TestCase( SECTION, "FUN1 = new Function( 'a','b','c', 'return FUN1.length' ); FUN1.length", 3, eval("FUN1 = new Function( 'a','b','c', 'return FUN1.length' ); FUN1.length") ); 102 array[item++] = new TestCase( SECTION, "FUN1 = new Function( 'a','b','c', 'return FUN1.length' ); FUN1()", 3, eval("FUN1 = new Function( 'a','b','c', 'return FUN1.length' ); FUN1()") ) [all...] |
/external/webkit/JavaScriptCore/tests/mozilla/ecma/Expressions/ |
11.1.1.js | 77 "Anonymous Code: var MYFUNC = new Function('this.THIS = this'); var FUN1 = new MYFUNC(); FUN1.THIS == FUN1", 79 eval("var MYFUNC = new Function('this.THIS = this'); var FUN1 = new MYFUNC(); FUN1.THIS == FUN1") ); 87 "Anonymous Code: var MYFUNC = new Function('this.THIS = eval(\"this\")'); var FUN1 = new MYFUNC(); FUN1.THIS == FUN1", 89 eval("var MYFUNC = new Function('this.THIS = eval(\"this\")'); var FUN1 = new MYFUNC(); FUN1.THIS == FUN1") ) [all...] |
/external/v8/test/cctest/ |
test-func-name-inference.cc | 100 "fun1 = function() { return 1; }\n" 102 CheckFunctionName(script, "return 1", "fun1"); 112 "var fun1 = function() { return 1; }\n" 114 CheckFunctionName(script, "return 1", "fun1"); 125 " var fun1 = function() { return 1; }\n" 128 CheckFunctionName(script, "return 1", "fun1"); 234 "fun1 = 0 ?\n" 237 CheckFunctionName(script, "return 1", "fun1"); 238 CheckFunctionName(script, "return 2", "fun1");
|
test-compiler.cc | 299 Handle<Object> fun1 = local 303 CHECK(fun1->IsJSFunction()); 308 Execution::Call(Handle<JSFunction>::cast(fun1), global, 1, argv,
|
test-api.cc | 188 env->Global()->Set(v8_str("Fun1"), fun->GetFunction()); 190 v8::Handle<Value> value1 = CompileRun("Fun1(4) == '';"); 193 v8::Handle<Value> value2 = CompileRun("Fun1(new Cons()) == '[object Cons]';"); 196 v8::Handle<Value> value3 = CompileRun("Fun1() == '';"); [all...] |
/packages/apps/Calculator/ |
arity-2.1.2.jar | |