Searched refs:JDiffConstructor (Results 1 – 3 of 3) sorted by relevance
/cts/tests/signature-tests/src/android/signature/cts/tests/ |
D | JDiffClassDescriptionTest.java | 106 JDiffClassDescription.JDiffConstructor constructor = in testSimpleConstructor() 107 new JDiffClassDescription.JDiffConstructor("NormalClass", Modifier.PUBLIC); in testSimpleConstructor() 115 JDiffClassDescription.JDiffConstructor constructor = in testOneArgConstructor() 116 new JDiffClassDescription.JDiffConstructor("NormalClass", Modifier.PRIVATE); in testOneArgConstructor() 125 JDiffClassDescription.JDiffConstructor constructor = in testConstructorThrowsException() 126 new JDiffClassDescription.JDiffConstructor("NormalClass", Modifier.PROTECTED); in testConstructorThrowsException() 139 JDiffClassDescription.JDiffConstructor constructor = in testPackageProtectedConstructor() 140 new JDiffClassDescription.JDiffConstructor("NormalClass", 0); in testPackageProtectedConstructor()
|
/cts/tests/signature/src/android/signature/cts/ |
D | JDiffClassDescription.java | 75 private List<JDiffConstructor> jDiffConstructors = new ArrayList<JDiffConstructor>(); 141 public void addConstructor(JDiffConstructor tc) { in addConstructor() 412 public static final class JDiffConstructor extends JDiffMethod { class in JDiffClassDescription 413 public JDiffConstructor(String name, int modifier) { in JDiffConstructor() method in JDiffClassDescription.JDiffConstructor 417 public JDiffConstructor(String name, String[] param, int modifier) { in JDiffConstructor() method in JDiffClassDescription.JDiffConstructor 636 for (JDiffConstructor con : jDiffConstructors) { in checkConstructorCompliance() 672 private Constructor<?> findMatchingConstructor(JDiffConstructor jdiffDes) { in findMatchingConstructor()
|
D | SignatureTest.java | 21 import android.signature.cts.JDiffClassDescription.JDiffConstructor; 193 JDiffConstructor constructor = loadConstructorInfo(parser, currentClass); in start() 257 private JDiffConstructor loadConstructorInfo(XmlPullParser parser, in loadConstructorInfo() 261 return new JDiffConstructor(name, modifier); in loadConstructorInfo()
|