Searched refs:Bindings (Results 1 - 25 of 70) sorted by relevance

123

/macosx-10.10/WebCore-7600.1.25/bindings/objc/
H A DWebScriptObjectPrivate.h37 namespace Bindings { namespace in namespace:JSC
45 id createJSWrapper(JSC::JSObject*, PassRefPtr<JSC::Bindings::RootObject> origin, PassRefPtr<JSC::Bindings::RootObject> root);
49 + (id)_convertValueToObjcValue:(JSC::JSValue)value originRootObject:(JSC::Bindings::RootObject*)originRootObject rootObject:(JSC::Bindings::RootObject*)rootObject;
50 + (id)scriptObjectForJSObject:(JSObjectRef)jsObject originRootObject:(JSC::Bindings::RootObject*)originRootObject rootObject:(JSC::Bindings::RootObject*)rootObject;
52 - (id)_initWithJSObject:(JSC::JSObject*)imp originRootObject:(PassRefPtr<JSC::Bindings::RootObject>)originRootObject rootObject:(PassRefPtr<JSC::Bindings::RootObject>)rootObject;
53 - (void)_setImp:(JSC::JSObject*)imp originRootObject:(PassRefPtr<JSC::Bindings
[all...]
H A DDOMInternal.h40 namespace Bindings { namespace in namespace:JSC
64 id createDOMWrapper(JSC::JSObject*, PassRefPtr<JSC::Bindings::RootObject> origin, PassRefPtr<JSC::Bindings::RootObject> current);
H A DDOMUtility.mm137 id createDOMWrapper(JSC::JSObject* object, PassRefPtr<JSC::Bindings::RootObject> origin, PassRefPtr<JSC::Bindings::RootObject> current)
/macosx-10.10/WebCore-7600.1.25/bridge/
H A DNP_jsobject.h36 namespace Bindings { namespace in namespace:JSC
47 JSC::Bindings::RootObject* rootObject;
50 NPObject* _NPN_CreateScriptObject(NPP npp, JSC::JSObject*, PassRefPtr<JSC::Bindings::RootObject> rootObject);
H A DBridge.h35 namespace Bindings { namespace in namespace:JSC
46 } // namespace Bindings
H A Druntime_method.h40 static RuntimeMethod* create(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, const String& name, Bindings::Method* method)
47 Bindings::Method* method() const { return m_method; }
62 RuntimeMethod(JSGlobalObject*, Structure*, Bindings::Method*);
72 Bindings::Method* m_method;
H A Druntime_array.h39 static RuntimeArray* create(ExecState* exec, Bindings::Array* array)
50 typedef Bindings::Array BindingsArray;
66 Bindings::Array* getConcreteArray() const { return m_array; }
81 void finishCreation(VM&, Bindings::Array*);
/macosx-10.10/WebCore-7600.1.25/bridge/objc/
H A DWebScriptObject.h37 + (id)_convertValueToObjcValue:(JSC::JSValue)value originRootObject:(JSC::Bindings::RootObject*)originRootObject rootObject:(JSC::Bindings::RootObject*)rootObject;
38 - (id)_initWithJSObject:(JSC::JSObject*)imp originRootObject:(PassRefPtr<JSC::Bindings::RootObject>)originRootObject rootObject:(PassRefPtr<JSC::Bindings::RootObject>)rootObject;
H A DObjCRuntimeObject.mm34 namespace Bindings {
H A Dobjc_class.h33 namespace Bindings { namespace in namespace:JSC
57 } // namespace Bindings
H A DObjCRuntimeObject.h32 namespace Bindings { namespace in namespace:JSC
H A Dobjc_utility.h38 namespace Bindings { namespace in namespace:JSC
80 } // namespace Bindings
/macosx-10.10/WebKit-7600.1.25/mac/Plugins/Hosted/
H A DProxyInstance.h41 class ProxyInstance : public JSC::Bindings::Instance {
43 static PassRefPtr<ProxyInstance> create(PassRefPtr<JSC::Bindings::RootObject> rootObject, NetscapePluginInstanceProxy* instanceProxy, uint32_t objectID)
49 JSC::Bindings::Method* methodNamed(JSC::PropertyName);
50 JSC::Bindings::Field* fieldNamed(JSC::PropertyName);
52 JSC::JSValue fieldValue(JSC::ExecState*, const JSC::Bindings::Field*) const;
53 void setFieldValue(JSC::ExecState*, const JSC::Bindings::Field*, JSC::JSValue) const;
63 ProxyInstance(PassRefPtr<JSC::Bindings::RootObject>, NetscapePluginInstanceProxy*, uint32_t objectID);
65 virtual JSC::Bindings::RuntimeObject* newRuntimeObject(JSC::ExecState*);
67 virtual JSC::Bindings::Class* getClass() const;
103 HashMap<RefPtr<StringImpl>, std::unique_ptr<JSC::Bindings
[all...]
H A DProxyRuntimeObject.h38 class ProxyRuntimeObject : public JSC::Bindings::RuntimeObject {
40 typedef JSC::Bindings::RuntimeObject Base;
/macosx-10.10/WebCore-7600.1.25/bindings/js/
H A DScriptControllerMac.mm56 - (PassRefPtr<JSC::Bindings::Instance>)createPluginBindingsInstance:(PassRefPtr<JSC::Bindings::RootObject>)rootObject;
59 using namespace JSC::Bindings;
63 PassRefPtr<JSC::Bindings::Instance> ScriptController::createScriptInstanceForWidget(Widget* widget)
78 return JSC::Bindings::ObjcInstance::create(objectForWebScript, rootObject.release());
88 RefPtr<Instance> instance = JSC::Bindings::CInstance::create(npObject, rootObject.release());
105 JSC::Bindings::RootObject* root = bindingRootObject();
128 JSC::Bindings::RootObject* root = bindingRootObject();
H A DScriptController.h49 namespace Bindings { namespace in namespace:JSC
64 typedef HashMap<void*, RefPtr<JSC::Bindings::RootObject>> RootObjectMap;
148 PassRefPtr<JSC::Bindings::Instance> createScriptInstanceForWidget(Widget*);
149 JSC::Bindings::RootObject* bindingRootObject();
150 JSC::Bindings::RootObject* cacheableBindingRootObject();
152 PassRefPtr<JSC::Bindings::RootObject> createRootObject(void* nativeHandle);
186 RefPtr<JSC::Bindings::RootObject> m_bindingRootObject;
189 RefPtr<JSC::Bindings::RootObject> m_cacheableBindingRootObject;
H A DJSPluginElementFunctions.h26 namespace Bindings { namespace in namespace:JSC
38 JSC::Bindings::Instance* pluginInstance(HTMLElement&);
/macosx-10.10/WebCore-7600.1.25/bridge/c/
H A DCRuntimeObject.cpp36 namespace Bindings { namespace in namespace:JSC
H A Dc_class.h36 namespace Bindings { namespace in namespace:JSC
55 } // namespace Bindings
H A Dc_runtime.h35 namespace Bindings { namespace in namespace:JSC
63 } // namespace Bindings
H A Dc_utility.h41 namespace Bindings { namespace in namespace:JSC
H A DCRuntimeObject.h39 namespace Bindings { namespace in namespace:JSC
/macosx-10.10/WebCore-7600.1.25/html/
H A DHTMLPlugInElement.h34 namespace Bindings { namespace in namespace:JSC
52 PassRefPtr<JSC::Bindings::Instance> getInstance();
124 RefPtr<JSC::Bindings::Instance> m_instance;
/macosx-10.10/WebCore-7600.1.25/platform/graphics/wince/
H A DMediaPlayerProxy.h56 RefPtr<JSC::Bindings::Instance> pluginInstance();
/macosx-10.10/WebKit-7600.1.25/win/
H A DWebKitLogging.h41 M(Bindings) \

Completed in 130 milliseconds

123