Home
last modified time | relevance | path

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

/cts/tools/cts-api-coverage/src/com/android/cts/apimap/
DCallGraphManager.java91 String methodSignature = methodProfile.getMethodSignatureWithClass(); in resolveCoveredApis() local
92 stack.add(tarjan.getComponentID(methodSignature)); in resolveCoveredApis()
93 visitedComponents.add(tarjan.getComponentID(methodSignature)); in resolveCoveredApis()
96 markCoveredApisWithCaller(methodSignature, apiCoverage); in resolveCoveredApis()
108 String methodSignature = methods.get(0).getMethodSignatureWithClass(); in resolveMethodCoveredApis() local
109 CoveredApiCache coveredApis = mCoveredApiCaches.get(methodSignature); in resolveMethodCoveredApis()
180 private void markCoveredApisWithCaller(String methodSignature, ApiCoverage apiCoverage) { in markCoveredApisWithCaller() argument
181 CoveredApiCache apiCache = mCoveredApiCaches.get(methodSignature); in markCoveredApisWithCaller()
194 String.format("[%s] %s", mModule.getModuleName(), methodSignature) in markCoveredApisWithCaller()
205 String.format("[%s] %s", mModule.getModuleName(), methodSignature) in markCoveredApisWithCaller()
DTarJan.java58 public int getComponentID(String methodSignature) { in getComponentID() argument
59 return mComponentIDs.get(methodSignature); in getComponentID()
70 String methodSignature = method.getMethodSignatureWithClass(); in tarjan() local
71 mVertices.put(methodSignature, v); in tarjan()
75 if (!mResolvedMethods.contains(methodSignature)) { in tarjan()
94 mComponentIDs.put(methodSignature, mNewNodeIndex); in tarjan()
/cts/tools/cts-api-coverage/src/com/android/cts/ctsprofiles/
DClassProfile.java110 String methodSignature = Utils.getMethodSignature(methodName, params); in getOrCreateMethod() local
111 if (!mMethods.containsKey(methodSignature)) { in getOrCreateMethod()
112 mMethods.put(methodSignature, new MethodProfile(this, methodName, params)); in getOrCreateMethod()
114 return mMethods.get(methodSignature); in getOrCreateMethod()
DUtils.java74 String methodSignature = getMethodSignature(methodName, paramTypes); in getMethodSignatureWithClass() local
75 return String.format("%s#%s", classSignature, methodSignature); in getMethodSignatureWithClass()
/cts/common/device-side/bedstead/remoteframeworkclasses/src/processor/main/java/com/android/bedstead/remoteframeworkclasses/processor/
DProcessor.java664 MethodSignature methodSignature = MethodSignature.forMethod(method, elements); in filterMethods() local
665 if (validApis.methods().contains(methodSignature)) { in filterMethods()
667 System.out.println(methodSignature + " is protected. Dropping"); in filterMethods()
672 System.out.println("No matching public API for " + methodSignature); in filterMethods()
694 MethodSignature methodSignature = MethodSignature.forMethod(method, elements); in filterValidTestApis() local
696 if (!methodSignature.mParameterTypes.get(0).equals( in filterValidTestApis()
702 methodSignature.getName().equals(a.getName()) && in filterValidTestApis()
703 methodSignature.getReturnType().equals(a.getReturnType()) && in filterValidTestApis()
704 methodSignature.mExceptions.equals(a.mExceptions) && in filterValidTestApis()
705 methodSignature.mParameterTypes.containsAll(a.mParameterTypes)) in filterValidTestApis()
[all …]