HomeSort by relevance Sort by last modified time
    Searched full:file (Results 201 - 225 of 47728) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/zlib/contrib/vstudio/vc7/
zlibstat.vcproj 188 <File
190 </File>
191 <File
193 </File>
194 <File
196 </File>
197 <File
199 </File>
200 <File
202 </File>
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
JournaledFile.java 5 * you may not use this file except in compliance with the License.
19 import java.io.File;
23 File mReal;
24 File mTemp;
27 public JournaledFile(File real, File temp) {
32 /** Returns the file for you to read.
34 * Prefers the real file. If it doesn't exist, uses the temp one, and then copies
35 * it to the real one. If there is both a real file and a temp one, assumes that the
38 public File chooseForRead()
    [all...]
  /frameworks/base/media/java/android/media/
IMediaScannerService.aidl 5 * you may not use this file except in compliance with the License.
27 * Requests the media scanner to scan a file.
28 * @param path the path to the file to be scanned.
29 * @param mimeType an optional mimeType for the file.
30 * If mimeType is null, then the mimeType will be inferred from the file extension.
38 * Requests the media scanner to scan a file.
39 * @param path the path to the file to be scanned.
40 * @param mimeType an optional mimeType for the file.
41 * If mimeType is null, then the mimeType will be inferred from the file extension.
  /frameworks/base/tests/CoreTests/android/core/
FileTest.java 5 * you may not use this file except in compliance with the License.
21 import java.io.File;
25 * Checks creation and deletion of a file.
32 File file = File.createTempFile(String.valueOf(System.currentTimeMillis()), null, null); local
34 assertTrue(file.exists());
35 assertTrue(file.delete());
36 assertFalse(file.exists());
  /frameworks/base/tools/preload/
preload.iml 4 <output url="file:///tmp/preload" />
5 <output-test url="file:///tmp/preload" />
7 <content url="file://$MODULE_DIR$">
8 <sourceFolder url="file://$MODULE_DIR$" isTestSource="false" />
  /packages/apps/Email/src/org/apache/commons/io/filefilter/
CanWriteFileFilter.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;
23 * This filter accepts <code>File</code>s that can be written to.
29 * File dir = new File(".");
41 * File dir = new File(".");
70 * Checks to see if the file can be written to.
    [all...]
HiddenFileFilter.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;
23 * This filter accepts <code>File</code>s that are hidden.
29 * File dir = new File(".");
41 * File dir = new File(".");
66 * Checks to see if the file is hidden.
    [all...]
NotFileFilter.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;
36 * Constructs a new file filter that NOTs the result of another filters.
51 * @param file the File to check
54 public boolean accept(File file) {
55 return ! filter.accept(file);
    [all...]
DelegateFileFilter.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;
36 /** The File filter */
40 * Constructs a delegate file filter around an existing FilenameFilter.
53 * Constructs a delegate file filter around an existing FileFilter.
68 * @param file the file to check
71 public boolean accept(File file) {
    [all...]
  /external/proguard/src/proguard/io/
DirectoryWriter.java 36 private final File baseFile;
39 private File currentFile;
48 public DirectoryWriter(File baseFile,
60 // Should we close the current file?
67 File directory = getFile(dataEntry);
87 File file = getFile(dataEntry); local
89 // Should we close the current file?
92 !currentFile.equals(file))
101 File parentDirectory = file.getParentFile()
    [all...]
DirectoryPump.java 27 * This class can read a given file or directory, recursively, applying a given
34 private final File directory;
37 public DirectoryPump(File directory)
50 throw new IOException("No such file or directory");
61 private void readFiles(File file, DataEntryReader dataEntryReader)
64 // Pass the file data entry to the reader.
65 dataEntryReader.read(new FileDataEntry(directory, file));
67 if (file.isDirectory())
70 File[] files = file.listFiles()
    [all...]
  /sdk/apkbuilder/src/com/android/apkbuilder/internal/
ApkBuilderImpl.java 5 * you may not use this file except in compliance with the License.
27 import java.io.File;
55 * A File to be added to the APK archive.
56 * <p/>This includes the {@link File} representing the file and its path in the archive.
60 File file; field in class:ApkBuilderImpl.ApkFile
62 ApkFile(File file, String path) {
63 this.file = file
    [all...]
  /external/icu4c/common/
common.vcproj 399 <File
402 </File>
403 <File
442 </File>
443 <File
446 </File>
447 <File
450 </File>
451 <File
454 </File>
    [all...]
  /external/icu4c/i18n/
i18n.vcproj 405 <File
408 </File>
409 <File
448 </File>
449 <File
452 </File>
453 <File
492 </File>
493 <File
496 </File>
    [all...]
  /external/e2fsprogs/misc/
e2image.8.in 3 .\" This file may be copied under the terms of the GNU Public License.
7 e2image \- Save critical ext2/ext3 filesystem metadata to a file
14 .I image-file
20 to a file specified by
21 .IR image-file .
22 The image file may be examined by
30 e2fsck will be enhanced to be able to use the image file to help
34 .I image-file
41 creating a raw image file using the
43 option, since the process of creating a normal image file currentl
    [all...]
  /dalvik/libcore/support/src/test/java/tests/support/resource/
Support_Resources.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
22 import java.io.File;
46 File resources = createTempFolder();
59 url = new URL("file:/" + resPath + "/" + fileName);
67 public static File createTempFolder() {
69 File folder = null;
71 folder = File.createTempFile("hyts_resources", "", null);
82 public static File copyFile(File root, String folder, String file)
    [all...]
  /development/ide/intellij/moduleDefinitions/
testing.iml 5 <content url="file://$MODULE_DIR$/../../../device/dalvik/libcore">
6 <sourceFolder url="file://$MODULE_DIR$/../../../device/dalvik/libcore/android/src/main/java" isTestSource="false" />
7 <sourceFolder url="file://$MODULE_DIR$/../../../device/dalvik/libcore/annotation/src/main/java" isTestSource="false" />
8 <sourceFolder url="file://$MODULE_DIR$/../../../device/dalvik/libcore/apache-commons-logging/src/main/java" isTestSource="false" />
9 <sourceFolder url="file://$MODULE_DIR$/../../../device/dalvik/libcore/apache-commons/src/main/java" isTestSource="false" />
10 <sourceFolder url="file://$MODULE_DIR$/../../../device/dalvik/libcore/archive/src/main/java" isTestSource="false" />
11 <sourceFolder url="file://$MODULE_DIR$/../../../device/dalvik/libcore/auth/src/main/java" isTestSource="false" />
12 <sourceFolder url="file://$MODULE_DIR$/../../../device/dalvik/libcore/awt/src/main/java" isTestSource="false" />
13 <sourceFolder url="file://$MODULE_DIR$/../../../device/dalvik/libcore/beans/src/main/java" isTestSource="false" />
14 <sourceFolder url="file://$MODULE_DIR$/../../../device/dalvik/libcore/concurrent/src/main/java" isTestSource="false" /
    [all...]
  /external/bison/src/
files.h 0 /* File names and variables for bison,
4 This file is part of Bison, the GNU Compiler Compiler.
17 along with Bison; see the file COPYING. If not, write to
26 /* File name specified with -o for the output file, or 0 if no -o. */
29 /* File name for the parser (i.e., the one above, or its default.) */
35 /* File name prefix specified with -b, or 0 if no -b. */
41 /* File name specified for the output VCG graph. */
44 /* File name specified with --defines. */
47 /* Directory prefix of output file names. *
    [all...]
  /external/zlib/contrib/minizip/
unzip.h 6 This unzip package allow extract file from .ZIP file, compatible with PKZip 2.04g
100 /* unz_file_info contain information about a file in the zipfile */
107 uLong dosDate; /* last mod file date in Dos fmt 4 bytes */
113 uLong size_file_comment; /* file comment length 2 bytes */
116 uLong internal_fa; /* internal file attributes 2 bytes */
117 uLong external_fa; /* external file attributes 4 bytes */
137 Open a Zip file. path contain the full pathname (by example,
140 If the zipfile cannot be opened (file don't exist or in not valid), the
149 Open a Zip file, like unzOpen, but provide a set of file low level AP
    [all...]
  /frameworks/base/awt/javax/imageio/stream/
FileCacheImageInputStream.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
24 * which reads from its InputStream and uses a temporary file as a cache.
36 * The file.
38 private File file; field in class:FileCacheImageInputStream
47 * InputStream and using the specified File as its cache directory.
52 * the cache directory where the cache file will be created.
56 public FileCacheImageInputStream(InputStream stream, File cacheDir) throws IOException
    [all...]
  /packages/apps/Email/src/org/apache/commons/io/comparator/
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 = ...
59 * @param obj1 The first file to compare
60 * @param obj2 The second file to compare
61 * @return a negative value if the first file's lastmodified date/time
    [all...]
  /external/webkit/WebCore/html/
FormDataList.h 15 * along with this library; see the file COPYING.LIB. If not, write to
25 #include "File.h"
40 void appendFile(const String& key, PassRefPtr<File> file)
41 { appendString(key); m_list.append(file); }
47 Item(PassRefPtr<File> file) : m_file(file) { }
50 File* file() const { return m_file.get(); function in class:WebCore::FormDataList::Item
    [all...]
  /external/bluetooth/glib/docs/reference/glib/
glib-sections.txt 5 <FILE>types</FILE>
53 <FILE>limits</FILE>
108 <FILE>version</FILE>
125 <FILE>macros</FILE>
168 <FILE>type_conversion</FILE>
    [all...]
  /packages/apps/Email/src/org/apache/commons/io/
FileCleaner.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 * This utility creates a background thread to handle file deletion.
26 * Each file to be deleted is registered with a handler object.
27 * When the handler object is garbage collected, the file is deleted.
48 * Track the specified file, using the provided marker, deleting the file
52 * @param file the file to be tracked, not null
    [all...]
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/jar/
Handler.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
31 * Returns a connection to the jar file pointed by this <code>URL</code>
32 * in the file system
61 String file = url.getFile(); local
62 if (file == null) {
63 file = ""; //$NON-NLS-1$
70 if (spec.indexOf("!/") == -1 && (file.indexOf("!/") == -1)) { //$NON-NLS-1$ //$NON-NLS-2$
73 if (file.equals(""))
    [all...]

Completed in 149 milliseconds

1 2 3 4 5 6 7 891011>>