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

12

/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIndexedDBClient.cpp12 void setIndexedDBClientCreateFunction(CreateIndexedDBClient createFunction) argument
14 idbClientCreateFunction = createFunction;
/external/chromium_org/third_party/WebKit/Source/platform/graphics/media/
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/regress/
H A Dregress-405844.js11 var functionProxy = Proxy.createFunction({ fix: function() { return {}; } }, function(){});
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathFunctions.h51 Function* createFunction(const String& name);
52 Function* createFunction(const String& name, WillBeHeapVector<OwnPtrWillBeMember<Expression> >&);
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DScriptPromiseTest.cpp51 static v8::Handle<v8::Function> createFunction(ScriptState* scriptState, String* value) function in class:blink::__anon10902::Function
111 promise.then(Function::createFunction(scriptState(), &onFulfilled), Function::createFunction(scriptState(), &onRejected));
135 promise.then(Function::createFunction(scriptState(), &onFulfilled), Function::createFunction(scriptState(), &onRejected));
152 promise.then(Function::createFunction(scriptState(), &onFulfilled), Function::createFunction(scriptState(), &onRejected));
176 promise.then(Function::createFunction(scriptState(), &onFulfilled), Function::createFunction(scriptState(), &onRejected));
204 promise1.then(Function::createFunction(scriptStat
[all...]
H A DScriptPromiseResolverTest.cpp27 static v8::Handle<v8::Function> createFunction(ScriptState* scriptState, String* value) function in class:blink::__anon10901::Function
95 promise.then(Function::createFunction(scriptState(), &onFulfilled), Function::createFunction(scriptState(), &onRejected));
143 promise.then(Function::createFunction(scriptState(), &onFulfilled), Function::createFunction(scriptState(), &onRejected));
191 promise.then(Function::createFunction(scriptState(), &onFulfilled), Function::createFunction(scriptState(), &onRejected));
284 promise.then(Function::createFunction(scriptState(), &onFulfilled), Function::createFunction(scriptState(), &onRejected));
308 promise.then(Function::createFunction(scriptStat
[all...]
H A DScriptPromisePropertyTest.cpp34 static v8::Handle<v8::Function> createFunction(ScriptState* scriptState) function in class:__anon10900::NotReached
57 static v8::Handle<v8::Function> createFunction(ScriptState* scriptState, ScriptValue& value, size_t& callCount) function in class:__anon10900::StubFunction
156 v8::Handle<v8::Function> notReached(ScriptState* scriptState) { return NotReached::createFunction(scriptState); }
157 v8::Handle<v8::Function> stub(ScriptState* scriptState, ScriptValue& value, size_t& callCount) { return StubFunction::createFunction(scriptState, value, callCount); }
/external/chromium_org/v8/test/mjsunit/harmony/
H A Dproxies-function.js35 var f = Proxy.createFunction(handler, callTrap, constructTrap)
63 var f = Proxy.createFunction(handler, callTrap)
240 TestCall(false, Proxy.createFunction(handler, function(x, y) {
245 TestCall(true, Proxy.createFunction(handler, function(x, y) {
261 var f = Proxy.createFunction({}, callTrap)
277 var f = Proxy.createFunction({}, callTrap)
305 TestCallThrow(Proxy.createFunction({}, function() { throw "myexn" }))
366 var f = Proxy.createFunction(handler, function() {}, constructTrap)
382 TestConstruct(Object.prototype, Proxy.createFunction(handler, ReturnNew))
383 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.js39 test(function(h) {return Proxy.createFunction(h, function() {})}, x, y, z)
1055 assertEquals("function", typeof Proxy.createFunction({}, function() {}))
1056 assertTrue(typeof Proxy.createFunction({}, function() {}) == "function")
1057 assertTrue("function" == typeof Proxy.createFunction({}, function() {}))
1509 var f = Proxy.createFunction({}, function() {})
1525 var f0 = Proxy.createFunction(handler(o0), function() {})
1526 var f1 = Proxy.createFunction(handler(o1), function() {})
1527 var f2 = Proxy.createFunction(handler(o2), function() {})
1528 var f3 = Proxy.createFunction(handler(o3), function() {})
1529 var f4 = Proxy.createFunction(handle
[all...]
/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/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
H A DRespondWithObserver.cpp30 static v8::Handle<v8::Function> createFunction(ScriptState* scriptState, RespondWithObserver* observer, ResolveType type) function in class:blink::FINAL
96 ThenFunction::createFunction(scriptState, this, ThenFunction::Fulfilled),
97 ThenFunction::createFunction(scriptState, this, ThenFunction::Rejected));
H A DWaitUntilObserver.cpp29 static v8::Handle<v8::Function> createFunction(ScriptState* scriptState, WaitUntilObserver* observer, ResolveType type) function in class:blink::FINAL
83 ThenFunction::createFunction(scriptState, this, ThenFunction::Fulfilled),
84 ThenFunction::createFunction(scriptState, this, ThenFunction::Rejected));
H A DCacheStorage.h28 ScriptPromise createFunction(ScriptState*, const String& cacheName);
H A DServiceWorker.cpp50 static v8::Handle<v8::Function> createFunction(ScriptState* scriptState, PassRefPtrWillBeRawPtr<ServiceWorker> observer) function in class:blink::FINAL
223 resolver->promise().then(ThenFunction::createFunction(resolver->scriptState(), this));
H A DServiceWorkerContainerTest.cpp45 return ScriptFunctionImpl::createFunction(scriptState, *this);
57 static v8::Handle<v8::Function> createFunction(ScriptState* scriptState, StubScriptFunction& owner) function in class:blink::__anon11214::StubScriptFunction::ScriptFunctionImpl
/external/llvm/include/llvm/MC/MCAnalysis/
H A DMCModule.h116 MCFunction *createFunction(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/include/llvm/MC/
H A DMCObjectDisassembler.h62 MCFunction *createFunction(MCModule *Module, uint64_t BeginAddr,

Completed in 475 milliseconds

12