HomeSort by relevance Sort by last modified time
    Searched refs:MethodList (Results 1 - 25 of 36) sorted by null

1 2

  /dalvik/dx/src/com/android/dx/cf/iface/
MethodList.java 22 public interface MethodList {
25 * {@code MethodList} interface itself doesn't provide any means
StdMethodList.java 22 * Standard implementation of {@link MethodList}, which directly stores
25 public final class StdMethodList extends FixedSizeList implements MethodList {
ClassFile.java 105 public MethodList getMethods();
  /external/webkit/Source/WebCore/bridge/jni/v8/
JavaClassJobjectV8.h 44 virtual MethodList methodsNamed(const char* name) const;
48 typedef HashMap<WTF::String, MethodList*> MethodListMap;
JavaClassV8.h 43 typedef Vector<JavaMethod*> MethodList;
50 virtual MethodList methodsNamed(const char* name) const = 0;
JavaClassJobjectV8.cpp 63 MethodList* methodList = m_methods.get(aMethod->name());
64 if (!methodList) {
65 methodList = new MethodList();
66 m_methods.set(aMethod->name(), methodList);
68 methodList->append(aMethod);
83 const MethodList* methodList = it->second;
84 deleteAllValues(*methodList);
    [all...]
  /external/webkit/Source/WebCore/bridge/
runtime_method.h 38 RuntimeMethod(ExecState*, JSGlobalObject*, Structure*, const Identifier& name, Bindings::MethodList&);
39 Bindings::MethodList* methods() const { return _methodList.get(); }
62 OwnPtr<Bindings::MethodList> _methodList;
runtime_method.cpp 46 RuntimeMethod::RuntimeMethod(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, const Identifier& ident, Bindings::MethodList& m)
49 , _methodList(new MethodList(m))
  /external/webkit/Source/WebCore/bridge/jni/jsc/
JavaClassJSC.h 44 virtual MethodList methodsNamed(const Identifier&, Instance*) const;
JavaClassJSC.cpp 80 MethodList* methodList;
84 methodList = m_methods.get(aMethod->name().impl());
85 if (!methodList) {
86 methodList = new MethodList();
87 m_methods.set(aMethod->name().impl(), methodList);
90 methodList->append(aMethod);
110 const MethodList* methodList = it->second
    [all...]
JavaInstanceJSC.cpp 119 JavaRuntimeMethod(ExecState* exec, JSGlobalObject* globalObject, const Identifier& name, Bindings::MethodList& list)
139 MethodList methodList = getClass()->methodsNamed(propertyName, this);
140 return new (exec) JavaRuntimeMethod(exec, exec->lexicalGlobalObject(), propertyName, methodList);
148 const MethodList& methodList = *runtimeMethod->methods();
154 size_t numMethods = methodList.size();
162 Method* aMethod = methodList[methodIndex];
  /external/webkit/Source/WebCore/bridge/c/
c_class.h 46 virtual MethodList methodsNamed(const Identifier&, Instance*) const;
c_class.cpp 76 MethodList CClass::methodsNamed(const Identifier& identifier, Instance* instance) const
78 MethodList methodList;
82 methodList.append(method);
83 return methodList;
95 methodList.append(aMethod);
98 return methodList;
c_instance.cpp 114 CRuntimeMethod(ExecState* exec, JSGlobalObject* globalObject, const Identifier& name, Bindings::MethodList& list)
134 MethodList methodList = getClass()->methodsNamed(propertyName, this);
135 return new (exec) CRuntimeMethod(exec, exec->lexicalGlobalObject(), propertyName, methodList);
143 const MethodList& methodList = *runtimeMethod->methods();
147 ASSERT(methodList.size() == 1);
149 CMethod* method = static_cast<CMethod*>(methodList[0]);
  /external/webkit/Source/WebCore/bridge/objc/
objc_class.h 43 virtual MethodList methodsNamed(const Identifier&, Instance *instance) const;
  /external/webkit/Source/WebCore/bridge/qt/
qt_class.h 44 virtual MethodList methodsNamed(const Identifier&, Instance*) const;
qt_pixmapruntime.cpp 47 virtual MethodList methodsNamed(const Identifier&, Instance*) const;
181 MethodList methodList = getClass()->methodsNamed(propertyName, this);
182 return new (exec) RuntimeMethod(exec, exec->lexicalGlobalObject(), WebCore::deprecatedGetDOMStructure<RuntimeMethod>(exec), propertyName, methodList);
187 const MethodList& methods = *runtimeMethod->methods();
196 MethodList QtPixmapClass::methodsNamed(const Identifier& identifier, Instance*) const
198 MethodList methods;
  /external/webkit/Source/WebCore/bridge/jsc/
BridgeJSC.h 53 typedef Vector<Method*> MethodList;
67 virtual MethodList methodsNamed(const Identifier&, Instance*) const = 0;
146 typedef HashMap<RefPtr<StringImpl>, MethodList*> MethodListMap;
  /external/webkit/Source/WebKit/mac/Plugins/Hosted/
ProxyInstance.mm 53 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);
203 return new (exec) ProxyRuntimeMethod(exec, exec->lexicalGlobalObject(), propertyName, methodList);
211 const MethodList& methodList = *runtimeMethod->methods();
213 ASSERT(methodList.size() == 1);
215 ProxyMethod* method = static_cast<ProxyMethod*>(methodList[0])
    [all...]
  /external/webkit/Tools/DumpRenderTree/chromium/
CppBoundClass.cpp 203 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);
CppBoundClass.h 214 typedef HashMap<NPIdentifier, Callback*> MethodList;
218 MethodList m_methods;
  /external/chromium/webkit/glue/
cpp_bound_class.h 150 typedef std::map<NPIdentifier, Callback*> MethodList;
154 MethodList methods_;
cpp_bound_class.cc 181 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);
  /dalvik/dx/src/com/android/dx/cf/direct/
DirectClassFile.java 25 import com.android.dx.cf.iface.MethodList;
135 private MethodList methods;
294 public MethodList getMethods() {
  /external/webkit/Source/WebCore/platform/graphics/wince/
MediaPlayerProxy.cpp 137 MethodList methodList = aClass->methodsNamed(iden, instance);
139 instance->invokeMethod(exec, methodList , args);

Completed in 143 milliseconds

1 2