/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;
|
/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);
|
/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/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<File> 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<File> 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/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) {
|
Mkdir.java | 5 * you may not use this file except in compliance with the License. 19 import java.io.File; 26 public void mkdirs(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/");
|
/packages/apps/Gallery2/src/com/android/gallery3d/util/ |
SaveVideoFileInfo.java | 5 * you may not use this file except in compliance with the License. 19 import java.io.File; 22 public File mFile = null; 25 public File mDirectory = null;
|
/external/libchrome/base/files/ |
file.cc | 3 // found in the LICENSE file. 5 #include "base/files/file.h" 14 File::Info::Info() 20 File::Info::~Info() { 23 File::File() 30 File::File(const FilePath& path, uint32_t flags) 36 File::File(PlatformFile platform_file [all...] |
/cts/tools/vm-tests-tf/src/util/build/ |
SourceBuildStep.java | 5 * you may not use this file except in compliance with the License. 19 import java.io.File; 23 SourceBuildStep(File destFile) {
|
/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/input/ |
InputFileGenerator.java | 5 * you may not use this file except in compliance with the License. 18 import java.io.File; 24 Iterable<? extends File> generate();
|