Searched refs:createFunction (Results 1 - 25 of 36) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
H A DMediaPlayer.cpp35 void MediaPlayer::setMediaEngineCreateFunction(CreateMediaEnginePlayer createFunction) argument
37 ASSERT(createFunction);
39 createMediaEngineFunction = createFunction;
/external/chromium_org/tools/perf/utils/results_viewer/src/
H A Dui.js42 var createFunction, tagName;
44 createFunction = tagNameOrFunction;
47 createFunction = createElementHelper;
60 var el = createFunction(tagName, opt_propertyBag);
/external/chromium_org/v8/test/mjsunit/harmony/
H A Dproxies-function.js35 var f = Proxy.createFunction(handler, callTrap, constructTrap)
64 var f = Proxy.createFunction(handler, callTrap)
242 TestCall(false, Proxy.createFunction(handler, function(x, y) {
247 TestCall(true, Proxy.createFunction(handler, function(x, y) {
263 var f = Proxy.createFunction({}, callTrap)
279 var f = Proxy.createFunction({}, callTrap)
307 TestCallThrow(Proxy.createFunction({}, function() { throw "myexn" }))
368 var f = Proxy.createFunction(handler, function() {}, constructTrap)
384 TestConstruct(Object.prototype, Proxy.createFunction(handler, ReturnNew))
385 TestConstruct(prototype, Proxy.createFunction(handle
[all...]
H A Dproxies-symbols.js35 test(function(h) {return Proxy.createFunction(h, function() {})}, x, y, z)
H A Dproxies-for.js35 test(function(h) {return Proxy.createFunction(h, function() {})}, x, y, z)
H A Dproxies-hash.js36 return Proxy.createFunction(h, function() {})
H A Dproxies-json.js53 var proxy_fun = Proxy.createFunction(handler1, function() { return 1; });
H A Dproxies.js35 test(function(h) {return Proxy.createFunction(h, function() {})}, x, y, z)
1051 assertEquals("function", typeof Proxy.createFunction({}, function() {}))
1052 assertTrue(typeof Proxy.createFunction({}, function() {}) == "function")
1053 assertTrue("function" == typeof Proxy.createFunction({}, function() {}))
1505 var f = Proxy.createFunction({}, function() {})
1521 var f0 = Proxy.createFunction(handler(o0), function() {})
1522 var f1 = Proxy.createFunction(handler(o1), function() {})
1523 var f2 = Proxy.createFunction(handler(o2), function() {})
1524 var f3 = Proxy.createFunction(handler(o3), function() {})
1525 var f4 = Proxy.createFunction(handle
[all...]
H A Dproxies-example-membrane.js188 return Proxy.createFunction(handler, callTrap, constructTrap);
348 Proxy.createFunction(dryRevokeHandler, callTrap, constructTrap);
415 Proxy.createFunction(wetRevokeHandler, callTrap, constructTrap);
/external/v8/test/mjsunit/harmony/
H A Dproxies-function.js35 var f = Proxy.createFunction(handler, callTrap, constructTrap)
64 var f = Proxy.createFunction(handler, callTrap)
242 TestCall(false, Proxy.createFunction(handler, function(x, y) {
247 TestCall(true, Proxy.createFunction(handler, function(x, y) {
263 var f = Proxy.createFunction({}, callTrap)
279 var f = Proxy.createFunction({}, callTrap)
307 TestCallThrow(Proxy.createFunction({}, function() { throw "myexn" }))
368 var f = Proxy.createFunction(handler, function() {}, constructTrap)
384 TestConstruct(Object.prototype, Proxy.createFunction(handler, ReturnNew))
385 TestConstruct(prototype, Proxy.createFunction(handle
[all...]
H A Dproxies-for.js35 test(function(h) {return Proxy.createFunction(h, function() {})}, x, y, z)
H A Dproxies-hash.js36 return Proxy.createFunction(h, function() {})
H A Dproxies.js35 test(function(h) {return Proxy.createFunction(h, function() {})}, x, y, z)
1028 assertEquals("function", typeof Proxy.createFunction({}, function() {}))
1029 assertTrue(typeof Proxy.createFunction({}, function() {}) == "function")
1030 assertTrue("function" == typeof Proxy.createFunction({}, function() {}))
1482 var f = Proxy.createFunction({}, function() {})
1498 var f0 = Proxy.createFunction(handler(o0), function() {})
1499 var f1 = Proxy.createFunction(handler(o1), function() {})
1500 var f2 = Proxy.createFunction(handler(o2), function() {})
1501 var f3 = Proxy.createFunction(handler(o3), function() {})
1502 var f4 = Proxy.createFunction(handle
[all...]
H A Dproxies-example-membrane.js188 return Proxy.createFunction(handler, callTrap, constructTrap);
348 Proxy.createFunction(dryRevokeHandler, callTrap, constructTrap);
415 Proxy.createFunction(wetRevokeHandler, callTrap, constructTrap);
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathFunctions.h50 Function* createFunction(const String& name, const Vector<Expression*>& args = Vector<Expression*>());
H A DXPathGrammar.y369 $$ = createFunction(*$1);
378 $$ = createFunction(*$1, *$3);
H A DXPathPredicate.cpp270 return EqTestOp(EqTestOp::OP_EQ, createFunction("position"), new Number(result.toNumber())).evaluate().toBoolean();
/external/chromium/chrome/browser/resources/shared/js/cr/
H A Dui.js64 var createFunction, tagName;
66 createFunction = tagNameOrFunction;
69 createFunction = createElementHelper;
82 var el = createFunction(tagName, opt_propertyBag);
/external/chromium_org/chrome/common/extensions/docs/examples/api/fontSettings/js/cr/
H A Dui.js64 var createFunction, tagName;
66 createFunction = tagNameOrFunction;
69 createFunction = createElementHelper;
82 var el = createFunction(tagName, opt_propertyBag);
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/domui/js/cr/
H A Dui.js64 var createFunction, tagName;
66 createFunction = tagNameOrFunction;
69 createFunction = createElementHelper;
82 var el = createFunction(tagName, opt_propertyBag);
/external/chromium_org/ui/webui/resources/js/cr/
H A Dui.js64 var createFunction, tagName;
66 createFunction = tagNameOrFunction;
69 createFunction = createElementHelper;
82 var el = createFunction(tagName, opt_propertyBag);
/external/llvm/include/llvm/MC/
H A DMCModule.h92 MCFunction *createFunction(const StringRef &Name);
/external/llvm/examples/ExceptionDemo/
H A DExceptionDemo.cpp213 llvm::Function *createFunction(llvm::Module &module, function
1143 llvm::Function *ret = createFunction(module,
1406 llvm::Function *ret = createFunction(module,
1758 createFunction(module,
1777 createFunction(module,
1795 createFunction(module,
1813 createFunction(module,
1831 createFunction(module,
1849 createFunction(module,
1867 funct = createFunction(modul
[all...]
/external/llvm/lib/MC/
H A DMCModule.cpp83 MCFunction *MCModule::createFunction(const StringRef &Name) { function in class:MCModule
/external/v8/src/
H A Dproxy.js44 $Proxy.createFunction = function(handler, callTrap, constructTrap) {
48 throw MakeTypeError("trap_function_expected", ["createFunction", "call"])
59 ["createFunction", "construct"])

Completed in 1021 milliseconds

12