Searched refs:JDiffConstructor (Results 1 – 8 of 8) sorted by relevance
/cts/tests/signature/tests/src/android/signature/cts/tests/ |
D | ApiPresenceCheckerTest.java | 69 JDiffClassDescription.JDiffConstructor constructor = in addConstructor() 70 new JDiffClassDescription.JDiffConstructor(clz.getShortClassName(), Modifier.PUBLIC); in addConstructor() 121 protected static JDiffClassDescription.JDiffConstructor ctor(String name, int modifiers) { in ctor() 122 return new JDiffClassDescription.JDiffConstructor(name, modifiers); in ctor()
|
D | ApiComplianceCheckerTest.java | 84 JDiffClassDescription.JDiffConstructor constructor = ctor("NormalClass", Modifier.PUBLIC); in testSimpleConstructor() 93 JDiffClassDescription.JDiffConstructor constructor = ctor("NormalClass", Modifier.PRIVATE); in testOneArgConstructor() 103 … JDiffClassDescription.JDiffConstructor constructor = ctor("NormalClass", Modifier.PROTECTED); in testConstructorThrowsException() 117 JDiffClassDescription.JDiffConstructor constructor = ctor("NormalClass", 0); in testPackageProtectedConstructor()
|
/cts/tests/signature/lib/common/src/android/signature/cts/ |
D | JDiffClassDescription.java | 49 private final List<JDiffConstructor> jDiffConstructors = new ArrayList<>(); 103 List<JDiffConstructor> getConstructors() { in getConstructors() 143 public void addConstructor(JDiffConstructor tc) { in addConstructor() 390 public static final class JDiffConstructor extends JDiffMethod { class in JDiffClassDescription 391 public JDiffConstructor(String name, int modifier) { in JDiffConstructor() method in JDiffClassDescription.JDiffConstructor
|
D | ApiPresenceChecker.java | 186 for (JDiffClassDescription.JDiffConstructor con : classDescription.getConstructors()) { in checkConstructorCompliance() 216 JDiffClassDescription.JDiffConstructor ctorDescription, Constructor<?> ctor) { in checkConstructor()
|
D | ReflectionHelper.java | 18 import android.signature.cts.JDiffClassDescription.JDiffConstructor; 140 JDiffConstructor jdiffDes, Map<Constructor, String> mismatchReasons) { in findMatchingConstructor() 151 JDiffConstructor jdiffDes, Map<Constructor, String> mismatchReasons) { in findMatchingConstructorImpl()
|
D | AnnotationChecker.java | 144 JDiffClassDescription.JDiffConstructor ctorDescription, Constructor<?> ctor) { in checkConstructor()
|
D | ApiComplianceChecker.java | 567 JDiffClassDescription.JDiffConstructor ctorDescription, Constructor<?> ctor) { in checkConstructor()
|
/cts/tests/signature/lib/android/src/android/signature/cts/ |
D | XmlApiParser.java | 18 import android.signature.cts.JDiffClassDescription.JDiffConstructor; 250 private static JDiffConstructor loadConstructorInfo( in loadConstructorInfo() 254 return new JDiffConstructor(name, modifier); in loadConstructorInfo() 499 JDiffConstructor constructor = in next()
|