Searched refs:JDiffMethod (Results 1 - 4 of 4) sorted by relevance

/cts/tests/SignatureTest/tests/src/android/tests/sigtest/tests/
H A DJDiffClassDescriptionTest.java139 JDiffClassDescription.JDiffMethod method = new JDiffClassDescription.JDiffMethod("staticMethod", Modifier.STATIC | Modifier.PUBLIC, "void");
146 JDiffClassDescription.JDiffMethod method = new JDiffClassDescription.JDiffMethod("syncMethod", Modifier.SYNCHRONIZED | Modifier.PUBLIC, "void");
153 JDiffClassDescription.JDiffMethod method = new JDiffClassDescription.JDiffMethod("packageProtectedMethod", 0, "boolean");
160 JDiffClassDescription.JDiffMethod method = new JDiffClassDescription.JDiffMethod("privateMethod", Modifier.PRIVATE, "void");
167 JDiffClassDescription.JDiffMethod method = new JDiffClassDescription.JDiffMethod("protectedMetho
[all...]
/cts/tests/SignatureTest/src/android/tests/sigtest/
H A DSignatureTest.java21 import android.tests.sigtest.JDiffClassDescription.JDiffMethod;
103 JDiffMethod currentMethod = null;
200 private JDiffMethod loadMethodInfo(String className, XmlPullParser parser) {
204 return new JDiffMethod(methodName, modifier, returnType);
H A DSimpleSignatureTest.java23 import android.tests.sigtest.JDiffClassDescription.JDiffMethod;
144 JDiffMethod currentMethod = null;
225 private JDiffMethod loadMethodInfo(String className, XmlPullParser parser) {
229 return new JDiffMethod(methodName, modifier, returnType);
H A DJDiffClassDescription.java70 private List<JDiffMethod> jDiffMethods = new ArrayList<JDiffMethod>();
131 public void addMethod(JDiffMethod method) {
288 public static class JDiffMethod extends JDiffElement { class in class:JDiffClassDescription
293 public JDiffMethod(String name, int modifier, String returnType) { method in class:JDiffClassDescription.JDiffMethod
412 public static final class JDiffConstructor extends JDiffMethod {
462 private boolean areMethodModifiedCompatibile(JDiffMethod apiMethod ,
492 for (JDiffMethod method : jDiffMethods) {
544 private boolean matches(JDiffMethod jDiffMethod, Method method) {
582 private Method findMatchingMethod(JDiffMethod metho
[all...]

Completed in 29 milliseconds