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.java49 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
DApiPresenceChecker.java176 for (JDiffClassDescription.JDiffConstructor con : classDescription.getConstructors()) { in checkConstructorCompliance()
205 JDiffClassDescription.JDiffConstructor ctorDescription, Constructor<?> ctor) { in checkConstructor()
DAnnotationChecker.java144 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.java460 JDiffClassDescription.JDiffConstructor ctorDescription, Constructor<?> ctor) { in checkConstructor()
/cts/tests/signature/tests/src/android/signature/cts/tests/
DApiComplianceCheckerTest.java82 JDiffClassDescription.JDiffConstructor constructor = in testSimpleConstructor()
83 new JDiffClassDescription.JDiffConstructor("NormalClass", Modifier.PUBLIC); in testSimpleConstructor()
92 JDiffClassDescription.JDiffConstructor constructor = in testOneArgConstructor()
93 new JDiffClassDescription.JDiffConstructor("NormalClass", Modifier.PRIVATE); in testOneArgConstructor()
103 JDiffClassDescription.JDiffConstructor constructor = in testConstructorThrowsException()
104 new JDiffClassDescription.JDiffConstructor("NormalClass", Modifier.PROTECTED); in testConstructorThrowsException()
118 JDiffClassDescription.JDiffConstructor constructor = in testPackageProtectedConstructor()
119 new JDiffClassDescription.JDiffConstructor("NormalClass", 0); in testPackageProtectedConstructor()
DAnnotationCheckerTest.java58 … 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()