Home | History | Annotate | Download | only in Hosted

Lines Matching refs:MethodList

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]);
333 MethodList ProxyInstance::methodsNamed(const Identifier& identifier)
336 return MethodList();
341 MethodList methodList;
343 methodList.append(existingMapEntry->second);
344 return methodList;
353 return MethodList();
357 return MethodList();
360 return MethodList();
367 MethodList methodList;
369 methodList.append(mapAddResult.first->second);
370 return methodList;