Searched refs:ApiMethod (Results 1 – 10 of 10) sorted by relevance
41 private final List<ApiMethod> mApiMethods = Collections.synchronizedList(new ArrayList<>());110 public void addMethod(ApiMethod method) { in addMethod()138 Optional<ApiMethod> apiMethod = getMethod(name, parameterTypes); in markMethodCovered()142 public Collection<ApiMethod> getMethods() { in getMethods()153 for (ApiMethod method : mApiMethods) { in getNumCoveredMethods()179 private Optional<ApiMethod> getMethod(String name, List<String> parameterTypes) { in getMethod()180 for (ApiMethod method : mApiMethods) { in getMethod()
29 class ApiMethod implements Comparable<ApiMethod> { class50 ApiMethod( in ApiMethod() method in ApiMethod70 public int compareTo(ApiMethod another) { in compareTo()
64 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()
123 ApiMethod apiMethod = new ApiMethod( in endElement()
110 for (ApiMethod method : apiClass.getMethods()) { in printXmlReport()
178 ApiMethod.Builder methodBuilder = ApiMethod.newBuilder(); in parseApi()193 ApiMethod.Builder methodBuilder = ApiMethod.newBuilder(); in parseApi()
294 private ApiMethod.Builder newTestBuilder(String moduleName, String className, String testName) { in newTestBuilder()295 ApiMethod.Builder testBuilder = ApiMethod.newBuilder(); in newTestBuilder()331 ApiMethod.Builder methodBuilder = ApiMethod.newBuilder(); in parseJavaHostTest()506 for (ApiMethod mtd : cls.getMethodsList()) { in writeCsvFile()545 for (ApiMethod mtd : cls.getMethodsList()) { in writeModuleCsvFile()
139 ApiMethod.Builder methodBuilder = ApiMethod.newBuilder(); in parse()258 ApiMethod.Builder methodBuilder = ApiMethod.newBuilder(); in processMethod()
213 for (ApiMethod method : clazz.getMethodsList()) { in writeApiPkg()228 private String getApiSignature(ApiPackage pkg, ApiClass clazz, ApiMethod method) { in getApiSignature()
76 message ApiMethod { message94 repeated ApiMethod methods = 8;