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

  /external/webkit/Source/WebCore/bridge/objc/
ObjCRuntimeObject.mm 30 #import "ObjCRuntimeObject.h"
36 const ClassInfo ObjCRuntimeObject::s_info = { "ObjCRuntimeObject", &RuntimeObject::s_info, 0, 0 };
38 ObjCRuntimeObject::ObjCRuntimeObject(ExecState* exec, JSGlobalObject* globalObject, PassRefPtr<ObjcInstance> instance)
41 : RuntimeObject(exec, globalObject, WebCore::deprecatedGetDOMStructure<ObjCRuntimeObject>(exec), instance)
46 ObjCRuntimeObject::~ObjCRuntimeObject()
50 ObjcInstance* ObjCRuntimeObject::getInternalObjCInstance() const
ObjCRuntimeObject.h 36 class ObjCRuntimeObject : public RuntimeObject {
38 ObjCRuntimeObject(ExecState*, JSGlobalObject*, PassRefPtr<ObjcInstance>);
39 virtual ~ObjCRuntimeObject();
objc_runtime.mm 30 #include "ObjCRuntimeObject.h"
222 if (!thisValue.inherits(&ObjCRuntimeObject::s_info))
227 ObjCRuntimeObject* runtimeObject = static_cast<ObjCRuntimeObject*>(asObject(thisValue));
objc_instance.mm 31 #import "ObjCRuntimeObject.h"
69 return new (exec) ObjCRuntimeObject(exec, exec->lexicalGlobalObject(), this);
  /external/webkit/Source/WebCore/bindings/objc/
WebScriptObject.mm 39 #import "ObjCRuntimeObject.h"
546 } else if (object->inherits(&ObjCRuntimeObject::s_info)) {
547 ObjCRuntimeObject* runtimeObject = static_cast<ObjCRuntimeObject*>(object);

Completed in 236 milliseconds