Home
last modified time | relevance | path

Searched refs:rootDir (Results 1 – 14 of 14) sorted by relevance

/frameworks/support/
Dsettings.gradle2 project(':support-annotations').projectDir = new File(rootDir, 'annotations')
5 project(':support-v4').projectDir = new File(rootDir, 'v4')
8 project(':support-appcompat-v7').projectDir = new File(rootDir, 'v7/appcompat')
11 project(':support-gridlayout-v7').projectDir = new File(rootDir, 'v7/gridlayout')
14 project(':support-mediarouter-v7').projectDir = new File(rootDir, 'v7/mediarouter')
17 project(':support-palette-v7').projectDir = new File(rootDir, 'v7/palette')
20 project(':support-recyclerview-v7').projectDir = new File(rootDir, 'v7/recyclerview')
23 project(':support-cardview-v7').projectDir = new File(rootDir, 'v7/cardview')
26 project(':support-v13').projectDir = new File(rootDir, 'v13')
29 project(':support-leanback-v17').projectDir = new File(rootDir, 'v17/leanback')
Dbuild.gradle59 from "$rootDir/../../prebuilts/maven_repo/android"
162 files("$rootDir/../../prebuilts/sdk/$apiLevel/android.jar")
/frameworks/base/include/androidfw/
DAssetManager.h252 String8 createPathNameLocked(const asset_path& path, const char* rootDir);
262 const asset_path& path, const char* rootDir, const char* dirName);
265 const asset_path& path, const char* rootDir, const char* dirName);
/frameworks/base/packages/SharedStorageBackup/src/com/android/sharedstoragebackup/
DObbBackupService.java128 ArrayList<File> allFileContents(File rootDir) {
132 dirs.add(rootDir);
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
DColladaScene.java74 String rootDir = names[0].substring(0, names[0].lastIndexOf('/') + 1); in doInBackground() local
93 sceneSource.init(is, rootDir); in doInBackground()
DColladaParser.java74 public void init(InputStream is, String rootDir) { in init() argument
79 mRootDir = rootDir; in init()
/frameworks/base/libs/androidfw/
DAssetManager.cpp1076 String8 AssetManager::createPathNameLocked(const asset_path& ap, const char* rootDir) in createPathNameLocked() argument
1079 if (rootDir != NULL) path.appendPath(rootDir); in createPathNameLocked()
1308 const asset_path& ap, const char* rootDir, const char* dirName) in scanAndMergeDirLocked() argument
1326 path = createPathNameLocked(ap, rootDir); in scanAndMergeDirLocked()
1371 path = createPathNameLocked(ap, rootDir); in scanAndMergeDirLocked()
1496 const asset_path& ap, const char* rootDir, const char* baseDirName) in scanAndMergeZipLocked() argument
1513 if (rootDir != NULL) dirName = rootDir; in scanAndMergeZipLocked()
/frameworks/multidex/
Dbuild.gradle54 from "$rootDir/../../prebuilts/maven_repo/android"
157 files("$rootDir/../../prebuilts/sdk/$apiLevel/android.jar")
/frameworks/base/core/java/android/app/backup/
DBackupAgent.java283 String rootDir = new File(appInfo.dataDir).getCanonicalPath(); in onFullBackup() local
304 fullBackupFileTree(packageName, FullBackup.ROOT_TREE_TOKEN, rootDir, filterSet, data); in onFullBackup()
307 filterSet.add(rootDir); in onFullBackup()
/frameworks/multidex/gradle/wrapper/
Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/ ...
/frameworks/support/gradle/wrapper/
Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/ ...
/frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/gradle/wrapper/
Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/ ...
/frameworks/base/core/jni/
DAndroidRuntime.cpp970 const char* rootDir = getenv("ANDROID_ROOT"); in start() local
971 if (rootDir == NULL) { in start()
972 rootDir = "/system"; in start()
977 setenv("ANDROID_ROOT", rootDir, 1); in start()
/frameworks/base/services/core/java/com/android/server/pm/
DPackageManagerService.java6656 final File rootDir = new File(codeFile, LIB_DIR_NAME); in setBundledAppAbi() local
6660 has64BitLibs = (new File(rootDir, isa)).exists(); in setBundledAppAbi()
6667 has32BitLibs = (new File(rootDir, isa)).exists(); in setBundledAppAbi()