HomeSort by relevance Sort by last modified time
    Searched refs:file (Results 176 - 200 of 27862) sorted by null

1 2 3 4 5 6 78 91011>>

  /libcore/ojluni/src/main/java/java/nio/file/attribute/
FileAttributeView.java 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
26 package java.nio.file.attribute;
30 * values associated with a file in a filesystem. This interface is extended or
31 * implemented by specific file attribute views that define methods to read
32 * and/or update the attributes of a file.
36 * @see java.nio.file.Files#getFileAttributeView(Path,Class,java.nio.file.LinkOption[]
    [all...]
FileStoreAttributeView.java 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
26 package java.nio.file.attribute;
30 * a {@link java.nio.file.FileStore}.
GroupPrincipal.java 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
26 package java.nio.file.attribute;
30 * determine access rights to objects in a file system. The exact definition of
  /packages/apps/DocumentsUI/src/com/android/documentsui/base/
Files.java 5 * you may not use this file except in compliance with the License.
19 import java.io.File;
22 * Utility class for working with {@link File} instances.
28 public static void deleteRecursively(File file) {
29 if (file.isDirectory()) {
30 for (File child : file.listFiles()) {
34 file.delete();
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v4/content/
sparse_table_dict_content.cpp 5 * you may not use this file except in compliance with the License.
27 bool SparseTableDictContent::flush(FILE *const file) const {
28 if (!DictFileWritingUtils::writeBufferToFileTail(file, &mExpandableLookupTableBuffer)) {
31 if (!DictFileWritingUtils::writeBufferToFileTail(file, &mExpandableAddressTableBuffer)) {
34 if (!DictFileWritingUtils::writeBufferToFileTail(file, &mExpandableContentBuffer)) {
  /prebuilts/go/darwin-x86/src/go/build/testdata/other/
main.go 6 "./file"
10 file.F()
  /prebuilts/go/linux-x86/src/go/build/testdata/other/
main.go 6 "./file"
10 file.F()
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
cp0-names.s 1 # source file to test objdump's disassembly using various styles of
cp0sel-names.s 1 # source file to test objdump's disassembly using various styles of
cp1-names.s 1 # source file to test objdump's disassembly using various styles of
fpr-names.s 1 # source file to test objdump's disassembly using various styles of
gpr-names.s 1 # source file to test objdump's disassembly using various styles of
hwr-names.s 1 # source file to test objdump's disassembly using various styles of
xlr-ext.s 1 # Source file used to test XLR's assembler instructions
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
xxci.py 22 for file in os.listdir(os.curdir):
23 if not skipfile(file):
24 list.append((getmtime(file), file))
31 for mtime, file in list: args.append(file)
34 def getmtime(file):
36 st = os.stat(file)
60 def skipfile(file):
62 if fnmatch.fnmatch(file, p): return 1
    [all...]
  /external/curl/tests/
directories.pm 10 # This software is licensed as described in the file COPYING, which
16 # furnished to do so, under the terms of the COPYING file.
24 'content' => "This file should have permissions 444\n",
32 'content' => "This file should have permissions 666\n",
40 'content' => "This file should have permissions 777\n",
49 'content' => "This file should have permissions 001\n",
58 'content' => "This file should have permissions 110\n",
66 'name' => 'link -> file.txt',
74 'name' => 'link_absolute -> /data/ftp/file.txt',
149 'name' => "file.txt"
    [all...]
  /external/linux-kselftest/tools/testing/selftests/rcutorture/bin/
parse-torture.sh 4 # The "file" is a pathname on the local system, and "title" is
7 # The file must contain torture output, but can be interspersed
10 # Usage: parse-torture.sh file title
31 file="$1"
38 # check for presence of torture output file.
40 if test -f "$file" -a -r "$file"
44 echo $title unreadable torture output file: $file
50 if grep -q FAILURE $file || grep -q -e '-torture.*!!!' $fil
    [all...]
  /external/syslinux/gpxe/src/core/
posix_io.c 30 /** @file
39 /** An open file */
45 /** File descriptor */
56 /** File size */
66 * Free open file
71 struct posix_file *file = local
76 list_for_each_entry_safe ( iobuf, tmp, &file->data, list ) {
80 free ( file );
84 * Terminate file data transfer
86 * @v file POSIX fil
102 struct posix_file *file = local
120 struct posix_file *file = local
156 struct posix_file *file; local
188 struct posix_file *file; local
242 struct posix_file *file; local
278 struct posix_file *file; local
324 struct posix_file *file; local
341 struct posix_file *file; local
    [all...]
  /external/syslinux/core/fs/
readdir.c 14 struct file *file; local
20 file = handle_to_file(rv);
22 if (file->inode->mode != DT_DIR) {
23 _close_file(file);
27 return (DIR *)file;
36 struct file *dd_dir = (struct file *)dir;
53 struct file *dd_dir = (struct file *)dir
    [all...]
  /prebuilts/go/darwin-x86/misc/cgo/errors/
test.bash 5 # license that can be found in the LICENSE file.
8 file=$1
9 line=$(grep -n 'ERROR HERE' $file | sed 's/:.*//')
11 echo 1>&2 misc/cgo/errors/test.bash: BUG: cannot find ERROR HERE in $file
14 expect $file $file:$line:
18 file=$1
20 if go build $file >errs 2>&1; then
21 echo 1>&2 misc/cgo/errors/test.bash: BUG: expected cgo to fail on $file but it succeeded
25 echo 1>&2 misc/cgo/errors/test.bash: BUG: expected error output for $file but saw non
    [all...]
  /prebuilts/go/linux-x86/misc/cgo/errors/
test.bash 5 # license that can be found in the LICENSE file.
8 file=$1
9 line=$(grep -n 'ERROR HERE' $file | sed 's/:.*//')
11 echo 1>&2 misc/cgo/errors/test.bash: BUG: cannot find ERROR HERE in $file
14 expect $file $file:$line:
18 file=$1
20 if go build $file >errs 2>&1; then
21 echo 1>&2 misc/cgo/errors/test.bash: BUG: expected cgo to fail on $file but it succeeded
25 echo 1>&2 misc/cgo/errors/test.bash: BUG: expected error output for $file but saw non
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
remove.c 1 /** @file
57 remove(const char *file)
61 _DIAGASSERT(file != NULL);
63 if (lstat(file, &sb) < 0)
67 * The file system may prohibit using unlink(2) on directories,
71 return (rmdir(file));
73 return (unlink(file));
  /external/archive-patcher/shared/src/main/java/com/google/archivepatcher/shared/
RandomAccessFileInputStreamFactory.java 4 // you may not use this file except in compliance with the License.
17 import java.io.File;
28 * Argument for {@link RandomAccessFileInputStream#RandomAccessFileInputStream(File, long, long)}.
30 private final File file; field in class:RandomAccessFileInputStreamFactory
33 * Argument for {@link RandomAccessFileInputStream#RandomAccessFileInputStream(File, long, long)}.
38 * Argument for {@link RandomAccessFileInputStream#RandomAccessFileInputStream(File, long, long)}.
45 * @param file the file to use in {@link #newStream()}
49 public RandomAccessFileInputStreamFactory(File file, long rangeOffset, long rangeLength)
    [all...]
  /external/pcre/dist2/
Detrail 6 # This subroutine does the work for one file.
9 my($file) = $_[0];
11 open(IN, "$file") || die "Can't open $file for input";
24 open(OUT, ">$file") || die "Can't open $file for output";
  /external/swiftshader/src/OpenGL/compiler/preprocessor/
SourceLocation.h 4 // you may not use this file except in compliance with the License.
23 SourceLocation() : file(0), line(0) { }
24 SourceLocation(int f, int l) : file(f), line(l) { }
28 return (file == other.file) && (line == other.line);
31 int file; member in struct:pp::SourceLocation

Completed in 2684 milliseconds

1 2 3 4 5 6 78 91011>>