Searched refs:MethodList (Results 1 - 25 of 29) sorted by relevance

12

/external/webkit/Source/WebCore/bridge/jni/v8/
H A DJavaClassV8.h43 typedef Vector<JavaMethod*> MethodList; typedef in namespace:JSC::Bindings
50 virtual MethodList methodsNamed(const char* name) const = 0;
H A DJavaClassJobjectV8.h48 virtual MethodList methodsNamed(const char* name) const;
61 typedef HashMap<WTF::String, MethodList*> MethodListMap;
H A DJavaClassJobjectV8.cpp84 MethodList* methodList = m_methods.get(aMethod->name());
86 methodList = new MethodList();
107 const MethodList* methodList = it->second;
152 MethodList JavaClassJobject::methodsNamed(const char* name) const
154 MethodList* methodList = m_methods.get(name);
158 return MethodList();
H A DJavaNPObjectV8.cpp121 MethodList methodList = instance->getClass()->methodsNamed(name);
/external/webkit/Source/WebCore/bridge/jni/jsc/
H A DJavaClassJSC.cpp80 MethodList* methodList;
86 methodList = new MethodList();
110 const MethodList* methodList = it->second;
117 MethodList JavaClass::methodsNamed(const Identifier& identifier, Instance*) const
119 MethodList* methodList = m_methods.get(identifier.ustring().impl());
123 return MethodList();
H A DJavaClassJSC.h44 virtual MethodList methodsNamed(const Identifier&, Instance*) const;
H A DJavaInstanceJSC.cpp119 JavaRuntimeMethod(ExecState* exec, JSGlobalObject* globalObject, const Identifier& name, Bindings::MethodList& list)
139 MethodList methodList = getClass()->methodsNamed(propertyName, this);
148 const MethodList& methodList = *runtimeMethod->methods();
/external/webkit/Source/WebCore/bridge/
H A Druntime_method.h38 RuntimeMethod(ExecState*, JSGlobalObject*, Structure*, const Identifier& name, Bindings::MethodList&);
39 Bindings::MethodList* methods() const { return _methodList.get(); }
62 OwnPtr<Bindings::MethodList> _methodList;
H A Druntime_method.cpp46 RuntimeMethod::RuntimeMethod(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, const Identifier& ident, Bindings::MethodList& m)
49 , _methodList(new MethodList(m))
/external/webkit/Source/WebCore/bridge/c/
H A Dc_class.h46 virtual MethodList methodsNamed(const Identifier&, Instance*) const;
H A Dc_class.cpp76 MethodList CClass::methodsNamed(const Identifier& identifier, Instance* instance) const
78 MethodList methodList;
H A Dc_instance.cpp114 CRuntimeMethod(ExecState* exec, JSGlobalObject* globalObject, const Identifier& name, Bindings::MethodList& list)
134 MethodList methodList = getClass()->methodsNamed(propertyName, this);
143 const MethodList& methodList = *runtimeMethod->methods();
/external/webkit/Source/WebCore/bridge/objc/
H A Dobjc_class.h43 virtual MethodList methodsNamed(const Identifier&, Instance *instance) const;
H A Dobjc_class.mm76 MethodList ObjcClass::methodsNamed(const Identifier& identifier, Instance*) const
78 MethodList methodList;
/external/webkit/Source/WebCore/bridge/qt/
H A Dqt_class.h44 virtual MethodList methodsNamed(const Identifier&, Instance*) const;
H A Dqt_pixmapruntime.cpp47 virtual MethodList methodsNamed(const Identifier&, Instance*) const;
181 MethodList methodList = getClass()->methodsNamed(propertyName, this);
187 const MethodList& methods = *runtimeMethod->methods();
196 MethodList QtPixmapClass::methodsNamed(const Identifier& identifier, Instance*) const
198 MethodList methods;
H A Dqt_class.cpp118 MethodList QtClass::methodsNamed(const Identifier&, Instance*) const
120 return MethodList();
/external/webkit/Source/WebKit/mac/Plugins/Hosted/
H A DProxyInstance.mm53 virtual MethodList methodsNamed(const Identifier&, Instance*) const;
57 MethodList ProxyClass::methodsNamed(const Identifier& identifier, Instance* instance) const
182 ProxyRuntimeMethod(ExecState* exec, JSGlobalObject* globalObject, const Identifier& name, Bindings::MethodList& list)
202 MethodList methodList = getClass()->methodsNamed(propertyName, this);
211 const MethodList& methodList = *runtimeMethod->methods();
333 MethodList ProxyInstance::methodsNamed(const Identifier& identifier)
336 return MethodList();
341 MethodList methodList;
353 return MethodList();
357 return MethodList();
[all...]
H A DProxyInstance.h49 JSC::Bindings::MethodList methodsNamed(const JSC::Identifier&);
/external/webkit/Tools/DumpRenderTree/chromium/
H A DCppBoundClass.cpp203 for (MethodList::iterator i = m_methods.begin(); i != m_methods.end(); ++i)
228 MethodList::const_iterator end = m_methods.end();
229 MethodList::const_iterator method = m_methods.find(ident);
281 MethodList::iterator oldCallback = m_methods.find(ident);
323 MethodList::const_iterator callback = m_methods.find(ident);
H A DCppBoundClass.h214 typedef HashMap<NPIdentifier, Callback*> MethodList; typedef in class:CppBoundClass
218 MethodList m_methods;
/external/webkit/Source/WebCore/bridge/jsc/
H A DBridgeJSC.h53 typedef Vector<Method*> MethodList; typedef in namespace:JSC::Bindings
67 virtual MethodList methodsNamed(const Identifier&, Instance*) const = 0;
146 typedef HashMap<RefPtr<StringImpl>, MethodList*> MethodListMap;
/external/chromium/webkit/glue/
H A Dcpp_bound_class.h150 typedef std::map<NPIdentifier, Callback*> MethodList; typedef in class:CppBoundClass
154 MethodList methods_;
H A Dcpp_bound_class.cc181 for (MethodList::iterator i = methods_.begin(); i != methods_.end(); ++i)
206 MethodList::const_iterator method = methods_.find(ident);
258 MethodList::iterator old_callback = methods_.find(ident);
302 MethodList::const_iterator callback = methods_.find(ident);
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DMediaPlayerProxy.cpp137 MethodList methodList = aClass->methodsNamed(iden, instance);

Completed in 312 milliseconds

12