/cts/tools/release-parser/tests/resources/ |
D | CtsJniTestCases.apk.pb.txt | 159 classes { 168 classes { 184 classes { 196 classes { 203 classes { 233 classes { 310 classes { 382 classes { 403 classes { 423 classes { [all …]
|
D | Shell.apk.pb.txt | 184 classes { 232 classes { 240 classes { 247 classes { 271 classes { 506 classes { 522 classes { 549 classes { 628 classes { 645 classes { [all …]
|
D | HelloActivity.apk.pb.txt | 47 classes { 56 classes { 119 key: "classes.dex" 121 name: "classes.dex"
|
/cts/tools/vm-tests-tf/etc/ |
D | vmtests-dasm.sh | 45 mv $GENDIR/$TESTDIR.dex $GENDIR/$TESTDIRPARENT/classes.dex 47 …$soong_zip -o $GENDIR/$TESTDIR.jar -C $GENDIR/$TESTDIRPARENT -f $GENDIR/$TESTDIRPARENT/classes.dex… 48 rm $GENDIR/$TESTDIRPARENT/classes.dex || exit 1
|
D | vmtests-cfassembler.sh | 43 rm $GENDIR/classes.dex || exit 1
|
/cts/tests/signature/api-check/android-test-base-uses-library-api/ |
D | Android.bp | 26 // Ensure that any android.test and junit classes embedded within this test do not conflict with 27 // the classes provided by the android.test.base or android.test.runner shared libraries. 37 // Prevent android.test.mock and android.test.runner classes being available at runtime by 39 // Otherwise, the test would break as it is not expecting those classes to be available.
|
/cts/tests/signature/api-check/android-test-mock-current-api/ |
D | Android.bp | 26 // Ensure that any android.test and junit classes embedded within this test do not conflict with 27 // the classes provided by the android.test.base or android.test.runner shared libraries. 36 // Prevent android.test.base and android.test.runner classes being available at runtime by 38 // Otherwise, the test would break as it is not expecting those classes to be available.
|
/cts/tests/signature/api-check/android-test-base-current-api/ |
D | Android.bp | 26 // Ensure that any android.test and junit classes embedded within this test do not conflict with 27 // the classes provided by the android.test.base or android.test.runner shared libraries. 36 // Prevent android.test.base, android.test.runner and android.test.mock classes being available 38 // manifest. Otherwise, the test would break as it is not expecting those classes to be
|
/cts/tests/signature/api-check/android-test-base-29-api/ |
D | Android.bp | 26 // Ensure that any android.test and junit classes embedded within this test do not conflict with 27 // the classes provided by the android.test.base or android.test.runner shared libraries. 37 // Prevent android.test.runner and android.test.mock classes being available at runtime by 39 // Otherwise, the test would break as it is not expecting those classes to be available.
|
/cts/tools/release-parser/src/com/android/cts/releaseparser/ |
D | JarTestFinder.java | 36 List<Class<?>> classes = new ArrayList<>(); in getClasses() local 65 classes.add(cls); in getClasses() 78 return classes; in getClasses()
|
/cts/tests/signature/api-check/src/jni/ |
D | classdescriptors.cpp | 105 char** classes = nullptr; in Java_android_signature_cts_api_BootClassPathClassesProvider_getClassloaderDescriptors() local 107 jvmtiError error = get_descriptor_list(jvmti_env, loader, &cnt, &classes); in Java_android_signature_cts_api_BootClassPathClassesProvider_getClassloaderDescriptors() 116 Cleanup(classes, cnt); in Java_android_signature_cts_api_BootClassPathClassesProvider_getClassloaderDescriptors() 121 env->SetObjectArrayElement(arr, i, env->NewStringUTF(classes[i])); in Java_android_signature_cts_api_BootClassPathClassesProvider_getClassloaderDescriptors() 123 Cleanup(classes, cnt); in Java_android_signature_cts_api_BootClassPathClassesProvider_getClassloaderDescriptors() 127 Cleanup(classes, cnt); in Java_android_signature_cts_api_BootClassPathClassesProvider_getClassloaderDescriptors()
|
/cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/ |
D | JarTestFinder.java | 39 List<Class<?>> classes = new ArrayList<>(); in getClasses() local 68 classes.add(cls); in getClasses() 80 return classes; in getClasses()
|
D | TextReport.java | 58 List<ApiClass> classes = new ArrayList<ApiClass>(apiPackage.getClasses()); in printTextReport() local 59 Collections.sort(classes, comparator); in printTextReport() 60 for (ApiClass apiClass : classes) { in printTextReport()
|
D | XmlReport.java | 82 List<ApiClass> classes = new ArrayList<ApiClass>(pkg.getClasses()); in printXmlReport() local 83 Collections.sort(classes, comparator); in printXmlReport() 85 for (ApiClass apiClass : classes) { in printXmlReport()
|
/cts/tests/tests/companion/multidevice/client/ |
D | proguard.flags | 1 # Keep all companion classes. 17 # By default, proguard leaves all classes in their original package, which
|
/cts/tools/vm-tests-tf/ |
D | Android.bp | 152 " && mkdir -p $(genDir)/classes" + 153 " && unzip -bq $(location :cts-tf-dalvik-buildutil) -d $(genDir)/classes" + 160 " $(genDir)/classes" + 163 " -C $(genDir)/classes" + 164 " -f $(genDir)/classes/dot/junit/DxUtil.class" + 165 " -f $(genDir)/classes/dot/junit/DxAbstractMain.class" + 166 " -f $(genDir)/classes/dot/junit/AssertionFailedException.class" +
|
/cts/tests/tests/icu/resources/android/icu/cts/expectations/ |
D | icu-known-failures.txt | 6 description: "Serialized forms have not been converted to use repackaged classes", 11 …description: "Checks differences in DecimalFormat classes from ICU4J and JDK but on Android java.t…
|
/cts/tests/signature/lib/common/src/android/signature/cts/ |
D | DexMethod.java | 48 Class<?>[] classes = new Class<?>[mParamTypeList.size()]; in getJavaParameterClasses() local 51 classes[i++] = DexMember.typeToClass(param); in getJavaParameterClasses() 53 return classes; in getJavaParameterClasses()
|
/cts/tests/jdwp/runner/device-side/src/com/android/compatibility/dalvik/ |
D | DalvikTestRunner.java | 101 List<Class<?>> classes = getClasses(classPathItems, abiName); in createConfig() local 102 config.suite = new FilterableTestSuite(classes, config.includes, config.excludes); in createConfig() 209 List<Class<?>> classes = new ArrayList<>(); in getClasses() local 225 classes.add(cls); in getClasses() 238 return classes; in getClasses() 375 public FilterableTestSuite(List<Class<?>> classes, Set<String> includes, in FilterableTestSuite() argument 377 super(classes.toArray(new Class<?>[classes.size()])); in FilterableTestSuite()
|
/cts/tests/signature/api-check/android-test-runner-current-api/ |
D | Android.bp | 26 // Ensure that any android.test and junit classes embedded within this test do not conflict with 27 // the classes provided by the android.test.base or android.test.runner shared libraries. 37 // the manifest. Their classes should still be available at runtime as a dependency on
|
/cts/libs/vogar-expect/ |
D | README | 1 Selected classes taken from http://code.google.com/p/vogar/
|
/cts/tests/signature/lib/android/src/android/signature/cts/ |
D | DexMemberChecker.java | 136 private static boolean typesMatch(Class<?>[] classes, List<String> typeNames) { in typesMatch() argument 137 if (classes.length != typeNames.size()) { in typesMatch() 140 for (int i = 0; i < classes.length; ++i) { in typesMatch() 141 if (!classes[i].getTypeName().equals(typeNames.get(i))) { in typesMatch()
|
/cts/hostsidetests/securitybulletin/test-apps/launchanywhere/src/com/android/security/cts/launchanywhere/ |
D | Authenticator.java | 127 Class<?>[] classes = Class.forName(responseName).getDeclaredClasses(); in addAccount() local 130 for (Class inner : classes) { in addAccount()
|
/cts/tests/signature/api-check/src/java/android/signature/cts/api/ |
D | SignatureTest.java | 164 String[] classes, Set<JDiffClassDescription> unexpectedClasses, boolean isPreviousApi) { in checkClassesSignatureCompliance() argument 166 parseApiResourcesAsStream(apiDocumentParser, classes) in checkClassesSignatureCompliance()
|
/cts/ |
D | CleanSpec.mk | 53 …(HOST_OUT_INTERMEDIATES)/JAVA_LIBRARIES/CtsSecurityHostTestCases_intermediates/classes/android/cts)
|