HomeSort by relevance Sort by last modified time
    Searched refs:File (Results 1 - 25 of 5761) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/smali/util/src/test/java/org/jf/util/
PathUtilTest.java 33 import java.io.File;
39 File[] roots = File.listRoots();
42 File basePath = new File(roots[0] + "some" + File.separatorChar + "dir" + File.separatorChar + "test.txt");
43 File relativePath = new File(roots[1] + "some" + File.separatorChar + "dir" + File.separatorChar + "test.txt")
    [all...]
  /external/google-breakpad/src/processor/
pathname_stripper_unittest.cc 48 ASSERT_EQ(PathnameStripper::File("/dir/file"), "file");
49 ASSERT_EQ(PathnameStripper::File("\\dir\\file"), "file");
50 ASSERT_EQ(PathnameStripper::File("/dir\\file"), "file");
51 ASSERT_EQ(PathnameStripper::File("\\dir/file"), "file")
    [all...]
  /frameworks/base/rs/java/android/renderscript/
RenderScriptCacheDir.java 5 * you may not use this file except in compliance with the License.
19 import java.io.File;
28 * renderscript object file cache.
33 public static void setupDiskCache(File cacheDir) {
38 static File mCacheDir;
  /tools/tradefederation/core/src/com/android/tradefed/testtype/
ITestFileFilterReceiver.java 5 * you may not use this file except in compliance with the License.
18 import java.io.File;
21 * A runner that can receive a file specifying which tests to run and/or not to run.
25 * Either file should contain a line separated list of test names, formatted as filters.</p>
34 * Sets the test file of includes. Does not ensure that testFile exists or is a file.
36 void setIncludeTestFile(File testFile);
39 * Sets the test file of excludes. Does not ensure that testFile exists or is a file.
41 void setExcludeTestFile(File testFile)
    [all...]
  /external/jacoco/jacoco-maven-plugin.test/it/it-site-failsafe/
verify.bsh 15 String projectReportsPage = FileUtils.fileRead( new File( basedir, "target/site/project-reports.html" ) );
20 File htmlReportFile = new File( basedir, "target/site/jacoco/index.html" );
25 File xmlReportFile = new File( basedir, "target/site/jacoco/jacoco.xml" );
30 File csvReportFile = new File( basedir, "target/site/jacoco/jacoco.csv" );
39 File htmlReportFile = new File( basedir, "target/site/jacoco-it/index.html" );
44 File xmlReportFile = new File( basedir, "target/site/jacoco-it/jacoco.xml" )
    [all...]
  /external/jcommander/src/main/java/com/beust/jcommander/converters/
FileConverter.java 3 * See the notice.md file distributed with this work for additional
7 * you may not use this file except in compliance with the License.
23 import java.io.File;
26 * Convert a string into a file.
30 public class FileConverter implements IStringConverter<File> {
32 public File convert(String value) {
33 return new File(value);
  /frameworks/multidex/
settings.gradle 5 * you may not use this file except in compliance with the License.
18 project(':multidex').projectDir = new File(rootDir, 'library')
21 project(':multidex-instrumentation').projectDir = new File(rootDir, 'instrumentation')
  /external/r8/src/test/examples/multidex002/fakelibrary/
ZipUtil.java 1 // Copyright (c) 2017, the R8 project authors. Please see the AUTHORS file
3 // BSD-style license that can be found in the LICENSE file.
7 import java.io.File;
16 static long getZipCrc(File apk) {
  /external/r8/src/test/examples/multidex003/fakelibrary/
ZipUtil.java 1 // Copyright (c) 2017, the R8 project authors. Please see the AUTHORS file
3 // BSD-style license that can be found in the LICENSE file.
7 import java.io.File;
16 static long getZipCrc(File apk) {
  /external/r8/src/test/examplesAndroidO/multidex004/fakelibrary/
ZipUtil.java 1 // Copyright (c) 2017, the R8 project authors. Please see the AUTHORS file
3 // BSD-style license that can be found in the LICENSE file.
7 import java.io.File;
16 static long getZipCrc(File apk) {
  /art/runtime/
os.h 5 * you may not use this file except in compliance with the License.
26 typedef ::unix_file::FdFile File;
32 // Open an existing file with read only access.
33 static File* OpenFileForReading(const char* name);
35 // Open an existing file with read/write access.
36 static File* OpenFileReadWrite(const char* name);
38 // Create an empty file with read/write access. This is a *new* file, that is, if the file
40 static File* CreateEmptyFile(const char* name)
    [all...]
  /external/llvm/include/llvm/DebugInfo/PDB/Raw/
DirectoryStreamData.h 5 // This file is distributed under the University of Illinois Open Source
24 DirectoryStreamData(const PDBFile &File) : File(File) {}
26 virtual uint32_t getLength() { return File.getNumDirectoryBytes(); }
28 return File.getDirectoryBlockArray();
32 const PDBFile &File;
  /tools/tradefederation/core/src/com/android/tradefed/build/
ISdkBuildInfo.java 5 * you may not use this file except in compliance with the License.
18 import java.io.File;
28 public File getSdkDir();
33 public File getTestsDir();
38 public void setTestsDir(File testsDir);
45 public void setSdkDir(File sdkDir);
54 public void setSdkDir(File sdkDir, boolean deleteParent);
57 * Helper method to get the absolute file path to the 'android' tool in this sdk build.
59 * A valid path must be provided to {@link #setSdkDir(File)} before calling.
61 * @return the absolute file path to the android tool
    [all...]
  /external/jacoco/jacoco-maven-plugin.test/it/it-multi-module/
verify.bsh 15 String buildLog = FileUtils.fileRead( new File( basedir, "build.log" ) );
20 File dump2 = new File( basedir, "skip-child/target/jacoco.exec" );
29 File file = new File( basedir, "child/target/jacoco.exec" );
30 if ( !file.isFile() )
32 throw new FileNotFoundException( "Could not find generated dump: " + file );
35 File xmlReport = new File( basedir, "child/target/site/jacoco/jacoco.xml" )
    [all...]
  /external/jacoco/jacoco-maven-plugin.test/it/it-site/
verify.bsh 15 String projectReportsPage = FileUtils.fileRead( new File( basedir, "target/site/project-reports.html" ) );
20 File htmlReportFile = new File( basedir, "target/site/jacoco/index.html" );
25 File xmlReportFile = new File( basedir, "target/site/jacoco/jacoco.xml" );
30 File csvReportFile = new File( basedir, "target/site/jacoco/jacoco.csv" );
  /frameworks/support/app-toolkit/
settings.gradle 5 * you may not use this file except in compliance with the License.
17 // If you change this file, you should also change the settings gradle inside
23 supportRoot = new File(rootProject.projectDir, "..").getCanonicalFile()
31 project(':arch:runtime').projectDir = new File(supportRoot, "app-toolkit/runtime")
34 project(':arch:common').projectDir = new File(supportRoot, "app-toolkit/common")
37 project(':paging:common').projectDir = new File(supportRoot, "paging/common")
40 project(':paging:runtime').projectDir = new File(supportRoot, "paging/runtime")
43 project(':paging:integration-tests:testapp').projectDir = new File(supportRoot, "paging/integration-tests/testapp")
46 project(':arch:core-testing').projectDir = new File(supportRoot, "app-toolkit/core-testing")
49 project(':lifecycle:extensions').projectDir = new File(supportRoot, "lifecycle/extensions"
    [all...]
settings_support_lib.gradle 5 * you may not use this file except in compliance with the License.
17 // settings file to include support lib sources.
18 def supportRootDir = new File("../.")
21 project(':support-core-utils').projectDir = new File(supportRootDir, 'core-utils')
24 project(':support-fragment').projectDir = new File(supportRootDir, 'fragment')
27 project(':support-compat').projectDir = new File(supportRootDir, 'compat')
30 project(':support-annotations').projectDir = new File(supportRootDir, 'annotations')
33 project(':support-core-ui').projectDir = new File(supportRootDir, 'core-ui')
36 project(':support-appcompat-v7').projectDir = new File(rootDir, 'v7/appcompat'
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/comparator/
DefaultFileComparator.java 3 * contributor license agreements. See the NOTICE file distributed with
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
19 import java.io.File;
24 * Compare two files using the <b>default</b> {@link File#compareTo(File)} method.
27 * by using the default file comparison.
32 * List&lt;File&gt; list = ...
39 * File[] array = ...
47 public class DefaultFileComparator implements Comparator<File>, Serializable
    [all...]
LastModifiedFileComparator.java 3 * contributor license agreements. See the NOTICE file distributed with
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
19 import java.io.File;
25 * (see {@link File#lastModified()}).
33 * List&lt;File&gt; list = ...
40 * File[] array = ...
48 public class LastModifiedFileComparator implements Comparator<File>, Serializable {
51 public static final Comparator<File> LASTMODIFIED_COMPARATOR = new LastModifiedFileComparator();
54 public static final Comparator<File> LASTMODIFIED_REVERSE = new ReverseComparator<File>(LASTMODIFIED_COMPARATOR)
    [all...]
  /external/llvm/lib/DebugInfo/PDB/Raw/
IndexedStreamData.cpp 5 // This file is distributed under the University of Illinois Open Source
16 IndexedStreamData::IndexedStreamData(uint32_t StreamIdx, const IPDBFile &File)
17 : StreamIdx(StreamIdx), File(File) {}
20 return File.getStreamByteSize(StreamIdx);
24 return File.getStreamBlockList(StreamIdx);
  /external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/internal/
ProgressListener.java 27 import java.io.File;
33 public void onDirectory(File file);
35 public void onFileAddition(File file);
39 public void onFileScan(File file);
41 public void onInplaceConversion(File file);
  /external/slf4j/slf4j-migrator/src/test/java/org/slf4j/migrator/internal/
NopProgressListener.java 27 import java.io.File;
33 public void onDirectory(File file) {
39 public void onFileAddition(File file) {
42 public void onFileScan(File file) {
45 public void onInplaceConversion(File file) {
  /libcore/support/src/test/java/tests/support/
Support_DeleteOnExitTest.java 3 import java.io.File;
12 File file1 = new File(args[0]);
13 File file2 = new File(args[1]);
  /cts/libs/vogar-expect/src/vogar/commands/
Rm.java 5 * you may not use this file except in compliance with the License.
19 import java.io.File;
26 public void file(File file) { method in class:Rm
27 new Command("rm", "-f", file.getPath()).execute();
30 public void directoryTree(File directory) {
  /external/emma/core/java12/com/vladium/util/
IConstants.java 11 import java.io.File;
23 File [] EMPTY_FILE_ARRAY = new File [0];

Completed in 803 milliseconds

1 2 3 4 5 6 7 8 91011>>