Searched refs:m_methods (Results 1 – 7 of 7) sorted by relevance
30 return (Method_info) m_methods.get (offset); in get()39 final int count = m_methods.size (); // use size() if class becomes non-final in get()44 final Method_info method = (Method_info) m_methods.get (m); in get()55 return m_methods.size (); in size()70 final int methods_count = m_methods.size (); // use size() if class becomes non-final in clone()71 _clone.m_methods = new ArrayList (methods_count); in clone()74 _clone.m_methods.add (((Method_info) m_methods.get (m)).clone ()); in clone()89 final int methods_count = m_methods.size (); // use size() if class becomes non-final in writeInClassFormat()110 final int newoffset = m_methods.size (); // use size() if class becomes non-final in add()111 m_methods.add (method); in add()[all …]
57 m_methods = ElementFactory.newMethodCollection (-1); in ClassDef()184 return m_methods; in getMethods()199 return m_methods.get (this, name); in getMethods()218 _clone.m_methods = (IMethodCollection) m_methods.clone (); in clone()250 m_methods.writeInClassFormat (out); in writeInClassFormat()595 return m_methods.add (method); in addMethod()724 private IMethodCollection m_methods; field in ClassDef
209 for (MethodList::iterator i = m_methods.begin(); i != m_methods.end(); ++i) in ~CppBoundClass()222 return m_methods.find(ident) != m_methods.end(); in hasMethod()234 MethodList::const_iterator end = m_methods.end(); in invoke()235 MethodList::const_iterator method = m_methods.find(ident); in invoke()287 MethodList::iterator oldCallback = m_methods.find(ident); in bindCallback()288 if (oldCallback != m_methods.end()) { in bindCallback()291 m_methods.erase(oldCallback); in bindCallback()296 m_methods[ident] = callback; in bindCallback()329 MethodList::const_iterator callback = m_methods.find(ident); in isMethodRegistered()330 return callback != m_methods.end(); in isMethodRegistered()
220 MethodList m_methods; variable
52 m_methods = methods; // TODO: defensive copy? in ClassDescriptor()55 for (int m = 0; m < m_methods.length; ++ m) in ClassDescriptor()59 …thod.getStatus () & IMetadataConstants.METHOD_NO_BLOCK_DATA) == 0) && ! m_methods [m].hasLineNumbe… in ClassDescriptor()131 return m_methods; // no defensive copy in getMethods()154 for (int m = 0; m < m_methods.length; ++ m) in toString()157 s.append (m_methods [m].toString (indent + INDENT_INCREMENT)); in toString()207 final MethodDescriptor [] methods = cls.m_methods; in writeExternal()225 private final MethodDescriptor [] m_methods; // [never null, could be empty] field in ClassDescriptor
92 m_methods.clear(); in parse()93 …parseAccessControlAllowList(response.httpHeaderField("Access-Control-Allow-Methods"), m_methods)) { in parse()117 if (m_methods.contains(method) || isOnAccessControlSimpleRequestMethodWhitelist(method)) in allowsCrossOriginMethod()
64 HashSet<String> m_methods; variable