HomeSort by relevance Sort by last modified time
    Searched refs:NativeFunction (Results 1 - 15 of 15) sorted by null

  /external/webkit/Source/JavaScriptCore/runtime/
CallData.h 48 typedef EncodedJSValue (JSC_HOST_CALL *NativeFunction)(ExecState*);
52 NativeFunction function;
Executable.h 102 static NativeExecutable* create(JSGlobalData& globalData, MacroAssemblerCodePtr callThunk, NativeFunction function, MacroAssemblerCodePtr constructThunk, NativeFunction constructor)
109 static NativeExecutable* create(JSGlobalData& globalData, NativeFunction function, NativeFunction constructor)
117 NativeFunction function() { return m_function; }
123 NativeExecutable(JSGlobalData& globalData, JITCode callThunk, NativeFunction function, JITCode constructThunk, NativeFunction constructor)
134 NativeExecutable(JSGlobalData& globalData, NativeFunction function, NativeFunction constructor)
142 NativeFunction m_function
    [all...]
JSFunction.h 48 JSFunction(ExecState*, JSGlobalObject*, Structure*, int length, const Identifier&, NativeFunction);
81 NativeFunction nativeFunction();
JSGlobalData.h 215 NativeExecutable* getHostFunction(NativeFunction, ThunkGenerator);
217 NativeExecutable* getHostFunction(NativeFunction);
JSGlobalData.cpp 356 NativeExecutable* JSGlobalData::getHostFunction(NativeFunction function)
360 NativeExecutable* JSGlobalData::getHostFunction(NativeFunction function, ThunkGenerator generator)
365 NativeExecutable* JSGlobalData::getHostFunction(NativeFunction function)
Lookup.h 83 NativeFunction function() const { ASSERT(m_attributes & Function); return m_u.function.functionValue; }
104 NativeFunction functionValue;
JSFunction.cpp 74 JSFunction::JSFunction(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, int length, const Identifier& name, NativeFunction func)
152 callData.native.function = nativeFunction();
  /external/webkit/Source/WebCore/bindings/scripts/test/JS/
JSTestObj.cpp 199 { "voidMethod", DontDelete | Function, (intptr_t)static_cast<NativeFunction>(jsTestObjPrototypeFunctionVoidMethod), (intptr_t)0 THUNK_GENERATOR(0) },
200 { "voidMethodWithArgs", DontDelete | Function, (intptr_t)static_cast<NativeFunction>(jsTestObjPrototypeFunctionVoidMethodWithArgs), (intptr_t)3 THUNK_GENERATOR(0) },
201 { "intMethod", DontDelete | Function, (intptr_t)static_cast<NativeFunction>(jsTestObjPrototypeFunctionIntMethod), (intptr_t)0 THUNK_GENERATOR(0) },
202 { "intMethodWithArgs", DontDelete | Function, (intptr_t)static_cast<NativeFunction>(jsTestObjPrototypeFunctionIntMethodWithArgs), (intptr_t)3 THUNK_GENERATOR(0) },
203 { "objMethod", DontDelete | Function, (intptr_t)static_cast<NativeFunction>(jsTestObjPrototypeFunctionObjMethod), (intptr_t)0 THUNK_GENERATOR(0) },
204 { "objMethodWithArgs", DontDelete | Function, (intptr_t)static_cast<NativeFunction>(jsTestObjPrototypeFunctionObjMethodWithArgs), (intptr_t)3 THUNK_GENERATOR(0) },
205 { "methodThatRequiresAllArgs", DontDelete | Function, (intptr_t)static_cast<NativeFunction>(jsTestObjPrototypeFunctionMethodThatRequiresAllArgs), (intptr_t)2 THUNK_GENERATOR(0) },
206 { "methodThatRequiresAllArgsAndThrows", DontDelete | Function, (intptr_t)static_cast<NativeFunction>(jsTestObjPrototypeFunctionMethodThatRequiresAllArgsAndThrows), (intptr_t)2 THUNK_GENERATOR(0) },
207 { "serializedValue", DontDelete | Function, (intptr_t)static_cast<NativeFunction>(jsTestObjPrototypeFunctionSerializedValue), (intptr_t)1 THUNK_GENERATOR(0) },
208 { "idbKey", DontDelete | Function, (intptr_t)static_cast<NativeFunction>(jsTestObjPrototypeFunctionIdbKey), (intptr_t)1 THUNK_GENERATOR(0) }
    [all...]
JSTestMediaQueryListListener.cpp 109 { "method", DontDelete | Function, (intptr_t)static_cast<NativeFunction>(jsTestMediaQueryListListenerPrototypeFunctionMethod), (intptr_t)1 THUNK_GENERATOR(0) },
  /external/webkit/Source/JavaScriptCore/jit/
JITStubs.h 299 NativeExecutable* hostFunctionStub(JSGlobalData*, NativeFunction);
300 NativeExecutable* hostFunctionStub(JSGlobalData*, NativeFunction, ThunkGenerator);
307 typedef HashMap<NativeFunction, Strong<NativeExecutable> > HostFunctionStubMap;
JIT.h 228 static CodePtr compileCTINativeCall(JSGlobalData* globalData, PassRefPtr<ExecutablePool> executablePool, NativeFunction func)
276 CodePtr privateCompileCTINativeCall(PassRefPtr<ExecutablePool> executablePool, JSGlobalData* data, NativeFunction func);
    [all...]
JITStubs.cpp     [all...]
JITOpcodes.cpp 305 JIT::CodePtr JIT::privateCompileCTINativeCall(PassRefPtr<ExecutablePool>, JSGlobalData* globalData, NativeFunction)
    [all...]
JITOpcodes32_64.cpp 331 JIT::CodePtr JIT::privateCompileCTINativeCall(PassRefPtr<ExecutablePool> executablePool, JSGlobalData* globalData, NativeFunction func)
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
JSDOMWindowCustom.cpp 106 template<NativeFunction nativeFunction, int length>
109 return new (exec) JSFunction(exec, exec->lexicalGlobalObject(), exec->lexicalGlobalObject()->functionStructure(), length, propertyName, nativeFunction);

Completed in 464 milliseconds