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

  /external/webkit/Source/WebCore/bridge/objc/
ObjCRuntimeObject.h 34 class ObjcInstance;
38 ObjCRuntimeObject(ExecState*, JSGlobalObject*, PassRefPtr<ObjcInstance>);
41 ObjcInstance* getInternalObjCInstance() const;
ObjCRuntimeObject.mm 38 ObjCRuntimeObject::ObjCRuntimeObject(ExecState* exec, JSGlobalObject* globalObject, PassRefPtr<ObjcInstance> instance)
50 ObjcInstance* ObjCRuntimeObject::getInternalObjCInstance() const
52 return static_cast<ObjcInstance*>(getInternalInstance());
objc_instance.h 38 class ObjcInstance : public Instance {
40 static PassRefPtr<ObjcInstance> create(ObjectStructPtr, PassRefPtr<RootObject>);
41 virtual ~ObjcInstance();
72 ObjcInstance(ObjectStructPtr, PassRefPtr<RootObject>);
objc_instance.mm 67 RuntimeObject* ObjcInstance::newRuntimeObject(ExecState* exec)
72 void ObjcInstance::setGlobalException(NSString* exception, JSGlobalObject* exceptionEnvironment)
81 void ObjcInstance::moveGlobalExceptionToExecState(ExecState* exec)
98 ObjcInstance::ObjcInstance(id instance, PassRefPtr<RootObject> rootObject)
107 PassRefPtr<ObjcInstance> ObjcInstance::create(id instance, PassRefPtr<RootObject> rootObject)
112 return static_cast<ObjcInstance*>(existingWrapper);
113 RefPtr<ObjcInstance> wrapper = adoptRef(new ObjcInstance(instance, rootObject))
    [all...]
objc_runtime.h 41 class ObjcInstance;
95 ObjcFallbackObjectImp(ExecState*, JSGlobalObject*, ObjcInstance*, const Identifier& propertyName);
122 RefPtr<ObjcInstance> _instance;
objc_runtime.mm 98 id targetObject = (static_cast<const ObjcInstance*>(instance))->getObject();
126 id targetObject = (static_cast<const ObjcInstance*>(instance))->getObject();
192 ObjcFallbackObjectImp::ObjcFallbackObjectImp(ExecState* exec, JSGlobalObject* globalObject, ObjcInstance* i, const Identifier& propertyName)
228 ObjcInstance* objcInstance = runtimeObject->getInternalObjCInstance();
230 if (!objcInstance)
233 objcInstance->begin();
235 id targetObject = objcInstance->getObject();
238 ObjcClass* objcClass = static_cast<ObjcClass*>(objcInstance->getClass());
243 result = objcInstance->invokeObjcMethod(exec, fallbackMethod.get())
    [all...]
objc_class.mm 162 id targetObject = (static_cast<ObjcInstance*>(instance))->getObject();
244 ObjcInstance* objcInstance = static_cast<ObjcInstance*>(instance);
245 id targetObject = objcInstance->getObject();
249 return new (exec) ObjcFallbackObjectImp(exec, exec->lexicalGlobalObject(), objcInstance, propertyName);
objc_utility.mm 256 return ObjcInstance::create(obj, rootObject)->createRuntimeObject(exec);
  /external/webkit/Source/WebCore/bindings/js/
ScriptControllerMac.mm 81 return JSC::Bindings::ObjcInstance::create(objectForWebScript, rootObject.release());
  /external/webkit/Source/WebCore/bindings/objc/
WebScriptObject.mm 270 ObjcInstance::setGlobalException(exceptionMessage);
523 ObjcInstance::setGlobalException(description, [self _rootObject]->globalObject());
543 ObjcInstance* instance = static_cast<ObjcInstance*>(pluginInstance(el));
548 ObjcInstance* instance = runtimeObject->getInternalObjCInstance();

Completed in 398 milliseconds