OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:targetDir
(Results
1 - 25
of
154
) sorted by null
1
2
3
4
5
6
7
/external/emma/core/java12/com/vladium/util/
Files.java
278
final File
targetDir
= target.getParentFile ();
279
if ((
targetDir
!= null) && !
targetDir
.equals (source.getParentFile ()))
280
targetDir
.mkdirs (); // TODO: clean this up on failure?
/libcore/tzdata/update/src/test/libcore/tzdata/update/
ConfigBundleTest.java
61
File
targetDir
= new File(dir, "target");
64
ConfigBundle.extractZipSafely(inputStream,
targetDir
, true /* makeWorldReadable */);
67
new File(
targetDir
, "leadingSlash"),
68
new File(
targetDir
, "absolute"),
69
new File(
targetDir
, "file"),
70
new File(
targetDir
, "subDir/subDir/subDir/file"));
72
new File(
targetDir
, "subDir/subDir2"),
73
new File(
targetDir
, "subDir3"));
94
File
targetDir
= new File(dir, "target");
98
ConfigBundle.extractZipSafely(inputStream,
targetDir
, true /* makeWorldReadable */)
[
all
...]
/external/icu/icu4c/source/tools/pkgdata/
pkgtypes.h
114
const char *
targetDir
; /* dir for packaged data to go */
/frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/
DefaultContainerService.java
328
final File
targetDir
= new File(newMountPath);
332
copyFile(pkg.baseCodePath,
targetDir
, "base.apk", isForwardLocked);
335
copyFile(pkg.splitCodePaths[i],
targetDir
,
341
final File libraryRoot = new File(
targetDir
, LIB_DIR_NAME);
395
private void copyFile(String sourcePath, File
targetDir
, String targetName,
398
final File targetFile = new File(
targetDir
, targetName);
408
final File publicTargetFile = new File(
targetDir
, publicTargetName);
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/
MakeCopy.java
208
File
targetDir
= new File(resTarget, layoutDir.getName());
210
File targetFile = new File(
targetDir
, layoutFile.getName());
/cts/hostsidetests/compilation/src/android/cts/compilation/
AdbRootDependentCompilationTest.java
241
String
targetDir
= location.getDirectory();
242
if (!mDevice.doesFileExist(
targetDir
)) {
246
String owner = executeAdbCommand(1, "shell", "stat", "-c", "%U:%g",
targetDir
)[0];