HomeSort by relevance Sort by last modified time
    Searched full:file (Results 801 - 825 of 168772) sorted by null

<<31323334353637383940>>

  /libcore/luni/src/main/java/java/io/
FileReader.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
21 * A specialized {@link Reader} that reads from a file in the file system.
34 * Constructs a new FileReader on the given {@code file}.
36 * @param file
37 * a File to be opened for reading characters from.
39 * if {@code file} does not exist.
41 public FileReader(File file) throws FileNotFoundException
    [all...]
  /packages/apps/UnifiedEmail/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...]
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/include/gcc/darwin/4.2/
stdarg.h 1 /* This file is public domain. */
varargs.h 1 /* This file is public domain. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
lastlog.h 1 /* This header file is used in 4.3BSD to define `struct lastlog',
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
lastlog.h 1 /* This header file is used in 4.3BSD to define `struct lastlog',
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/sys/
locking.h 2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
13 /* All the headers include this file. */
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
syslimits.h 2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
6 /* syslimits.h stands for the system's own limits.h file.
  /prebuilts/misc/common/icu4j/
build.gradle 6 artifacts.add("default", file('icu4j.jar'))
  /prebuilts/misc/common/swig/include/2.0.11/guile/
std_except.i 2 // Note that the generic std_except.i file did not work
  /prebuilts/misc/common/swig/include/2.0.11/std/
std_vectora.i 2 // We keep this file only for backward compatibility, since std_vector.i
  /prebuilts/misc/common/ub-janktesthelper/
build.gradle 2 artifacts.add("default", file('ub-janktesthelper.jar'))
  /prebuilts/tools/common/m2/repository/org/easymock/easymock/3.3/
NOTICE 4 See LICENSE file for details.
  /sdk/testapps/gridlayoutTest/v7-gridlayout/src/
.readme 1 This hidden file is there to ensure there is an src folder.
  /system/core/libsysutils/
EventLogTags.logtags 1 # See system/core/logcat/event.logtags for a description of the format of this file.
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
ClassDataItem.java 5 * you may not use this file except in compliance with the License.
39 public void read(DexRandomAccessFile file) throws IOException {
40 file.getOffsetTracker().getNewOffsettable(file, this);
41 staticFieldsSize = file.readUleb128();
42 instanceFieldsSize = file.readUleb128();
43 directMethodsSize = file.readUleb128();
44 virtualMethodsSize = file.readUleb128();
48 (staticFields[i] = new EncodedField()).read(file);
52 (instanceFields[i] = new EncodedField()).read(file);
    [all...]
  /external/conscrypt/src/platform/java/org/conscrypt/
TrustedCertificateStore.java 5 * you may not use this file except in compliance with the License.
20 import java.io.File;
62 * efficient lookup operations for CAs again based on the file naming
76 * configuration in the system/core/rootdir/init.rc file. The
94 private static File defaultCaCertsSystemDir;
95 private static File defaultCaCertsAddedDir;
96 private static File defaultCaCertsDeletedDir;
101 defaultCaCertsSystemDir = new File(ANDROID_ROOT + "/etc/security/cacerts");
102 setDefaultUserDirectory(new File(ANDROID_DATA + "/misc/keychain"));
111 public static void setDefaultUserDirectory(File root)
136 File file = fileForAlias(alias); local
154 File file; local
218 File file = fileForAlias(alias); local
459 File file = file(dir, hash, index); local
501 private File file(File dir, String hash, int index) { method in class:TrustedCertificateStore
550 File file = fileForAlias(alias); local
595 File file = file(addedDir, hash, lastTombstoneIndex); local
    [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...]
  /frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
ExternalStorageProvider.java 5 * you may not use this file except in compliance with the License.
50 import java.io.File;
68 // docId format: root:path/to/file
85 public File visiblePath;
86 public File path;
100 private ArrayMap<File, DirectoryObserver> mObservers = new ArrayMap<>();
194 private String getDocIdForFile(File file) throws FileNotFoundException {
195 String path = file.getAbsolutePath();
229 private File getFileForDocId(String docId) throws FileNotFoundException
340 final File file = FileUtils.buildUniqueFile(parent, mimeType, displayName); local
382 final File file = getFileForDocId(docId); local
425 final File file = pending.removeFirst(); local
440 final File file = getFileForDocId(documentId); local
448 final File file = getFileForDocId(documentId); local
    [all...]
  /packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
HelpersTest.java 5 * you may not use this file except in compliance with the License.
26 import java.io.File;
43 final File expected = new File(getContext().getFilesDir(), "file.mp4");
45 "http://example.com/file.txt", null, null, null,
51 final File expected1 = new File(getContext().getFilesDir(), "file.txt");
52 final String actual1 = Helpers.generateSaveFile(getContext(), "http://example.com/file.txt"
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
SourceFileData.java 5 * you may not use this file except in compliance with the License.
28 * The source file itself is a implied dependency and is not meant to be in the dependency list.
59 * Returns the source file as an {@link IFile}
66 * Returns whether the given file is a dependency for this source file.
67 * <p/>Note that the source file itself is not tested against. Therefore if
68 * {@code file.equals(getSourceFile()} returns {@code true}, this method will return
70 * @param file the file to check against
71 * @return true if the given file is a dependency for this source file
    [all...]
  /ndk/sources/host-tools/make-3.81/
filedef.h 1 /* Definition of target file data structures for GNU Make.
5 This file is part of GNU Make.
16 GNU Make; see the file COPYING. If not, write to the Free Software
20 /* Structure that represents the info on one file
26 struct file struct
37 FILE_TIMESTAMP last_mtime; /* File's modtime, if already known. */
38 FILE_TIMESTAMP mtime_before_update; /* File's modtime before any updating
40 struct file *prev; /* Previous entry for same file name;
42 entries for the same file. *
    [all...]
  /cts/hostsidetests/appsecurity/test-apps/WriteExternalStorageApp/src/com/android/cts/writeexternalstorageapp/
WriteExternalStorageTest.java 5 * you may not use this file except in compliance with the License.
39 import java.io.File;
49 private static final File TEST_FILE = new File(
53 * Set of file paths that should all refer to the same location to verify
56 private static final File[] IDENTICAL_FILES = {
57 new File("/sdcard/caek"),
58 new File(System.getenv("EXTERNAL_STORAGE"), "caek"),
59 new File(Environment.getExternalStorageDirectory(), "caek"),
66 for (File file : IDENTICAL_FILES)
    [all...]

Completed in 633 milliseconds

<<31323334353637383940>>