Searched refs:apiMethod (Results 1 – 7 of 7) sorted by relevance
198 for (MethodProfile apiMethod : apiCache.getApiMethods().values()) { in markCoveredApisWithCaller()200 apiMethod.getPackageName(), apiMethod.getClassName(), apiCoverage); in markCoveredApisWithCaller()203 apiMethod.getMethodName(), in markCoveredApisWithCaller()204 apiMethod.getMethodParams(), in markCoveredApisWithCaller()
115 public void addApiMethodCall(MethodProfile apiMethod) { in addApiMethodCall() argument116 mApiMethodCalls.putIfAbsent(apiMethod.getMethodSignatureWithClass(), apiMethod); in addApiMethodCall() local
31 public void apiMethod() { in apiMethod() method in SystemApiClass
38 public void apiMethod() { in apiMethod() method in PublicApiClass
144 Optional<ApiMethod> apiMethod = getMethod(name, parameterTypes); in markMethodCoveredTest() local145 apiMethod.ifPresent(method -> method.setCoveredTest(testMethod)); in markMethodCoveredTest()172 Optional<ApiMethod> apiMethod = getMethod(name, parameterTypes); in markMethodCovered() local173 apiMethod.ifPresent(method -> method.setCovered(coveredbyApk)); in markMethodCovered()
123 ApiMethod apiMethod = new ApiMethod( in endElement() local134 apiClass.addMethod(apiMethod); in endElement()
611 JDiffClassDescription.JDiffMethod apiMethod, in areMethodsModifierCompatible() argument621 int apiModifiers = apiMethod.mModifier & ~ignoredMods; in areMethodsModifierCompatible()