HomeSort by relevance Sort by last modified time
    Searched full:methodlist (Results 1 - 25 of 44) sorted by null

1 2

  /external/webkit/Source/WebCore/bridge/jni/v8/
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...]
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;
JavaNPObjectV8.cpp 121 MethodList methodList = instance->getClass()->methodsNamed(name);
130 size_t numMethods = methodList.size();
134 aMethod = methodList[methodIndex];
  /external/chromium/chrome/browser/ui/cocoa/
objc_method_swizzle.mm 16 Method* methodList = class_copyMethodList(aClass, &methodCount);
17 if (methodList) {
19 if (method_getName(methodList[i]) == aSelector) {
20 method = methodList[i];
24 free(methodList);
  /external/webkit/Source/WebCore/bridge/jni/jsc/
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];
JavaClassJSC.h 44 virtual MethodList methodsNamed(const Identifier&, Instance*) const;
  /external/webkit/Source/WebCore/bridge/c/
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]);
c_class.h 46 virtual MethodList methodsNamed(const Identifier&, Instance*) const;
  /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...]
  /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 {
  /external/webkit/Source/WebCore/bridge/objc/
objc_class.mm 76 MethodList ObjcClass::methodsNamed(const Identifier& identifier, Instance*) const
78 MethodList methodList;
86 return methodList;
93 methodList.append(method);
94 return methodList;
98 while (thisClass && methodList.isEmpty()) {
133 methodList.append(aMethod);
149 return methodList;
objc_instance.mm 179 ObjCRuntimeMethod(ExecState* exec, JSGlobalObject* globalObject, const Identifier& name, Bindings::MethodList& list)
199 MethodList methodList = getClass()->methodsNamed(propertyName, this);
200 return new (exec) ObjCRuntimeMethod(exec, exec->lexicalGlobalObject(), propertyName, methodList);
208 const MethodList& methodList = *runtimeMethod->methods();
212 ASSERT(methodList.size() == 1);
214 return invokeObjcMethod(exec, static_cast<ObjcMethod*>(methodList[0]));
objc_class.h 43 virtual MethodList methodsNamed(const Identifier&, Instance *instance) const;
  /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_object.cpp 137 MethodList methodList = aClass->methodsNamed(propertyName, instance.get());
138 if (methodList.size() > 0) {
183 MethodList methodList = aClass->methodsNamed(propertyName, instance.get());
184 if (methodList.size() > 0) {
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/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/WebCore/platform/graphics/wince/
MediaPlayerProxy.cpp 137 MethodList methodList = aClass->methodsNamed(iden, instance);
139 instance->invokeMethod(exec, methodList , args);
  /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/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);

Completed in 1447 milliseconds

1 2