HomeSort by relevance Sort by last modified time
    Searched full:parentfile (Results 1 - 25 of 230) sorted by null

1 2 3 4 5 6 7 8 910

  /sdk/
build.gradle 76 item("$rootProject.projectDir.parentFile/prebuilts/qemu-kernel/x86/pc-bios/bios.bin") {
80 item("$rootProject.projectDir.parentFile/prebuilts/qemu-kernel/x86/pc-bios/vgabios-cirrus.bin") {
85 item("$rootProject.projectDir.parentFile/prebuilts/tools/common/proguard/license.html") {
90 item("$rootProject.projectDir.parentFile/prebuilts/tools/common/proguard/proguard4.7/README") {
95 item("$rootProject.projectDir.parentFile/prebuilts/tools/common/proguard/proguard4.7/docs") {
100 item("$rootProject.projectDir.parentFile/prebuilts/tools/common/proguard/proguard4.7/examples") {
105 item("$rootProject.projectDir.parentFile/prebuilts/tools/common/proguard/proguard4.7/lib") {
110 item("$rootProject.projectDir.parentFile/prebuilts/tools/common/proguard/proguard4.7/src/proguard/ant/task.properties") {
117 item("$rootProject.projectDir.parentFile/prebuilts/tools/common/proguard/proguard4.7/bin/proguard.sh") {
122 item("$rootProject.projectDir.parentFile/prebuilts/tools/common/proguard/proguard4.7/bin/proguardgui.sh")
    [all...]
  /frameworks/support/buildSrc/src/main/kotlin/androidx/build/license/
CheckExternalDependencyLicensesTask.kt 66 "${it.parentFile.parentFile}"
87 return recurse(folder.parentFile)
94 return found ?: recurse(folder.parentFile)
  /packages/apps/Messaging/src/com/android/messaging/util/
FileUtil.java 146 File parentFile = child;
147 while (parentFile != null) {
148 if (base.equals(parentFile)) {
151 parentFile = parentFile.getParentFile();
  /external/robolectric-shadows/resources/src/main/java/org/robolectric/res/
FileFsFile.java 71 File parentFile = file.getParentFile();
72 return parentFile == null ? null : Fs.newFile(parentFile);
  /external/smali/util/src/main/java/org/jf/util/
PathUtil.java 105 File parentFile = file.getParentFile();
107 if (parentFile == null) {
113 file = parentFile;
  /frameworks/base/core/java/android/gesture/
GestureLibraries.java 69 final File parentFile = file.getParentFile();
70 if (!parentFile.exists()) {
71 if (!parentFile.mkdirs()) {
  /developers/samples/android/experimental/ndkSampleGen/
build.gradle 40 def inputPath = inputFileTree.getFiles().iterator().next().parentFile.absolutePath //sample.@path
204 current = current.parentFile;
215 current = current.parentFile;
227 current = current.parentFile;
  /external/robolectric-shadows/buildSrc/src/main/groovy/
ProvideBuildClasspathTask.groovy 29 File outDir = outFile.parentFile
  /external/testng/src/main/java/org/testng/xml/
Parser.java 166 File parentFile = currFile.getParentFile();
192 if (parentFile != null && new File(parentFile, path).exists()) {
193 canonicalPath = new File(parentFile, path).getCanonicalPath();
  /frameworks/base/services/tests/servicestests/src/com/android/server/devicepolicy/
TransferOwnershipMetadataManagerTest.java 117 File parentFile = canonicalFile.getParentFile();
119 Log.d(TAG, "testLoad: getCanonicalFile.getParentFile " + parentFile);
120 Log.d(TAG, "testLoad: parent mkdirs? " + parentFile.mkdirs());
121 Log.d(TAG, "testLoad: parent exists? " + parentFile.exists());
  /frameworks/support/buildSrc/src/main/kotlin/androidx/build/jdiff/
JDiffTask.kt 97 val oldApiXmlFileDir = oldApiXmlFile.parentFile
98 val newApiXmlFileDir = newApiXmlFile.parentFile
  /tools/metalava/src/main/java/com/android/tools/metalava/apilevels/
ApiGenerator.java 190 File parentFile = outFile.getParentFile();
191 if (!parentFile.exists()) {
192 boolean ok = parentFile.mkdirs();
194 System.err.println("Could not create directory " + parentFile);
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
FileUtils.java 136 File parentFile = file.getParentFile();
137 if (parentFile != null) {
138 parentFile.mkdirs();
  /developers/build/
build.gradle 73 current = current.parentFile;
84 current = current.parentFile;
90 current = current.parentFile;
  /frameworks/opt/setupwizard/tools/gradle/
dist-unit-tests.gradle 30 destinationDir = junitReport.destination.parentFile
95 destinationDir = jacocoTask.reports.html.destination.parentFile
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppUtility.java 421 File parentFile = child;
422 while (parentFile != null) {
423 if (base.equals(parentFile)) {
426 parentFile = parentFile.getParentFile();
  /development/tools/rmtypedefs/src/com/android/tools/rmtypedefs/
RmTypeDefs.java 182 File parentFile = file.getParentFile();
183 assert parentFile != null : file;
184 File container = new File(parentFile, fileName.substring(0, index) + ".class");
  /external/vogar/src/vogar/android/
AndroidSdk.java 215 File parentFile = lastKnownExists.getParentFile();
216 if (parentFile == null) {
219 lastKnownExists = parentFile;
  /external/clang/lib/CodeGen/
CoverageMappingGen.cpp 515 FileID ParentFile = SM.getFileID(LCA);
516 while (!isNestedIn(MostRecentLocation, ParentFile)) {
524 ParentFile = SM.getFileID(LCA);
533 if (!isNestedIn(Loc, ParentFile)) {
538 while (!SM.isInFileID(Loc, ParentFile)) {
555 while (isNestedIn(Loc, ParentFile)) {
    [all...]
  /developers/build/buildSrc/src/main/groovy/com/example/android/samples/build/
ApplyTemplates.groovy 142 outputFile.parentFile.mkdirs()
  /external/dagger2/compiler/src/test/java/dagger/internal/codegen/
MembersInjectionTest.java 50 JavaFileObject parentFile = JavaFileObjects.forSourceLines("test.Parent",
112 .that(ImmutableList.of(childFile, parentFile, componentFile))
128 JavaFileObject parentFile = JavaFileObjects.forSourceLines("test.Parent",
201 .that(ImmutableList.of(childFile, parentFile, depFile, componentFile))
    [all...]
  /packages/apps/Camera2/src/com/android/camera/
Storage.java 381 File parentFile = new File(filePath).getParentFile();
385 if (parentFile.exists()) {
386 return parentFile.isDirectory();
391 return parentFile.mkdirs();
  /tools/metalava/src/main/java/com/android/tools/metalava/
AnnotationStatistics.kt 245 reportFile.parentFile?.mkdirs()
274 reportFile.parentFile?.mkdirs()
Options.kt     [all...]
  /frameworks/support/buildSrc/src/main/kotlin/androidx/build/checkapi/
CheckApiTask.kt 226 outputFile.parentFile.mkdirs()

Completed in 675 milliseconds

1 2 3 4 5 6 7 8 910