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

  /cts/tests/SignatureTest/tests/src/android/tests/sigtest/tests/
JDiffClassDescriptionTest.java 139 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("protectedMethod", Modifier.PROTECTED, "java.lang.String")
    [all...]
  /cts/tests/SignatureTest/src/android/tests/sigtest/
SignatureTest.java 23 import android.tests.sigtest.JDiffClassDescription.JDiffMethod;
155 JDiffMethod currentMethod = null;
236 private JDiffMethod loadMethodInfo(String className, XmlPullParser parser) {
240 return new JDiffMethod(methodName, modifier, returnType);
JDiffClassDescription.java 72 private List<JDiffMethod> jDiffMethods = new ArrayList<JDiffMethod>();
133 public void addMethod(JDiffMethod method) {
290 public static class JDiffMethod extends JDiffElement {
295 public JDiffMethod(String name, int modifier, String returnType) {
414 public static final class JDiffConstructor extends JDiffMethod {
464 private boolean areMethodModifiedCompatibile(JDiffMethod apiMethod ,
494 for (JDiffMethod method : jDiffMethods) {
542 * @param jDiffMethod the jDiffMethod to compar
    [all...]

Completed in 29 milliseconds