Searched refs:MethodInfo (Results 1 – 4 of 4) sorted by relevance
31 private HashMap<String,MethodInfo> mMethodList;62 mMethodList = new HashMap<String,MethodInfo>(); in ClassInfo()153 public void addMethod(MethodInfo methInfo) { in addMethod()160 public Iterator<MethodInfo> getMethodIterator() { in getMethodIterator()169 public MethodInfo getMethod(String nameAndDescr) { in getMethod()184 public MethodInfo getMethodIgnoringReturn(String nameAndDescr) { in getMethodIgnoringReturn()187 Iterator<MethodInfo> iter = getMethodIterator(); in getMethodIgnoringReturn()189 MethodInfo methInfo = iter.next(); in getMethodIgnoringReturn()310 HashMap<String,MethodInfo> tmpMethodList = new HashMap<String,MethodInfo>(); in normalizeTypes()314 MethodInfo methodInfo = mMethodList.get(key); in normalizeTypes()
332 Iterator<MethodInfo> methodIter = classInfo.getMethodIterator(); in checkClass()334 MethodInfo apkMethodInfo = methodIter.next(); in checkClass()336 MethodInfo pubMethodInfo = pubClassInfo.getMethod(nameAndDescr); in checkClass()416 Iterator<MethodInfo> methIter = classInfo.getMethodIterator(); in dumpClass()418 MethodInfo methInfo = methIter.next(); in dumpClass()423 private static void dumpMethod(MethodInfo methInfo) { in dumpMethod()
39 private MethodInfo mCurrentMethod = null;86 mCurrentMethod = new MethodInfo(attributes.getValue("name"), in startElement()90 mCurrentMethod = new MethodInfo("<init>", "void"); in startElement()
25 public class MethodInfo { class36 public MethodInfo(String name, String returnType) { in MethodInfo() method in MethodInfo