HomeSort by relevance Sort by last modified time
    Searched refs:File (Results 1 - 25 of 5204) 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...]
  /external/jacoco/jacoco-maven-plugin/src/org/jacoco/maven/
AgentITMojo.java 15 import java.io.File;
35 * Path to the output file for execution data.
40 private File destFile;
46 File getDestFile() {
AgentMojo.java 14 import java.io.File;
51 * written to a file when the process terminates.
64 * Path to the output file for execution data.
69 private File destFile;
75 File getDestFile() {
  /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(':support-multidex').projectDir = new File(rootDir, 'library')
21 project(':support-multidex-instrumentation').projectDir = new File(rootDir, 'instrumentation')
  /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-customize-agent/
verify.bsh 15 String agentOptions = "destfile=" + basedir + File.separator + "target" + File.separator + "coverage.exec"
22 + ",output=file"
25 + ",classdumpdir=" + basedir + File.separator + "target" + File.separator + "classdumps";
29 String buildLog = FileUtils.fileRead( new File( basedir, "build.log" ) );
34 File file = new File( basedir, "target/coverage.exec" );
35 if ( !file.isFile()
    [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" );
  /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];
  /external/vogar/src/vogar/
FileCache.java 5 * you may not use this file except in compliance with the License.
19 import java.io.File;
22 * Interacts with a file system on behalf of a cache.
28 void copyToCache(File source, String key);
30 void copyFromCache(String key, File destination);
  /libcore/benchmarks/src/benchmarks/regression/
FileBenchmark.java 5 * you may not use this file except in compliance with the License.
19 import java.io.File;
24 new File("/foo", "/");
30 new File("/foo//bar//baz//bag", "/baz/");

Completed in 1425 milliseconds

1 2 3 4 5 6 7 8 91011>>