Home
last modified time | relevance | path

Searched refs:MethodInfo (Results 1 – 4 of 4) sorted by relevance

/development/tools/apkcheck/src/com/android/apkcheck/
DClassInfo.java31 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()
DApkCheck.java332 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()
DApiDescrHandler.java39 private MethodInfo mCurrentMethod = null;
86 mCurrentMethod = new MethodInfo(attributes.getValue("name"), in startElement()
90 mCurrentMethod = new MethodInfo("<init>", "void"); in startElement()
DMethodInfo.java25 public class MethodInfo { class
36 public MethodInfo(String name, String returnType) { in MethodInfo() method in MethodInfo