HomeSort by relevance Sort by last modified time
    Searched refs:JDiffMethod (Results 1 - 10 of 10) sorted by null

  /cts/tests/signature/tests/src/android/signature/cts/tests/
ApiComplianceCheckerTest.java 104 JDiffClassDescription.JDiffMethod method = method("staticMethod",
113 JDiffClassDescription.JDiffMethod method = method("syncMethod",
122 JDiffClassDescription.JDiffMethod method = method("packageProtectedMethod", 0, "boolean");
130 JDiffClassDescription.JDiffMethod method = method("privateMethod", Modifier.PRIVATE,
139 JDiffClassDescription.JDiffMethod method = method("protectedMethod", Modifier.PROTECTED,
148 JDiffClassDescription.JDiffMethod method = method("throwsMethod", Modifier.PUBLIC, "void");
158 JDiffClassDescription.JDiffMethod method = method("nativeMethod",
309 JDiffClassDescription.JDiffMethod method = method("syncMethod", Modifier.PUBLIC, "void");
321 JDiffClassDescription.JDiffMethod method = method("notSyncMethod",
332 JDiffClassDescription.JDiffMethod method = method("nativeMethod", Modifier.PUBLIC, "void")
    [all...]
AbstractApiCheckerTest.java 87 protected static JDiffClassDescription.JDiffMethod method(
89 return new JDiffClassDescription.JDiffMethod(name, modifiers, returnType);
  /cts/tests/signature/src/android/signature/cts/
CurrentApi.java 20 import android.signature.cts.JDiffClassDescription.JDiffMethod;
93 static JDiffMethod loadMethodInfo(String className, XmlPullParser parser) {
97 return new JDiffMethod(methodName, modifier, returnType);
JDiffClassDescription.java 47 private final List<JDiffMethod> jDiffMethods = new ArrayList<>();
89 List<JDiffMethod> getMethods() {
124 public void addMethod(JDiffMethod method) {
256 public static class JDiffMethod extends JDiffElement {
261 public JDiffMethod(String name, int modifier, String returnType) {
380 public static final class JDiffConstructor extends JDiffMethod {
AbstractApiChecker.java 213 for (JDiffClassDescription.JDiffMethod method : classDescription.getMethods()) {
236 JDiffClassDescription.JDiffMethod methodDescription, Method method);
InterfaceChecker.java 115 for (JDiffClassDescription.JDiffMethod jdiffMethod : classDescription.getMethods()) {
116 if (ReflectionHelper.matches(jdiffMethod, method)) {
146 for (JDiffClassDescription.JDiffMethod method : classDescription.getMethods()) {
AnnotationChecker.java 144 JDiffClassDescription.JDiffMethod methodDescription, Method method) {
ApiComplianceChecker.java 464 JDiffClassDescription.JDiffMethod methodDescription, Method method) {
505 JDiffClassDescription.JDiffMethod apiMethod,
ReflectionHelper.java 210 JDiffClassDescription.JDiffMethod method) {
225 * @param jDiffMethod the jDiffMethod to compare
229 static boolean matches(JDiffClassDescription.JDiffMethod jDiffMethod,
232 if (!jDiffMethod.mName.equals(reflectedMethod.getName())) {
235 String jdiffReturnType = jDiffMethod.mReturnType;
237 List<String> jdiffParamList = jDiffMethod.mParamList;
ApiDocumentParser.java 90 JDiffClassDescription.JDiffMethod currentMethod = null;

Completed in 235 milliseconds