Searched refs:JDiffMethod (Results 1 – 9 of 9) sorted by relevance
/cts/tests/signature/tests/src/android/signature/cts/tests/ |
D | ApiComplianceCheckerTest.java | 130 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 …]
|
D | ApiPresenceCheckerTest.java | 125 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/ |
D | JDiffClassDescription.java | 48 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 {
|
D | InterfaceChecker.java | 154 for (JDiffClassDescription.JDiffMethod jdiffMethod : classDescription.getMethods()) { in findMethod() 184 for (JDiffClassDescription.JDiffMethod method : classDescription.getMethods()) { in queueForDeferredCheck()
|
D | ReflectionHelper.java | 19 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()
|
D | ApiPresenceChecker.java | 229 for (JDiffClassDescription.JDiffMethod method : classDescription.getMethods()) { in checkMethodCompliance() 261 JDiffClassDescription.JDiffMethod methodDescription, Method method) { in checkMethod()
|
D | ApiComplianceChecker.java | 582 JDiffClassDescription.JDiffMethod methodDescription, Method method) { in checkMethod() 611 JDiffClassDescription.JDiffMethod apiMethod, in areMethodsModifierCompatible()
|
D | AnnotationChecker.java | 165 JDiffClassDescription.JDiffMethod methodDescription, Method method) { in checkMethod()
|
/cts/tests/signature/lib/android/src/android/signature/cts/ |
D | XmlApiParser.java | 20 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;
|