Home
last modified time | relevance | path

Searched refs:JDiffConstructor (Results 1 – 8 of 8) sorted by relevance

/cts/tests/signature/lib/common/src/android/signature/cts/
DJDiffClassDescription.java48 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
DAbstractApiChecker.java193 for (JDiffClassDescription.JDiffConstructor con : classDescription.getConstructors()) { in checkConstructorCompliance()
222 JDiffClassDescription.JDiffConstructor ctorDescription, Constructor<?> ctor); in checkConstructor()
DAnnotationChecker.java134 JDiffClassDescription.JDiffConstructor ctorDescription, Constructor<?> ctor) { in checkConstructor()
DReflectionHelper.java18 import android.signature.cts.JDiffClassDescription.JDiffConstructor;
136 JDiffConstructor jdiffDes, Map<Constructor, String> mismatchReasons) { in findMatchingConstructor()
DApiComplianceChecker.java432 JDiffClassDescription.JDiffConstructor ctorDescription, Constructor<?> ctor) { in checkConstructor()
/cts/tests/signature/tests/src/android/signature/cts/tests/
DApiComplianceCheckerTest.java69 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()
DAnnotationCheckerTest.java45 … JDiffClassDescription.JDiffConstructor constructor = new JDiffClassDescription.JDiffConstructor( in addConstructor()
/cts/tests/signature/lib/android/src/android/signature/cts/
DXmlApiParser.java18 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()