Searched refs:myFunction (Results 1 - 4 of 4) sorted by relevance

/external/v8/test/webkit/
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 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-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...]
/external/clang/test/SemaCXX/
H A Daddr-of-overloaded-function.cpp103 void myFunction(void (*)(void *));
113 myFunction(bar);

Completed in 2506 milliseconds