HomeSort by relevance Sort by last modified time
    Searched refs:File (Results 126 - 150 of 1913) sorted by null

1 2 3 4 56 7 8 91011>>

  /development/tools/idegen/src/com/android/idegen/
Module.java 5 * you may not use this file except in compliance with the License.
24 import java.io.File;
38 * All possible attributes for the make file.
47 private File imlFile;
49 private Set<File> allDependentImlFiles = Sets.newHashSet();
53 protected abstract File getDir();
55 protected abstract List<File> getIntermediatesDirs();
57 protected abstract ImmutableList<File> getSourceDirs();
58 protected abstract ImmutableList<File> getExcludeDirs();
59 public abstract File getRepoRoot()
    [all...]
StandardModule.java 5 * you may not use this file except in compliance with the License.
25 import java.io.File;
34 * Module constructed from a make file.
36 * TODO: read the make file and understand included source dirs in addition to searching
54 File makeFile;
55 File moduleRoot;
56 File repoRoot;
60 File intermediatesDir;
65 this(moduleName, new File(makeFile), false);
69 this(moduleName, new File(makeFile), searchForSrc)
    [all...]
AggregatedModule.java 5 * you may not use this file except in compliance with the License.
25 import java.io.File;
51 // Create an iml file that contains all the srcs of modules.
58 protected File getDir() {
74 protected List<File> getIntermediatesDirs() {
75 List<File> result = Lists.newArrayList();
95 protected ImmutableList<File> getSourceDirs() {
96 ImmutableList.Builder<File> builder = ImmutableList.builder();
105 protected ImmutableList<File> getExcludeDirs() {
106 ImmutableList.Builder<File> builder = ImmutableList.builder()
    [all...]
  /cts/tools/cfassembler/src/dxconvext/util/
FileUtils.java 5 * you may not use this file except in compliance with the License.
19 import java.io.File;
24 * File I/O utilities.
35 * Reads the named file, translating {@link IOException} to a
38 * @param fileName non-null; name of the file to read
39 * @return non-null; contents of the file
42 File file = new File(fileName); local
43 return readFile(file);
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/util/
FileUtils.java 5 * you may not use this file except in compliance with the License.
19 import java.io.File;
24 * File I/O utilities.
35 * Reads the named file, translating {@link IOException} to a
38 * @param fileName {@code non-null;} name of the file to read
39 * @return {@code non-null;} contents of the file
42 File file = new File(fileName); local
43 return readFile(file);
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
ANTLRFileStream.cs 36 using File = System.IO.File;
39 * This is a char buffer stream that is loaded from a file
72 text = File.ReadAllText(fileName);
74 text = File.ReadAllText(fileName, encoding);
  /external/proguard/src/proguard/ant/
ProGuardTask.java 39 public void setConfiguration(File configurationFile) throws BuildException
102 public void setPrintseeds(File printSeeds)
114 public void setPrintusage(File printUsage)
150 public void setPrintmapping(File printMapping)
156 public void setApplymapping(File applyMapping)
162 public void setObfuscationdictionary(File obfuscationDictionary)
168 public void setClassobfuscationdictionary(File classObfuscationDictionary)
174 public void setPackageobfuscationdictionary(File packageObfuscationDictionary)
260 public void setPrintconfiguration(File printConfiguration)
266 public void setDump(File dump
    [all...]
  /external/robolectric/
update-downloads.rb 6 unless File.exists?(DOWNLOADS_FILE)
16 sha1 = Digest::SHA1.hexdigest File.read(f)
26 download_html += " <td class=\"size\">#{File.size(f) / 1024}k</td>\n"
27 download_html += " <td class=\"date\">#{File.mtime(f).strftime("%Y/%m/%d %H:%M:%S %Z")}</td>\n"
33 downloads_page = File.read(DOWNLOADS_FILE)
36 File.open(DOWNLOADS_FILE, 'w') {|f| f.write(downloads_page)}
  /external/webkit/Tools/Scripts/
run-chromium-webkit-unit-tests 31 use File::Spec;
37 my $sourceRootDir = File::Spec->catfile($FindBin::Bin, "../..");
run-jsc 33 use File::Spec;
48 $jsc .= " 2> " . File::Spec->devnull() unless $verbose;
run-webkit-tests 30 # This file is a temporary hack.
44 use File::Spec;
83 my $harnessPath = File::Spec->catfile(relativeScriptsDir(), $harnessName);
update-webkit-localizable-strings 32 use File::Basename;
  /frameworks/base/core/java/com/android/internal/http/multipart/
FilePartSource.java 9 * contributor license agreements. See the NOTICE file distributed with
11 * The ASF licenses this file to You under the Apache License, Version 2.0
12 * (the "License"); you may not use this file except in compliance with
34 import java.io.File;
41 * A PartSource that reads from a File.
51 /** File part file. */
52 private File file = null; field in class:FilePartSource
54 /** File part file name. *
    [all...]
  /frameworks/ex/carousel/java/com/android/ex/carousel/
CarouselViewUtilities.java 3 import java.io.File;
16 * Debug utility to write the given bitmap to a file.
20 * @param filename the name of the file to write
24 File path = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES);
25 File file = new File(path, filename); local
29 OutputStream os = new FileOutputStream(file);
30 MediaScannerConnection.scanFile(context, new String[] { file.toString() }, null, null);
34 Log.w("ExternalStorage", "Error writing " + file, e)
    [all...]
  /packages/apps/Email/src/org/apache/commons/io/filefilter/
AgeFileFilter.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;
33 * File dir = new File(".");
54 * Constructs a new age file filter for files equal to or older than
64 * Constructs a new age file filter for files on any one side
77 * Constructs a new age file filter for files older than (at or before)
87 * Constructs a new age file filter for files on any one side
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/
MonitorPlugin.java 5 * you may not use this file except in compliance with the License.
25 import java.io.File;
31 private File mSdkFolder;
58 public void setSdkFolder(File sdkFolder) {
62 public File getSdkFolder() {
  /cts/tests/tests/holo/src/android/holo/cts/
BitmapAssets.java 5 * you may not use this file except in compliance with the License.
30 import java.io.File;
57 File dir = getBitmapDir(type);
59 File[] files = dir.listFiles();
72 public static File getBitmapDir(int type) {
88 File file = new File(Environment.getExternalStorageDirectory(), "cts-holo-assets"); local
89 return new File(file, subDir)
127 File file = getBitmapPath(bitmapName, type); local
    [all...]
  /external/guava/guava/src/com/google/common/io/
Files.java 5 * you may not use this file except in compliance with the License.
29 import java.io.File;
65 * Returns a buffered reader that reads from a file using the given
68 * @param file the file to read from
69 * @param charset the character set used when writing the file
72 public static BufferedReader newReader(File file, Charset charset)
75 new InputStreamReader(new FileInputStream(file), charset));
79 * Returns a buffered writer that writes to a file using the give
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/util/
ContactPhotoUtils.java 5 * you may not use this file except in compliance with the License.
29 import java.io.File;
48 * Generate a new, unique file to be used as an out-of-band communication
50 * This file will be passed to other activities (such as the gallery/camera/cropper/etc.),
53 public static File generateTempPhotoFile(Context context) {
54 return new File(pathForCroppedPhoto(context, generateTempPhotoFileName()));
58 final File dir = new File(context.getExternalCacheDir() + "/tmp");
60 final File f = new File(dir, fileName)
    [all...]
  /cts/tools/cts-native-scanner/src/com/android/cts/nativescanner/
TestScanner.java 5 * you may not use this file except in compliance with the License.
19 import java.io.File;
32 * It looks for test declarations and outputs a file following this format:
46 private final File mSourceDir;
50 TestScanner(File sourceDir, String testSuite) {
61 private void scanDir(File dir, List<String> testNames) throws FileNotFoundException {
63 File[] files = dir.listFiles(new FilenameFilter() {
65 public boolean accept(File dir, String filename) {
67 || new File(dir, filename).isDirectory();
72 File file = files[i] local
    [all...]
  /external/chromium/net/disk_cache/
mapped_file.h 3 // found in the LICENSE file.
12 #include "net/disk_cache/file.h"
19 // This class implements a memory mapped file used to access block-files. The
23 class MappedFile : public File {
25 MappedFile() : File(true), init_(false) {}
27 // Performs object initialization. name is the file to use, and size is the
28 // ammount of data to memory map from th efile. If size is 0, the whole file
36 // Loads or stores a given block from the backing file (synchronously).
  /external/webkit/Source/WebCore/fileapi/
FileEntrySync.idl 38 File file() raises (FileException);
  /external/webkit/Source/WebCore/
make-export-file-generator 50 File.open(output_file, "w") do |output|
51 File.open(input_file) do |input|
  /frameworks/base/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/
A3DSelector.java 5 * you may not use this file except in compliance with the License.
19 import java.io.File;
38 File[] mCurrentSubList;
39 File mCurrentFile;
42 public boolean accept(File file) {
43 if (file.isDirectory()) {
46 return file.getName().endsWith(".a3d");
50 private void populateList(File file) {
    [all...]
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/testapp/
FileSelector.java 5 * you may not use this file except in compliance with the License.
19 import java.io.File;
38 File[] mCurrentSubList;
39 File mCurrentFile;
42 public boolean accept(File file) {
43 if (file.isDirectory()) {
46 return file.getName().endsWith(".dae");
50 private void populateList(File file) {
    [all...]

Completed in 537 milliseconds

1 2 3 4 56 7 8 91011>>