Home
last modified time | relevance | path

Searched refs:resourcePaths (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/content/res/
DResourcesManagerTest.java378 String[] resourcePaths = appInfo.getAllApkPaths(); in testExistingResourcesAfterResourcePathsRegistration() local
379 resourcePaths = removeDuplicates(resourcePaths); in testExistingResourcesAfterResourcePathsRegistration()
381 assertTrue(allResourcePathsLoaded(resourcePaths, loadedAssets)); in testExistingResourcesAfterResourcePathsRegistration()
409 String[] resourcePaths = appInfo.getAllApkPaths(); in testNewResourcesAfterResourcePathsRegistration() local
410 resourcePaths = removeDuplicates(resourcePaths); in testNewResourcesAfterResourcePathsRegistration()
412 assertTrue(allResourcePathsLoaded(resourcePaths, loadedAssets)); in testNewResourcesAfterResourcePathsRegistration()
445 String[] resourcePaths = appInfo.getAllApkPaths(); in testExistingResourcesCreatedByConstructorAfterResourcePathsRegistration() local
446 resourcePaths = removeDuplicates(resourcePaths); in testExistingResourcesCreatedByConstructorAfterResourcePathsRegistration()
448 assertTrue(allResourcePathsLoaded(resourcePaths, loadedAssets)); in testExistingResourcesCreatedByConstructorAfterResourcePathsRegistration()
484 String[] resourcePaths = appInfo.getAllApkPaths(); in testNewResourcesWithOutdatedImplAfterResourcePathsRegistration() local
[all …]
/frameworks/base/tests/utils/hostutils/src/com/android/internal/util/test/
DSystemPreparer.java144 public SystemPreparer stageMultiplePackages(String[] resourcePaths, String[] packageNames) in stageMultiplePackages() argument
146 assertEquals(resourcePaths.length, packageNames.length); in stageMultiplePackages()
148 final String[] adbCommandLine = new String[resourcePaths.length + 2]; in stageMultiplePackages()
151 for (int i = 0; i < resourcePaths.length; i++) { in stageMultiplePackages()
152 final File tmpFile = copyResourceToTemp(resourcePaths[i]); in stageMultiplePackages()