Searched defs:myFunction (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/v8/test/webkit/
H A Ddfg-convert-this-dom-window.js29 var myFunction = function (arg1) { return [this, "myFunction", arg1] }; function
36 shouldBe("myFunction('arg1')", '[this, "myFunction", "arg1"]');
37 shouldBe("myFunction.call(myObject, 'arg1')", '[myObject, "myFunction", "arg1"]');
38 shouldBe("myFunction.call()", '[this, "myFunction", undefined]');
39 shouldBe("myFunction.call(null)", '[this, "myFunction", undefine
[all...]
H A Dfunction-call-aliased.js29 var myFunction = function (arg1) { return [this, "myFunction", arg1] }; function
35 shouldBe("myFunction('arg1')", '[this, "myFunction", "arg1"]');
36 shouldBe("myFunction.call(myObject, 'arg1')", '[myObject, "myFunction", "arg1"]');
37 shouldBe("myFunction.call()", '[this, "myFunction", undefined]');
38 shouldBe("myFunction.call(null)", '[this, "myFunction", undefine
[all...]
H A Dfunction-apply-aliased.js29 var myFunction = function (arg1) { function
30 return [this, "myFunction", arg1];
52 shouldBe("myFunction('arg1')", '[this, "myFunction", "arg1"]');
53 shouldBe("forwarder(myFunction, null, ['arg1'])", '[this, "myFunction", "arg1"]');
54 shouldBe("myFunction.apply(myObject, ['arg1'])", '[myObject, "myFunction", "arg1"]');
55 shouldBe("myFunction.apply(myObject, arg1Array)", '[myObject, "myFunction", "arg
[all...]

Completed in 57 milliseconds