Home
last modified time | relevance | path

Searched refs:JDiffMethod (Results 1 – 9 of 9) sorted by relevance

/cts/tests/signature/tests/src/android/signature/cts/tests/
DApiComplianceCheckerTest.java130 JDiffClassDescription.JDiffMethod method = method("staticMethod", in testStaticMethod()
140 JDiffClassDescription.JDiffMethod method = method("syncMethod", in testSyncMethod()
150 JDiffClassDescription.JDiffMethod method = method("packageProtectedMethod", 0, "boolean"); in testPackageProtectMethod()
159 JDiffClassDescription.JDiffMethod method = method("privateMethod", Modifier.PRIVATE, in testPrivateMethod()
169 JDiffClassDescription.JDiffMethod method = method("protectedMethod", Modifier.PROTECTED, in testProtectedMethod()
179 JDiffClassDescription.JDiffMethod method = method("throwsMethod", Modifier.PUBLIC, "void"); in testThrowsMethod()
190 JDiffClassDescription.JDiffMethod method = method("nativeMethod", in testNativeMethod()
203 JDiffClassDescription.JDiffMethod method = method("varargs", in testVarargsMethod()
221 JDiffClassDescription.JDiffMethod method = method("clone", in testCloneMethod()
482 JDiffClassDescription.JDiffMethod method = method("notSyncMethod", in testRemovingSync()
[all …]
DApiPresenceCheckerTest.java125 protected static JDiffClassDescription.JDiffMethod method( in method()
127 return new JDiffClassDescription.JDiffMethod(name, modifiers, returnType); in method()
/cts/tests/signature/lib/common/src/android/signature/cts/
DJDiffClassDescription.java48 private final List<JDiffMethod> jDiffMethods = new ArrayList<>();
99 List<JDiffMethod> getMethods() { in getMethods()
134 public void addMethod(JDiffMethod method) { in addMethod()
266 public static class JDiffMethod extends JDiffElement { class in JDiffClassDescription
271 public JDiffMethod(String name, int modifier, String returnType) { in JDiffMethod() method in JDiffClassDescription.JDiffMethod
390 public static final class JDiffConstructor extends JDiffMethod {
DInterfaceChecker.java154 for (JDiffClassDescription.JDiffMethod jdiffMethod : classDescription.getMethods()) { in findMethod()
184 for (JDiffClassDescription.JDiffMethod method : classDescription.getMethods()) { in queueForDeferredCheck()
DReflectionHelper.java19 import android.signature.cts.JDiffClassDescription.JDiffMethod;
247 Class<?> runtimeClass, JDiffMethod method, Map<Method, String> mismatchReasons) { in findMatchingMethod()
257 Class<?> runtimeClass, JDiffMethod method, Map<Method, String> mismatchReasons) { in findMatchingMethodImpl()
291 static boolean matches(JDiffClassDescription.JDiffMethod jDiffMethod, in matches()
311 static boolean matchesSignature(JDiffMethod jDiffMethod, Method reflectedMethod, in matchesSignature()
DApiPresenceChecker.java229 for (JDiffClassDescription.JDiffMethod method : classDescription.getMethods()) { in checkMethodCompliance()
261 JDiffClassDescription.JDiffMethod methodDescription, Method method) { in checkMethod()
DApiComplianceChecker.java582 JDiffClassDescription.JDiffMethod methodDescription, Method method) { in checkMethod()
611 JDiffClassDescription.JDiffMethod apiMethod, in areMethodsModifierCompatible()
DAnnotationChecker.java165 JDiffClassDescription.JDiffMethod methodDescription, Method method) { in checkMethod()
/cts/tests/signature/lib/android/src/android/signature/cts/
DXmlApiParser.java20 import android.signature.cts.JDiffClassDescription.JDiffMethod;
234 private static JDiffMethod loadMethodInfo(String className, XmlPullParser parser) { in loadMethodInfo()
238 return new JDiffMethod(methodName, modifier, canonicalizeType(returnType)); in loadMethodInfo()
390 JDiffMethod currentMethod = null;