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

  /external/webkit/JavaScriptCore/runtime/
PrototypeFunction.h 34 PrototypeFunction(ExecState*, int length, const Identifier&, NativeFunction);
35 PrototypeFunction(ExecState*, NonNullPassRefPtr<Structure>, int length, const Identifier&, NativeFunction);
40 const NativeFunction m_function;
CallData.h 49 typedef JSValue (JSC_HOST_CALL *NativeFunction)(ExecState*, JSObject*, JSValue thisValue, const ArgList&);
53 NativeFunction function;
PrototypeFunction.cpp 35 PrototypeFunction::PrototypeFunction(ExecState* exec, int length, const Identifier& name, NativeFunction function)
43 PrototypeFunction::PrototypeFunction(ExecState* exec, NonNullPassRefPtr<Structure> prototypeFunctionStructure, int length, const Identifier& name, NativeFunction function)
GlobalEvalFunction.cpp 35 GlobalEvalFunction::GlobalEvalFunction(ExecState* exec, NonNullPassRefPtr<Structure> structure, int len, const Identifier& name, NativeFunction function, JSGlobalObject* cachedGlobalObject)
GlobalEvalFunction.h 35 GlobalEvalFunction(ExecState*, NonNullPassRefPtr<Structure>, int len, const Identifier&, NativeFunction, JSGlobalObject* expectedThisObject);
JSFunction.h 44 JSFunction(ExecState*, NonNullPassRefPtr<Structure>, int length, const Identifier&, NativeFunction);
67 NativeFunction nativeFunction()
69 return *WTF::bitwise_cast<NativeFunction*>(m_data);
118 void setNativeFunction(NativeFunction func)
120 *WTF::bitwise_cast<NativeFunction*>(m_data) = func;
Lookup.h 70 NativeFunction function() const { ASSERT(m_attributes & Function); return m_u.function.functionValue; }
91 NativeFunction functionValue;
JSFunction.cpp 59 JSFunction::JSFunction(ExecState* exec, NonNullPassRefPtr<Structure> structure, int length, const Identifier& name, NativeFunction func)
111 callData.native.function = nativeFunction();
  /external/webkit/WebCore/bindings/js/
JSDOMWindowCustom.cpp 126 template<NativeFunction nativeFunction, int length>
129 return new (exec) NativeFunctionWrapper(exec, exec->lexicalGlobalObject()->prototypeFunctionStructure(), length, propertyName, nativeFunction);
    [all...]

Completed in 206 milliseconds