/external/webkit/WebCore/bridge/ |
D | runtime_object.cpp | 40 const ClassInfo RuntimeObjectImp::s_info = { "RuntimeObject", 0, 0, 0 }; 42 RuntimeObjectImp::RuntimeObjectImp(ExecState* exec, PassRefPtr<Instance> instance) in RuntimeObjectImp() function in JSC::RuntimeObjectImp 45 : JSObject(deprecatedGetDOMStructure<RuntimeObjectImp>(exec)) in RuntimeObjectImp() 50 RuntimeObjectImp::RuntimeObjectImp(ExecState*, NonNullPassRefPtr<Structure> structure, PassRefPtr<I… in RuntimeObjectImp() function in JSC::RuntimeObjectImp 56 RuntimeObjectImp::~RuntimeObjectImp() in ~RuntimeObjectImp() 62 void RuntimeObjectImp::invalidate() in invalidate() 70 JSValue RuntimeObjectImp::fallbackObjectGetter(ExecState* exec, const Identifier& propertyName, con… in fallbackObjectGetter() 72 RuntimeObjectImp* thisObj = static_cast<RuntimeObjectImp*>(asObject(slot.slotBase())); in fallbackObjectGetter() 88 JSValue RuntimeObjectImp::fieldGetter(ExecState* exec, const Identifier& propertyName, const Proper… in fieldGetter() 90 RuntimeObjectImp* thisObj = static_cast<RuntimeObjectImp*>(asObject(slot.slotBase())); in fieldGetter() [all …]
|
D | runtime_method.cpp | 95 RuntimeObjectImp* imp; in callRuntimeMethod() 97 if (thisValue.inherits(&RuntimeObjectImp::s_info)) { in callRuntimeMethod() 98 imp = static_cast<RuntimeObjectImp*>(asObject(thisValue)); in callRuntimeMethod() 103 if (value.inherits(&RuntimeObjectImp::s_info)) in callRuntimeMethod() 104 imp = static_cast<RuntimeObjectImp*>(asObject(value)); in callRuntimeMethod() 111 return RuntimeObjectImp::throwInvalidAccessError(exec); in callRuntimeMethod()
|
D | runtime_root.h | 44 class RuntimeObjectImp; variable 73 void addRuntimeObject(RuntimeObjectImp*); 74 void removeRuntimeObject(RuntimeObjectImp*); 84 HashSet<RuntimeObjectImp*> m_runtimeObjects;
|
D | runtime_object.h | 34 class RuntimeObjectImp : public JSObject { 36 RuntimeObjectImp(ExecState*, PassRefPtr<Bindings::Instance>); 37 virtual ~RuntimeObjectImp(); 69 RuntimeObjectImp(ExecState*, NonNullPassRefPtr<Structure>, PassRefPtr<Bindings::Instance>);
|
D | runtime_root.cpp | 100 HashSet<RuntimeObjectImp*>::iterator end = m_runtimeObjects.end(); in invalidate() 101 for (HashSet<RuntimeObjectImp*>::iterator it = m_runtimeObjects.begin(); it != end; ++it) in invalidate() 159 void RootObject::addRuntimeObject(RuntimeObjectImp* object) in addRuntimeObject() 167 void RootObject::removeRuntimeObject(RuntimeObjectImp* object) in removeRuntimeObject()
|
/external/webkit/WebCore/bindings/js/ |
D | JSPluginElementFunctions.cpp | 52 static RuntimeObjectImp* getRuntimeObject(ExecState* exec, Node* node) in getRuntimeObject() 64 RuntimeObjectImp* runtimeObject = getRuntimeObject(exec, element); in runtimeObjectGetter() 72 RuntimeObjectImp* runtimeObject = getRuntimeObject(exec, element); in runtimeObjectPropertyGetter() 80 RuntimeObjectImp* runtimeObject = getRuntimeObject(exec, element->impl()); in runtimeObjectCustomGetOwnPropertySlot() 91 RuntimeObjectImp* runtimeObject = getRuntimeObject(exec, element->impl()); in runtimeObjectCustomGetOwnPropertyDescriptor() 107 RuntimeObjectImp* runtimeObject = getRuntimeObject(exec, element); in runtimeObjectCustomPut()
|
/external/webkit/WebCore/bridge/qt/ |
D | qt_instance.cpp | 47 class QtRuntimeObjectImp : public RuntimeObjectImp { 55 RuntimeObjectImp::markChildren(markStack); in markChildren() 67 static const unsigned StructureFlags = RuntimeObjectImp::StructureFlags | OverridesMarkChildren; 73 const ClassInfo QtRuntimeObjectImp::s_info = { "QtRuntimeObject", &RuntimeObjectImp::s_info, 0, 0 }; 76 : RuntimeObjectImp(exec, WebCore::deprecatedGetDOMStructure<QtRuntimeObjectImp>(exec), instance) in QtRuntimeObjectImp() 169 return static_cast<QtInstance*>(static_cast<RuntimeObjectImp*>(object)->getInternalInstance()); in getInstance() 179 RuntimeObjectImp* QtInstance::newRuntimeObject(ExecState* exec) in newRuntimeObject()
|
D | qt_pixmapruntime.cpp | 157 class QtPixmapRuntimeObjectImp : public RuntimeObjectImp { 169 static const unsigned StructureFlags = RuntimeObjectImp::StructureFlags | OverridesMarkChildren; 176 …: RuntimeObjectImp(exec, WebCore::deprecatedGetDOMStructure<QtPixmapRuntimeObjectImp>(exec), insta… in QtPixmapRuntimeObjectImp() 180 const ClassInfo QtPixmapRuntimeObjectImp::s_info = { "QtPixmapRuntimeObject", &RuntimeObjectImp::s_…
|
D | qt_instance.h | 43 virtual RuntimeObjectImp* newRuntimeObject(ExecState*);
|
D | qt_runtime.cpp | 139 else if (object->inherits(&RuntimeObjectImp::s_info)) in valueRealType()
|
/external/webkit/WebCore/bridge/jsc/ |
D | BridgeJSC.h | 43 class RuntimeObjectImp; variable 86 RuntimeObjectImp* createRuntimeObject(ExecState*); 118 virtual RuntimeObjectImp* newRuntimeObject(ExecState*); 123 RuntimeObjectImp* m_runtimeObject;
|
D | BridgeJSC.cpp | 86 RuntimeObjectImp* Instance::createRuntimeObject(ExecState* exec) in createRuntimeObject() 98 RuntimeObjectImp* Instance::newRuntimeObject(ExecState* exec) in newRuntimeObject() 101 return new (exec)RuntimeObjectImp(exec, this); in newRuntimeObject()
|
/external/webkit/WebCore/bridge/c/ |
D | c_utility.cpp | 88 if (object->classInfo() == &RuntimeObjectImp::s_info) { in convertValueToNPVariant() 89 RuntimeObjectImp* imp = static_cast<RuntimeObjectImp*>(object); in convertValueToNPVariant()
|
/external/webkit/WebCore/bridge/jni/jsc/ |
D | JNIUtilityPrivate.cpp | 186 if (objectImp->classInfo() == &RuntimeObjectImp::s_info) { in convertValueToJValue() 187 RuntimeObjectImp* imp = static_cast<RuntimeObjectImp*>(objectImp); in convertValueToJValue()
|
/external/webkit/WebCore/bridge/objc/ |
D | objc_runtime.mm | 219 if (!thisValue.inherits(&RuntimeObjectImp::s_info)) 224 RuntimeObjectImp* imp = static_cast<RuntimeObjectImp*>(asObject(thisValue)); 228 return RuntimeObjectImp::throwInvalidAccessError(exec);
|
/external/webkit/WebCore/bindings/objc/ |
D | WebScriptObject.mm | 514 if (object->classInfo() != &RuntimeObjectImp::s_info) { 520 if (object->classInfo() == &RuntimeObjectImp::s_info) { 521 RuntimeObjectImp* imp = static_cast<RuntimeObjectImp*>(object);
|
/external/webkit/JavaScriptCore/ |
D | ChangeLog-2007-10-14 | 1638 …gle.com in WTF::HashSet<KJS::RuntimeObjectImp*, WTF::PtrHash<KJS::RuntimeObjectImp*>, WTF::HashTra… 1819 (RuntimeObjectImp::canPut): 1835 Have the root object track all live instances of RuntimeObjectImp. When invalidating 1855 (RuntimeObjectImp::RuntimeObjectImp): 1856 (RuntimeObjectImp::~RuntimeObjectImp): 1857 (RuntimeObjectImp::invalidate): 1858 (RuntimeObjectImp::fallbackObjectGetter): 1859 (RuntimeObjectImp::fieldGetter): 1860 (RuntimeObjectImp::methodGetter): 1861 (RuntimeObjectImp::getOwnPropertySlot): [all …]
|
D | ChangeLog-2008-08-10 | 19953 (RuntimeObjectImp::put): Ditto. 21044 RuntimeObjectImp is invalidate or deleted. This 21822 Move RuntimeObjectImp creations into Instance. 21857 (KJS::RuntimeObjectImp::getInternalInstance): 22095 (RuntimeObjectImp::fallbackObjectGetter): 22096 (RuntimeObjectImp::fieldGetter): 22097 (RuntimeObjectImp::methodGetter): 22098 (RuntimeObjectImp::put): 22099 (RuntimeObjectImp::defaultValue): 22100 (RuntimeObjectImp::callAsFunction):
|
/external/webkit/WebCore/bridge/jni/ |
D | jni_jsobject.mm | 538 RuntimeObjectImp* runtimeImp = static_cast<RuntimeObjectImp*>(imp);
|
/external/webkit/WebKit/mac/Plugins/Hosted/ |
D | NetscapePluginInstanceProxy.mm | 1131 if (object->classInfo() == &RuntimeObjectImp::s_info) { 1132 RuntimeObjectImp* imp = static_cast<RuntimeObjectImp*>(object);
|
/external/webkit/WebCore/ |
D | ChangeLog-2009-06-16 | 14282 (JSC::RuntimeObjectImp::fallbackObjectGetter): 14283 (JSC::RuntimeObjectImp::fieldGetter): 14284 (JSC::RuntimeObjectImp::methodGetter): 14285 (JSC::RuntimeObjectImp::put): 14286 (JSC::RuntimeObjectImp::defaultValue): 14290 (JSC::RuntimeObjectImp::createStructure): 24314 (JSC::RuntimeObjectImp::createPrototype): 51900 (JSC::RuntimeObjectImp::fieldGetter): 51903 (JSC::RuntimeObjectImp::put): 52447 (JSC::RuntimeObjectImp::getOwnPropertySlot): [all …]
|
D | ChangeLog-2010-01-29 | 1047 (JSC::RuntimeObjectImp::createStructure): 10730 Infinite recursion in RuntimeObjectImp::getOwnPropertyNames() 10733 RuntimeObjectImp should not reimplement getPropertyNames(); 10737 (JSC::RuntimeObjectImp::getOwnPropertyNames): 11916 (JSC::RuntimeObjectImp::getPropertyNames): 11917 (JSC::RuntimeObjectImp::getOwnPropertyNames): 43945 (JSC::RuntimeObjectImp::createStructure): 45096 (JSC::RuntimeObjectImp::createStructure): 46026 (JSC::RuntimeObjectImp::createStructure): 53596 (JSC::RuntimeObjectImp::RuntimeObjectImp): [all …]
|
D | ChangeLog-2008-08-10 | 8472 (RuntimeObjectImp::RuntimeObjectImp): 9110 (RuntimeObjectImp::defaultValue): 9112 (RuntimeObjectImp::getCallData): 9114 (KJS::RuntimeObjectImp::getInternalInstance): 9115 (KJS::RuntimeObjectImp::classInfo): 10467 (RuntimeObjectImp::RuntimeObjectImp): 10468 (RuntimeObjectImp::methodGetter): 10469 (RuntimeObjectImp::defaultValue): 12276 (RuntimeObjectImp::callAsFunction): 15355 (RuntimeObjectImp::fallbackObjectGetter): [all …]
|
D | ChangeLog-2007-10-14 | 17948 WTF::HashSet<KJS::RuntimeObjectImp*, WTF::PtrHash<KJS::RuntimeObjectImp*>, 17949 WTF::HashTraits<KJS::RuntimeObjectImp*> >::add + 11
|
/external/webkit/WebKit/qt/ |
D | ChangeLog | 10494 Fix the Qt build, added missing include for RuntimeObjectImp.
|