Home
last modified time | relevance | path

Searched refs:apiMethod (Results 1 – 7 of 7) sorted by relevance

/cts/tools/cts-api-coverage/src/com/android/cts/apimap/
DCallGraphManager.java198 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()
/cts/tools/cts-api-coverage/src/com/android/cts/ctsprofiles/
DMethodProfile.java115 public void addApiMethodCall(MethodProfile apiMethod) { in addApiMethodCall() argument
116 mApiMethodCalls.putIfAbsent(apiMethod.getMethodSignatureWithClass(), apiMethod); in addApiMethodCall() local
/cts/tests/signature/tests/src/android/signature/cts/tests/data/
DSystemApiClass.java31 public void apiMethod() { in apiMethod() method in SystemApiClass
DPublicApiClass.java38 public void apiMethod() { in apiMethod() method in PublicApiClass
/cts/tools/cts-api-coverage/src/com/android/cts/apicommon/
DApiClass.java144 Optional<ApiMethod> apiMethod = getMethod(name, parameterTypes); in markMethodCoveredTest() local
145 apiMethod.ifPresent(method -> method.setCoveredTest(testMethod)); in markMethodCoveredTest()
172 Optional<ApiMethod> apiMethod = getMethod(name, parameterTypes); in markMethodCovered() local
173 apiMethod.ifPresent(method -> method.setCovered(coveredbyApk)); in markMethodCovered()
DApiXmlHandler.java123 ApiMethod apiMethod = new ApiMethod( in endElement() local
134 apiClass.addMethod(apiMethod); in endElement()
/cts/tests/signature/lib/common/src/android/signature/cts/
DApiComplianceChecker.java611 JDiffClassDescription.JDiffMethod apiMethod, in areMethodsModifierCompatible() argument
621 int apiModifiers = apiMethod.mModifier & ~ignoredMods; in areMethodsModifierCompatible()