HomeSort by relevance Sort by last modified time
    Searched refs:file (Results 76 - 100 of 31893) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/ltp/testcases/kernel/fs/racer/
fs_racer_file_concat.sh 26 cat $DIR/$file >> $DIR/$new_file
27 cat $DIR/$file/$file/$file >> $DIR/$new_file
32 file=$(($RANDOM%$MAX))
  /external/vogar/src/vogar/
RetrievedFilesFilter.java 5 * you may not use this file except in compliance with the License.
19 import java.io.File;
26 @Override public boolean accept(File file) {
27 if (file.getName().equals("prefs.xml")) {
30 if (file.getName().endsWith(".xml")
31 || file.getName().equals("caliper-results")
32 || file.getName().endsWith(".json")) {
  /libcore/ojluni/src/main/java/java/nio/file/
AccessDeniedException.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;
29 * Checked exception thrown when a file system operation is denied, typically
30 * due to a file permission or other access check.
35 * access to a file is denied.
48 * @param file
49 * a string identifying the file or {@code null} if not know
    [all...]
FileAlreadyExistsException.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;
29 * Checked exception thrown when an attempt is made to create a file or
30 * directory and a file of that name already exists.
43 * @param file
44 * a string identifying the file or {@code null} if not known
46 public FileAlreadyExistsException(String file) {
    [all...]
NoSuchFileException.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;
29 * Checked exception thrown when an attempt is made to access a file that does
43 * @param file
44 * a string identifying the file or {@code null} if not known.
46 public NoSuchFileException(String file) {
47 super(file);
    [all...]
NotLinkException.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;
29 * Checked exception thrown when a file system operation fails because a file
43 * @param file
44 * a string identifying the file or {@code null} if not known
46 public NotLinkException(String file) {
    [all...]
FileSystemException.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;
31 * Thrown when a file system operation fails on one or two files. This class is
32 * the general class for file system exceptions.
42 private final String file; field in class:FileSystemException
47 * when an operation involving one file fails and there isn't any additional
50 * @param file
    [all...]
  /toolchain/binutils/binutils-2.27/gold/testsuite/
aarch64_reloc_none.sh 9 # This file is part of gold.
29 # File aarch64_reloc_none.s describes two similar sections, .foo and .bar,
36 file=$1
38 found_bar=`grep -e "\<bar\b" "$file"`
43 cat "$file"
47 found_foo=`grep -e "\<foo\b" "$file"`
52 cat "$file"
arm_attr_merge.sh 8 # This file is part of gold.
25 # This file goes with the assembler source files arm_attr_merge*.s
29 file=$1
31 found=`grep "$pattern" $file`
33 echo "pattern \"$pattern\" not found in file $file."
dyn_weak_ref.sh 9 # This file is part of gold.
30 file=$1
32 found=`grep "$pattern" $file`
34 echo "pattern \"$pattern\" not found in file $file."
strong_ref_weak_def.sh 9 # This file is part of gold.
30 file=$1
32 found=`grep "$pattern" $file`
34 echo "pattern \"$pattern\" not found in file $file."
  /external/toybox/kconfig/
util.c 11 /* file already present in list? If not add it */
12 struct file *file_lookup(const char *name)
14 struct file *file; local
16 for (file = file_list; file; file = file->next) {
17 if (!strcmp(name, file->name))
18 return file;
32 struct file *file; local
    [all...]
  /frameworks/rs/script_api/
GenerateHeaderFiles.cpp 5 * you may not use this file except in compliance with the License.
26 // Convert a file name into a string that can be used to guard the include file with #ifdef...
45 static void writeVersionGuardStart(GeneratedFile* file, VersionInfo info, unsigned int finalVersion) {
47 *file << "#ifndef __LP64__\n";
49 *file << "#ifdef __LP64__\n";
64 *file << "#if !defined(RS_VERSION) || " << checkMaxVersion.str() << "\n";
67 *file << "#if (defined(RS_VERSION) && (RS_VERSION >= " << info.minVersion << ")";
69 *file << " && " << checkMaxVersion.str();
71 *file << ")\n"
320 GeneratedFile file; local
    [all...]
  /external/libopus/celt/dump_modes/
dump_modes.c 52 void dump_modes(FILE *file, CELTMode **modes, int nb_modes)
56 fprintf(file, "/* The contents of this file was automatically generated by dump_modes.c\n");
57 fprintf(file, " with arguments:");
61 fprintf(file, " %d %d",mode->Fs,mode->shortMdctSize*mode->nbShortMdcts);
63 fprintf(file, "\n It contains static definitions for some pre-defined modes. */\n");
64 fprintf(file, "#include \"modes.h\"\n");
65 fprintf(file, "#include \"rate.h\"\n");
66 fprintf(file, "\n#ifdef HAVE_ARM_NE10\n")
318 FILE *file; local
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
AnnotationSetItem.java 5 * you may not use this file except in compliance with the License.
26 public void read(DexRandomAccessFile file) throws IOException {
27 file.alignForwards(4);
28 file.getOffsetTracker().getNewOffsettable(file, this);
29 size = file.readUInt();
32 (entries[i] = new AnnotationOffItem()).read(file);
37 public void write(DexRandomAccessFile file) throws IOException {
38 file.alignForwards(4);
39 file.getOffsetTracker().updatePositionOfNextOffsettable(file)
    [all...]
AnnotationSetRefList.java 5 * you may not use this file except in compliance with the License.
26 public void read(DexRandomAccessFile file) throws IOException {
27 file.alignForwards(4);
28 file.getOffsetTracker().getNewOffsettable(file, this);
29 size = file.readUInt();
32 (list[i] = new AnnotationSetRefItem()).read(file);
37 public void write(DexRandomAccessFile file) throws IOException {
38 file.alignForwards(4);
39 file.getOffsetTracker().updatePositionOfNextOffsettable(file)
    [all...]
FieldIdItem.java 5 * you may not use this file except in compliance with the License.
27 public void read(DexRandomAccessFile file) throws IOException {
28 file.getOffsetTracker().getNewOffsettable(file, this);
29 classIdx = file.readUShort();
30 typeIdx = file.readUShort();
31 nameIdx = file.readUInt();
35 public void write(DexRandomAccessFile file) throws IOException {
36 file.getOffsetTracker().updatePositionOfNextOffsettable(file);
    [all...]
MethodIdItem.java 5 * you may not use this file except in compliance with the License.
27 public void read(DexRandomAccessFile file) throws IOException {
28 file.getOffsetTracker().getNewOffsettable(file, this);
29 classIdx = file.readUShort();
30 protoIdx = file.readUShort();
31 nameIdx = file.readUInt();
35 public void write(DexRandomAccessFile file) throws IOException {
36 file.getOffsetTracker().updatePositionOfNextOffsettable(file);
    [all...]
AnnotationOffItem.java 5 * you may not use this file except in compliance with the License.
25 public void read(DexRandomAccessFile file) throws IOException {
26 annotationOff = file.getOffsetTracker().getNewOffset(file.readUInt());
30 public void write(DexRandomAccessFile file) throws IOException {
31 file.getOffsetTracker().tryToWriteOffset(annotationOff, file, false /* ULEB128 */);
AnnotationSetRefItem.java 5 * you may not use this file except in compliance with the License.
25 public void read(DexRandomAccessFile file) throws IOException {
26 annotationsOff = file.getOffsetTracker().getNewOffset(file.readUInt());
30 public void write(DexRandomAccessFile file) throws IOException {
31 file.getOffsetTracker().tryToWriteOffset(annotationsOff, file, false /* ULEB128 */);
  /cts/libs/vogar-expect/src/vogar/commands/
Rm.java 5 * you may not use this file except in compliance with the License.
19 import java.io.File;
26 public void file(File file) { method in class:Rm
27 new Command("rm", "-f", file.getPath()).execute();
30 public void directoryTree(File directory) {
  /external/llvm/test/MC/AsmParser/
directive_file.s 4 .file "hello"
5 .file 1 "worl\144" # "\144" is "d"
6 .file 2 "directory" "file"
8 # CHECK: .file "hello"
9 # CHECK: .file 1 "world"
10 # CHECK: .file 2 "directory" "file"
  /external/nanopb-c/tests/common/
test_helpers.h 9 #define SET_BINARY_MODE(file) setmode(fileno(file), O_BINARY)
12 #define SET_BINARY_MODE(file)
  /external/tensorflow/tensorflow/contrib/lite/toco/
toco_port_test.cc 4 you may not use this file except in compliance with the License.
33 file::Exists(TFLITE_PREFIX "toco/toco_port_test.cc", file::Defaults())
37 file::Exists("non-existent_file_asldjflasdjf", file::Defaults()).ok());
42 file::Readable(TFLITE_PREFIX "toco/toco_port_test.cc", file::Defaults())
46 file::Readable("non-existent_file_asldjflasdjf", file::Defaults()).ok());
50 EXPECT_EQ("part1/part2", file::JoinPath("part1", "part2"))
    [all...]
  /external/python/cpython3/Python/
dynamic_annotations.c 35 # error "This file should be built as pure C to avoid name mangling"
48 void AnnotateRWLockCreate(const char *file, int line,
50 void AnnotateRWLockDestroy(const char *file, int line,
52 void AnnotateRWLockAcquired(const char *file, int line,
54 void AnnotateRWLockReleased(const char *file, int line,
56 void AnnotateBarrierInit(const char *file, int line,
59 void AnnotateBarrierWaitBefore(const char *file, int line,
61 void AnnotateBarrierWaitAfter(const char *file, int line,
63 void AnnotateBarrierDestroy(const char *file, int line,
66 void AnnotateCondVarWait(const char *file, int line
    [all...]

Completed in 743 milliseconds

1 2 34 5 6 7 8 91011>>