Home
last modified time | relevance | path

Searched refs:ApiMethod (Results 1 – 5 of 5) sorted by relevance

/cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
DApiClass.java37 private final List<ApiMethod> mApiMethods = new ArrayList<ApiMethod>();
93 public void addMethod(ApiMethod method) { in addMethod()
116 ApiMethod apiMethod = getMethod(name, parameterTypes, returnType); in markMethodCovered()
122 public Collection<ApiMethod> getMethods() { in getMethods()
133 for (ApiMethod method : mApiMethods) { in getNumCoveredMethods()
159 private ApiMethod getMethod(String name, List<String> parameterTypes, String returnType) { in getMethod()
160 for (ApiMethod method : mApiMethods) { in getMethod()
DApiMethod.java24 class ApiMethod implements Comparable<ApiMethod> { class
44 ApiMethod( in ApiMethod() method in ApiMethod
64 public int compareTo(ApiMethod another) { in compareTo()
DTextReport.java64 List<ApiMethod> methods = new ArrayList<ApiMethod>(apiClass.getMethods()); in printTextReport()
66 for (ApiMethod method : methods) { in printTextReport()
103 private static void printMethod(ApiMethod method, PrintStream out) { in printMethod()
DCurrentXmlHandler.java121 ApiMethod apiMethod = new ApiMethod( in endElement()
DXmlReport.java102 for (ApiMethod method : apiClass.getMethods()) { in printXmlReport()