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.java132 JDiffClassDescription.JDiffMethod method = method("staticMethod", in testStaticMethod()
142 JDiffClassDescription.JDiffMethod method = method("syncMethod", in testSyncMethod()
152 JDiffClassDescription.JDiffMethod method = method("packageProtectedMethod", 0, "boolean"); in testPackageProtectMethod()
161 JDiffClassDescription.JDiffMethod method = method("privateMethod", Modifier.PRIVATE, in testPrivateMethod()
171 JDiffClassDescription.JDiffMethod method = method("protectedMethod", Modifier.PROTECTED, in testProtectedMethod()
181 JDiffClassDescription.JDiffMethod method = method("throwsMethod", Modifier.PUBLIC, "void"); in testThrowsMethod()
192 JDiffClassDescription.JDiffMethod method = method("nativeMethod", in testNativeMethod()
355 JDiffClassDescription.JDiffMethod method = method("notSyncMethod", in testRemovingSync()
367 JDiffClassDescription.JDiffMethod method = method("nativeMethod", Modifier.PUBLIC, "void"); in testAddingNative()
378 JDiffClassDescription.JDiffMethod method = method("notNativeMethod", in testRemovingNative()
[all …]
DApiPresenceCheckerTest.java94 protected static JDiffClassDescription.JDiffMethod method( in method()
96 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.java134 for (JDiffClassDescription.JDiffMethod jdiffMethod : classDescription.getMethods()) { in findMethod()
165 for (JDiffClassDescription.JDiffMethod method : classDescription.getMethods()) { in queueForDeferredCheck()
DApiPresenceChecker.java218 for (JDiffClassDescription.JDiffMethod method : classDescription.getMethods()) { in checkMethodCompliance()
249 JDiffClassDescription.JDiffMethod methodDescription, Method method) { in checkMethod()
DReflectionHelper.java19 import android.signature.cts.JDiffClassDescription.JDiffMethod;
233 Class<?> runtimeClass, JDiffMethod method, Map<Method, String> mismatchReasons) { in findMatchingMethod()
269 static boolean matchesSignature(JDiffMethod jDiffMethod, Method reflectedMethod, in matchesSignature()
DApiComplianceChecker.java475 JDiffClassDescription.JDiffMethod methodDescription, Method method) { in checkMethod()
520 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;