Searched refs:JDiffConstructor (Results 1 – 8 of 8) sorted by relevance
/cts/tests/signature/lib/common/src/android/signature/cts/ |
D | JDiffClassDescription.java | 48 private final List<JDiffConstructor> jDiffConstructors = new ArrayList<>(); 93 List<JDiffConstructor> getConstructors() { in getConstructors() 133 public void addConstructor(JDiffConstructor tc) { in addConstructor() 380 public static final class JDiffConstructor extends JDiffMethod { class in JDiffClassDescription 381 public JDiffConstructor(String name, int modifier) { in JDiffConstructor() method in JDiffClassDescription.JDiffConstructor
|
D | AbstractApiChecker.java | 193 for (JDiffClassDescription.JDiffConstructor con : classDescription.getConstructors()) { in checkConstructorCompliance() 222 JDiffClassDescription.JDiffConstructor ctorDescription, Constructor<?> ctor); in checkConstructor()
|
D | AnnotationChecker.java | 134 JDiffClassDescription.JDiffConstructor ctorDescription, Constructor<?> ctor) { in checkConstructor()
|
D | ReflectionHelper.java | 18 import android.signature.cts.JDiffClassDescription.JDiffConstructor; 136 JDiffConstructor jdiffDes, Map<Constructor, String> mismatchReasons) { in findMatchingConstructor()
|
D | ApiComplianceChecker.java | 432 JDiffClassDescription.JDiffConstructor ctorDescription, Constructor<?> ctor) { in checkConstructor()
|
/cts/tests/signature/tests/src/android/signature/cts/tests/ |
D | ApiComplianceCheckerTest.java | 69 JDiffClassDescription.JDiffConstructor constructor = in testSimpleConstructor() 70 new JDiffClassDescription.JDiffConstructor("NormalClass", Modifier.PUBLIC); in testSimpleConstructor() 79 JDiffClassDescription.JDiffConstructor constructor = in testOneArgConstructor() 80 new JDiffClassDescription.JDiffConstructor("NormalClass", Modifier.PRIVATE); in testOneArgConstructor() 90 JDiffClassDescription.JDiffConstructor constructor = in testConstructorThrowsException() 91 new JDiffClassDescription.JDiffConstructor("NormalClass", Modifier.PROTECTED); in testConstructorThrowsException() 105 JDiffClassDescription.JDiffConstructor constructor = in testPackageProtectedConstructor() 106 new JDiffClassDescription.JDiffConstructor("NormalClass", 0); in testPackageProtectedConstructor()
|
D | AnnotationCheckerTest.java | 45 … JDiffClassDescription.JDiffConstructor constructor = new JDiffClassDescription.JDiffConstructor( in addConstructor()
|
/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()
|