Searched refs:File (Results 1 - 25 of 699) sorted by relevance

1234567891011>>

/external/chromium/net/disk_cache/
H A Dfile.cc12 File::File() : init_(false), mixed_(false) {} function in class:disk_cache::File
14 File::File(bool mixed_mode) : init_(false), mixed_(mixed_mode) {} function in class:disk_cache::File
H A Dfile.h29 class File : public base::RefCounted<File> { class in namespace:disk_cache
30 friend class base::RefCounted<File>;
32 File();
34 explicit File(bool mixed_mode);
39 explicit File(base::PlatformFile file);
71 virtual ~File();
84 DISALLOW_COPY_AND_ASSIGN(File);
/external/smali/util/src/test/java/org/jf/util/
H A DPathUtilTest.java33 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
[all...]
/external/emma/core/java12/com/vladium/util/
H A DIConstants.java11 import java.io.File;
23 File [] EMPTY_FILE_ARRAY = new File [0];
H A DIPathEnumerator.java12 import java.io.File;
42 void handleDirStart (File pathDir, File dir); // not generated for path dirs themselves
43 void handleFile (File pathDir, File file);
44 void handleDirEnd (File pathDir, File dir);
50 void handleArchiveStart (File parentDir, File archive, Manifest manifest);
58 void handleArchiveEnd (File parentDi
[all...]
H A DFiles.java12 import java.io.File;
36 public static String [] readFileList (final File atfile)
88 public static File [] pathToFiles (final String [] path, final boolean canonical)
96 final String separators = ",".concat (File.pathSeparator);
112 _result.add (new File (pathname));
117 final File [] result = new File [_result.size ()];
125 * will return the absolute form of 'pathname' if File.getCanonicalPath() fails.
133 return new File (pathname).getCanonicalPath ();
137 return new File (pathnam
[all...]
/external/junit/src/org/junit/rules/
H A DTemporaryFolder.java3 import java.io.File;
20 * File createdFile= folder.newFile(&quot;myfile.txt&quot;);
21 * File createdFolder= folder.newFolder(&quot;subfolder&quot;);
28 private File folder;
51 public File newFile(String fileName) throws IOException {
52 File file= new File(getRoot(), fileName);
60 public File newFile() throws IOException {
61 return File.createTempFile("junit", null, folder);
67 public File newFolde
[all...]
/external/proguard/src/proguard/
H A DConfiguration.java23 import java.io.File;
100 public File printSeeds;
115 public File printUsage;
174 public File printMapping;
179 public File applyMapping;
184 public File obfuscationDictionary;
189 public File classObfuscationDictionary;
194 public File packageObfuscationDictionary;
314 public File printConfiguration;
320 public File dum
[all...]
/external/webkit/Source/WebCore/fileapi/
H A DFileCallback.idl36 boolean handleEvent(in File file);
H A DFile.h38 class File : public Blob { class in namespace:WebCore
40 static PassRefPtr<File> create(const String& path)
42 return adoptRef(new File(path));
46 static PassRefPtr<File> create(const String& path, const KURL& srcURL, const String& type)
48 return adoptRef(new File(path, srcURL, type));
52 static PassRefPtr<File> create(const String& relativePath, const String& path)
54 return adoptRef(new File(relativePath, path));
77 File(const String& path);
80 File(const String& path, const KURL& srcURL, const String& type);
83 File(cons
[all...]
H A DFile.cpp27 #include "File.h"
49 File::File(const String& path) function in class:WebCore::File
56 File::File(const String& path, const KURL& url, const String& type) function in class:WebCore::File
64 File::File(const String& relativePath, const String& path) function in class:WebCore::File
73 double File::lastModifiedDate() const
83 unsigned long long File::size() const
93 void File
[all...]
H A DFileList.cpp29 #include "File.h"
37 File* FileList::item(unsigned index) const
H A DFileList.idl33 File item(in [IsIndex] unsigned long index);
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DFileTest.java20 import java.io.File;
53 private static void deleteTempFolder(File dir) {
57 File f = new File(dir, files[i]);
69 if (File.separatorChar == path.charAt(path.length() - 1)) {
72 return path + File.separator;
76 private File tempDirectory;
82 tempDirectory = new File(addTrailingSlash(System.getProperty("java.io.tmpdir")) + "harmony-test-" + getClass().getSimpleName() + File.separator);
94 * @tests java.io.File#Fil
[all...]
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_DeleteOnExitTest.java20 import java.io.File;
26 File f1 = new File(args[i]);
/external/webkit/Source/WebKit2/Scripts/
H A Dgenerate-forwarding-headers.pl31 use File::Find;
32 use File::Basename;
33 use File::Path qw(mkpath);
34 use File::Spec::Functions;
36 my $srcRoot = realpath(File::Spec->catfile(dirname(abs_path($0)), "../.."));
60 find(\&collectFameworkHeaderPaths, File::Spec->catfile($srcRoot, $framework));
65 my $filePath = $File::Find::name;
79 my $filePath = $File::Find::name;
82 my $headerPath = substr($filePath, length(File::Spec->catfile($srcRoot, $framework)) + 1 );
88 my $targetDirectory = File
[all...]
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DAppDataDirGuesser.java19 import java.io.File;
27 public File guess() {
35 File[] results = guessPath(pathFromThisClassLoader);
59 File[] guessPath(String input) {
60 List<File> results = new ArrayList<File>();
74 File file = new File("/data/data/" + potential.substring(start, end) + "/cache");
79 return results.toArray(new File[results.size()]);
82 boolean isWriteableDirectory(File fil
[all...]
/external/proguard/src/proguard/io/
H A DFileDataEntry.java34 private final File directory;
35 private final File file;
39 public FileDataEntry(File directory,
40 File file)
55 .substring(directory.getPath().length() + File.separator.length())
56 .replace(File.separatorChar, ClassConstants.INTERNAL_PACKAGE_SEPARATOR);
H A DDirectoryPump.java34 private final File directory;
37 public DirectoryPump(File directory)
61 private void readFiles(File file, DataEntryReader dataEntryReader)
70 File[] files = file.listFiles();
/external/webkit/Tools/Scripts/
H A Dtest-webkitperl36 use File::Spec;
51 my $sourceRootDir = File::Spec->catfile($FindBin::Bin, "../..");
H A Droll-over-ChangeLogs31 scripts_directory = File.dirname(__FILE__)
32 base_directory = File.expand_path(ARGV[0] || `perl -I#{scripts_directory} -Mwebkitdirs -e 'print sourceDir();'`)
38 next unless File.stat(path).size > CHANGELOG_SIZE_THRESHOLD
43 File.open path, "w" do |file|
/external/smali/util/src/main/java/org/jf/util/
H A DPathUtil.java31 import java.io.File;
39 public static File getRelativeFile(File baseFile, File fileToRelativize) throws IOException {
44 return new File(getRelativeFileInternal(baseFile.getCanonicalFile(), fileToRelativize.getCanonicalFile()));
48 File baseFile = new File(basePath);
54 new File(pathToRelativize).getCanonicalFile());
57 static String getRelativeFileInternal(File canonicalBaseFile, File canonicalFileToRelativiz
[all...]
/external/clang/bindings/python/tests/cindex/
H A Dtest_file.py1 from clang.cindex import Index, File namespace
6 file = File.from_name(tu, "t.c")
9 assert repr(file) == "<File: t.c>"
/external/jmonkeyengine/engine/src/core/com/jme3/export/
H A DJmeExporter.java35 import java.io.File;
65 public boolean save(Savable object, File f) throws IOException;
/external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
H A DFileSystemResourceLoader.java21 import java.io.File;
34 private final File rootDir;
36 public FileSystemResourceLoader(File rootDir) {
41 this(new File(rootDir));
46 File file = new File(rootDir, name);
69 * modification hence the use of {@link File#getCanonicalFile()}, if possible.
73 File file = new File(rootDir, filename);

Completed in 546 milliseconds

1234567891011>>