HomeSort by relevance Sort by last modified time
    Searched refs:createFunction (Results 1 - 25 of 40) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
MediaPlayer.cpp 35 void MediaPlayer::setMediaEngineCreateFunction(CreateMediaEnginePlayer createFunction)
37 ASSERT(createFunction);
39 createMediaEngineFunction = createFunction;
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathFunctions.h 50 Function* createFunction(const String& name, const Vector<Expression*>& args = Vector<Expression*>());
XPathGrammar.y 369 $$ = createFunction(*$1);
378 $$ = createFunction(*$1, *$3);
XPathPredicate.cpp 270 return EqTestOp(EqTestOp::OP_EQ, createFunction("position"), new Number(result.toNumber())).evaluate().toBoolean();
  /frameworks/base/media/mca/filterfw/java/android/filterfw/
FilterFunctionEnvironment.java 32 * 3. Wrap Filters into FilterFunctions by calling createFunction().
65 public FilterFunction createFunction(Class filterClass, Object... parameters) {
  /external/chromium_org/v8/test/mjsunit/harmony/
proxies-function.js 35 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(handler, ReturnNewWithProto)
    [all...]
proxies.js 35 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() {}))
    [all...]
proxies-hash.js 36 return Proxy.createFunction(h, function() {})
proxies-symbols.js 35 test(function(h) {return Proxy.createFunction(h, function() {})}, x, y, z)
proxies-example-membrane.js 188 return Proxy.createFunction(handler, callTrap, constructTrap);
348 Proxy.createFunction(dryRevokeHandler, callTrap, constructTrap);
415 Proxy.createFunction(wetRevokeHandler, callTrap, constructTrap);
proxies-for.js 35 test(function(h) {return Proxy.createFunction(h, function() {})}, x, y, z)
proxies-json.js 53 var proxy_fun = Proxy.createFunction(handler1, function() { return 1; });
proxies-with.js 35 test(function(h) {return Proxy.createFunction(h, function() {})}, x, y, z)
  /external/v8/test/mjsunit/harmony/
proxies-function.js 35 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(handler, ReturnNewWithProto)
    [all...]
proxies.js 35 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() {}))
    [all...]
proxies-hash.js 36 return Proxy.createFunction(h, function() {})
proxies-example-membrane.js 188 return Proxy.createFunction(handler, callTrap, constructTrap);
348 Proxy.createFunction(dryRevokeHandler, callTrap, constructTrap);
415 Proxy.createFunction(wetRevokeHandler, callTrap, constructTrap);
proxies-for.js 35 test(function(h) {return Proxy.createFunction(h, function() {})}, x, y, z)
  /external/llvm/include/llvm/MC/
MCModule.h 92 MCFunction *createFunction(const StringRef &Name);
  /external/v8/src/
proxy.js 44 $Proxy.createFunction = function(handler, callTrap, constructTrap) {
48 throw MakeTypeError("trap_function_expected", ["createFunction", "call"])
59 ["createFunction", "construct"])
  /external/llvm/examples/ExceptionDemo/
ExceptionDemo.cpp 213 llvm::Function *createFunction(llvm::Module &module,
    [all...]
  /external/llvm/lib/MC/
MCModule.cpp 83 MCFunction *MCModule::createFunction(const StringRef &Name) {
MCObjectDisassembler.cpp 183 MCFunction &MCFN = *Module->createFunction(BBI.Atom->getName());
  /external/chromium_org/v8/src/
proxy.js 52 throw MakeTypeError("trap_function_expected", ["createFunction", "call"])
63 ["createFunction", "construct"])
80 "createFunction", ProxyCreateFunction
  /external/llvm/include/llvm/
DIBuilder.h 525 /// createFunction - Create a new descriptor for the specified subprogram.
541 DISubprogram createFunction(DIDescriptor Scope, StringRef Name,
    [all...]

Completed in 378 milliseconds

1 2