/external/webkit/Source/WebCore/bridge/ |
D | runtime_method.cpp | 42 ASSERT_CLASS_FITS_IN_CELL(RuntimeMethod); 44 const ClassInfo RuntimeMethod::s_info = { "RuntimeMethod", &InternalFunction::s_info, 0, 0 }; 46 RuntimeMethod::RuntimeMethod(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, c… in RuntimeMethod() function in JSC::RuntimeMethod 54 JSValue RuntimeMethod::lengthGetter(ExecState*, JSValue slotBase, const Identifier&) in lengthGetter() 56 RuntimeMethod* thisObj = static_cast<RuntimeMethod*>(asObject(slotBase)); in lengthGetter() 67 bool RuntimeMethod::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlo… in getOwnPropertySlot() 77 bool RuntimeMethod::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, Prope… in getOwnPropertyDescriptor() 91 RuntimeMethod* method = static_cast<RuntimeMethod*>(exec->callee()); in callRuntimeMethod() 121 CallType RuntimeMethod::getCallData(CallData& callData) in getCallData()
|
D | runtime_method.h | 36 class RuntimeMethod : public InternalFunction { 38 …RuntimeMethod(ExecState*, JSGlobalObject*, Structure*, const Identifier& name, Bindings::MethodLis…
|
/external/webkit/Source/WebCore/bridge/c/ |
D | c_instance.cpp | 112 class CRuntimeMethod : public RuntimeMethod { 117 …: RuntimeMethod(exec, globalObject, WebCore::deprecatedGetDOMStructure<CRuntimeMethod>(exec), name… in CRuntimeMethod() 130 const ClassInfo CRuntimeMethod::s_info = { "CRuntimeMethod", &RuntimeMethod::s_info, 0, 0 }; 138 JSValue CInstance::invokeMethod(ExecState* exec, RuntimeMethod* runtimeMethod) in invokeMethod()
|
D | c_instance.h | 63 virtual JSValue invokeMethod(ExecState*, RuntimeMethod* method);
|
/external/webkit/Source/WebCore/bridge/jni/jsc/ |
D | JavaInstanceJSC.cpp | 117 class JavaRuntimeMethod : public RuntimeMethod { 122 …: RuntimeMethod(exec, globalObject, WebCore::deprecatedGetDOMStructure<JavaRuntimeMethod>(exec), n… in JavaRuntimeMethod() 135 const ClassInfo JavaRuntimeMethod::s_info = { "JavaRuntimeMethod", &RuntimeMethod::s_info, 0, 0 }; 143 JSValue JavaInstance::invokeMethod(ExecState* exec, RuntimeMethod* runtimeMethod) in invokeMethod()
|
D | JavaInstanceJSC.h | 57 virtual JSValue invokeMethod(ExecState* exec, RuntimeMethod* method);
|
/external/webkit/Source/WebCore/bridge/jsc/ |
D | BridgeJSC.h | 44 class RuntimeMethod; variable 97 virtual JSValue invokeMethod(ExecState*, RuntimeMethod* method) = 0;
|
/external/webkit/Source/WebCore/bridge/qt/ |
D | qt_pixmapruntime.h | 36 virtual JSValue invokeMethod(ExecState*, RuntimeMethod*);
|
D | qt_instance.cpp | 243 …return new (exec) RuntimeMethod(exec, exec->lexicalGlobalObject(), WebCore::deprecatedGetDOMStruct… in getMethod() 246 JSValue QtInstance::invokeMethod(ExecState*, RuntimeMethod*) in invokeMethod() argument
|
D | qt_pixmapruntime.cpp | 182 …return new (exec) RuntimeMethod(exec, exec->lexicalGlobalObject(), WebCore::deprecatedGetDOMStruct… in getMethod() 185 JSValue QtPixmapInstance::invokeMethod(ExecState* exec, RuntimeMethod* runtimeMethod) in invokeMethod()
|
D | qt_instance.h | 54 virtual JSValue invokeMethod(ExecState*, RuntimeMethod*);
|
/external/webkit/Source/WebCore/bridge/objc/ |
D | objc_instance.h | 52 virtual JSValue invokeMethod(ExecState*, RuntimeMethod* method);
|
D | objc_instance.mm | 177 class ObjCRuntimeMethod : public RuntimeMethod { 182 …: RuntimeMethod(exec, globalObject, WebCore::deprecatedGetDOMStructure<ObjCRuntimeMethod>(exec), n… 195 const ClassInfo ObjCRuntimeMethod::s_info = { "ObjCRuntimeMethod", &RuntimeMethod::s_info, 0, 0 }; 203 JSValue ObjcInstance::invokeMethod(ExecState* exec, RuntimeMethod* runtimeMethod)
|
/external/webkit/Source/WebKit/mac/Plugins/Hosted/ |
D | ProxyInstance.mm | 180 class ProxyRuntimeMethod : public RuntimeMethod { 185 …: RuntimeMethod(exec, globalObject, deprecatedGetDOMStructure<ProxyRuntimeMethod>(exec), name, lis… 198 const ClassInfo ProxyRuntimeMethod::s_info = { "ProxyRuntimeMethod", &RuntimeMethod::s_info, 0, 0 }; 206 JSValue ProxyInstance::invokeMethod(ExecState* exec, JSC::RuntimeMethod* runtimeMethod)
|
D | ProxyInstance.h | 67 virtual JSC::JSValue invokeMethod(JSC::ExecState*, JSC::RuntimeMethod*);
|
/external/webkit/Source/JavaScriptCore/ |
D | ChangeLog-2007-10-14 | 1852 (RuntimeMethod::callAsFunction): 2029 (RuntimeMethod::lengthGetter): 2030 (RuntimeMethod::callAsFunction): 2038 Make RuntimeMethod's method list a pointer so that the object size doesn't 2042 (RuntimeMethod::RuntimeMethod): 2043 (RuntimeMethod::lengthGetter): 2044 (RuntimeMethod::callAsFunction): 3045 (RuntimeMethod::RuntimeMethod): inherit from InternalFunctionImp instead of FunctionImpl, 3047 (RuntimeMethod::getOwnPropertySlot): 3692 (RuntimeMethod::getOwnPropertySlot): [all …]
|
D | ChangeLog-2008-08-10 | 21087 Since RuntimeMethod doesn't allow us to add additional 22093 (RuntimeMethod::callAsFunction):
|
/external/webkit/Source/WebKit/mac/ |
D | ChangeLog | 11074 Add language specific subclasses of RuntimeMethod, and pass the 11075 RuntimeMethod into invokeMethod, so we can typecheck before 11080 …it::PluginRuntimeMethod::PluginRuntimeMethod): new class to distinguish this type of RuntimeMethod. 11081 (WebKit::ProxyInstance::getMethod): create an appropriate sublclass of RuntimeMethod. 11082 (WebKit::ProxyInstance::invokeMethod): dynamically check the type of the RuntimeMethod.
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2010-05-24 | 1371 (JSC::RuntimeMethod::RuntimeMethod): 39737 (JSC::RuntimeMethod::getOwnPropertySlot): 41755 (JSC::RuntimeMethod::lengthGetter): 42629 Add language specific subclasses of RuntimeMethod, and pass the 42630 RuntimeMethod into invokeMethod, so we can typecheck before 42636 …JSC::Bindings::CRuntimeMethod::CRuntimeMethod):new class to distinguish this type of RuntimeMethod. 42637 (JSC::Bindings::CInstance::getMethod): create an appropriate sublclass of RuntimeMethod. 42638 (JSC::Bindings::CInstance::invokeMethod): dynamically check the type of the RuntimeMethod. 42641 (JavaRuntimeMethod::JavaRuntimeMethod): new class to distinguish this type of RuntimeMethod. 42642 (JavaInstance::getMethod): create an appropriate sublclass of RuntimeMethod. [all …]
|
D | ChangeLog-2009-06-16 | 14277 (JSC::RuntimeMethod::lengthGetter): 14280 (JSC::RuntimeMethod::createStructure): 24312 (JSC::RuntimeMethod::createPrototype): 57915 (JSC::RuntimeMethod::lengthGetter): 57918 (JSC::RuntimeMethod::createStructure): 69748 (JSC::RuntimeMethod::createStructure): 75970 (JSC::RuntimeMethod::createStructureID): Ditto. 77247 (JSC::RuntimeMethod::lengthGetter): Ditto. 81385 (JSC::RuntimeMethod::RuntimeMethod): 87263 allocated, which could lead to a crash; note that RuntimeMethod, [all …]
|
D | ChangeLog-2008-08-10 | 9106 (KJS::RuntimeMethod::getCallData): 9108 (KJS::RuntimeMethod::methods): 10465 (RuntimeMethod::lengthGetter): 11580 (RuntimeMethod::callAsFunction): 12273 (RuntimeMethod::callAsFunction): 12427 (RuntimeMethod::RuntimeMethod): 12428 (RuntimeMethod::getOwnPropertySlot): 15352 (RuntimeMethod::lengthGetter): 21865 (RuntimeMethod::lengthGetter): 23991 (RuntimeMethod::lengthGetter):
|
D | ChangeLog | 11340 (JSC::RuntimeMethod::RuntimeMethod): 19050 (JSC::RuntimeMethod::RuntimeMethod): 19052 (JSC::RuntimeMethod::createStructure): 43597 (JSC::RuntimeMethod::createStructure): 63553 (JSC::RuntimeMethod::createStructure):
|
D | ChangeLog-2010-01-29 | 1045 (JSC::RuntimeMethod::createStructure): 43943 (JSC::RuntimeMethod::createStructure): 45576 (JSC::RuntimeMethod::createStructure): 46024 (JSC::RuntimeMethod::createStructure): 65835 (JSC::RuntimeMethod::getOwnPropertyDescriptor): 88182 (JSC::RuntimeMethod::RuntimeMethod):
|
D | ChangeLog-2010-12-06 | 26368 (JSC::RuntimeMethod::lengthGetter):
|