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

  /external/webkit/Source/WebCore/bridge/c/
CRuntimeObject.cpp 40 CRuntimeObject::CRuntimeObject(ExecState* exec, JSGlobalObject* globalObject, PassRefPtr<CInstance> instance)
52 CInstance* CRuntimeObject::getInternalCInstance() const
54 return static_cast<CInstance*>(getInternalInstance());
CRuntimeObject.h 36 class CInstance;
40 CRuntimeObject(ExecState*, JSGlobalObject*, PassRefPtr<CInstance>);
43 CInstance* getInternalCInstance() const;
c_runtime.cpp 44 const CInstance* instance = static_cast<const CInstance*>(inst);
54 CInstance::moveGlobalExceptionToExecState(exec);
67 const CInstance* instance = static_cast<const CInstance*>(inst);
76 CInstance::moveGlobalExceptionToExecState(exec);
c_instance.h 45 class CInstance : public Instance {
47 static PassRefPtr<CInstance> create(NPObject* object, PassRefPtr<RootObject> rootObject)
49 return adoptRef(new CInstance(object, rootObject));
55 ~CInstance ();
79 CInstance(NPObject*, PassRefPtr<RootObject>);
c_instance.cpp 65 void CInstance::setGlobalException(UString exception)
70 void CInstance::moveGlobalExceptionToExecState(ExecState* exec)
83 CInstance::CInstance(NPObject* o, PassRefPtr<RootObject> rootObject)
90 CInstance::~CInstance()
95 RuntimeObject* CInstance::newRuntimeObject(ExecState* exec)
100 Class *CInstance::getClass() const
107 bool CInstance::supportsInvokeDefaultMethod() const
132 JSValue CInstance::getMethod(ExecState* exec, const Identifier& propertyName
    [all...]
c_class.cpp 87 const CInstance* inst = static_cast<const CInstance*>(instance);
108 const CInstance* inst = static_cast<const CInstance*>(instance);
c_utility.cpp 90 CInstance* instance = runtimeObject->getInternalCInstance();
139 // Wrap NPObject in a CInstance.
140 return CInstance::create(obj, rootObject)->createRuntimeObject(exec);
  /external/webkit/Source/WebCore/bindings/js/
ScriptControllerMac.mm 91 RefPtr<Instance> instance = JSC::Bindings::CInstance::create(npObject, rootObject.release());
  /external/webkit/Source/WebCore/bridge/
NP_jsobject.cpp 455 CInstance::setGlobalException(exception);
  /external/webkit/Source/WebCore/plugins/
PluginView.cpp 822 RefPtr<JSC::Bindings::Instance> instance = JSC::Bindings::CInstance::create(object, root.release());
852 // Bindings::CInstance (used in JSC version) retains the object, so in ~PluginView() it calls
    [all...]

Completed in 729 milliseconds