Home
last modified time | relevance | path

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

/cts/tests/signature/tests/src/android/signature/cts/tests/
DApiPresenceCheckerTest.java69 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()
DApiComplianceCheckerTest.java84 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/
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.java186 for (JDiffClassDescription.JDiffConstructor con : classDescription.getConstructors()) { in checkConstructorCompliance()
216 JDiffClassDescription.JDiffConstructor ctorDescription, Constructor<?> ctor) { in checkConstructor()
DReflectionHelper.java18 import android.signature.cts.JDiffClassDescription.JDiffConstructor;
140 JDiffConstructor jdiffDes, Map<Constructor, String> mismatchReasons) { in findMatchingConstructor()
151 JDiffConstructor jdiffDes, Map<Constructor, String> mismatchReasons) { in findMatchingConstructorImpl()
DAnnotationChecker.java144 JDiffClassDescription.JDiffConstructor ctorDescription, Constructor<?> ctor) { in checkConstructor()
DApiComplianceChecker.java567 JDiffClassDescription.JDiffConstructor ctorDescription, Constructor<?> ctor) { in checkConstructor()
/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()