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

<<11121314151617181920>>

  /external/deqp/execserver/
xsDefs.cpp 8 * you may not use this file except in compliance with the License.
20 * \file
31 static std::string formatError (const char* message, const char* expr, const char* file, int line)
37 msg << " at " << file << ":" << line;
41 Error::Error (const char* message, const char* expr, const char* file, int line)
42 : std::runtime_error(formatError(message, expr, file, line))
  /external/deqp/executor/
xeDefs.cpp 8 * you may not use this file except in compliance with the License.
20 * \file
31 static std::string formatError (const char* message, const char* expr, const char* file, int line)
37 msg << " at " << file << ":" << line;
41 Error::Error (const char* message, const char* expr, const char* file, int line)
42 : std::runtime_error(formatError(message, expr, file, line))
  /external/flatbuffers/grpc/src/compiler/
cpp_generator.h 72 // Return the prologue of the generated header file.
73 grpc::string GetHeaderPrologue(grpc_generator::File *file,
76 // Return the includes needed for generated header file.
77 grpc::string GetHeaderIncludes(grpc_generator::File *file,
80 // Return the includes needed for generated source file.
81 grpc::string GetSourceIncludes(grpc_generator::File *file,
84 // Return the epilogue of the generated header file
    [all...]
  /external/icu/icu4c/as_is/os400/
fixup-icu.sh 35 for file in `find ./icu/source/data/unidata \( -name \*.txt -print \)`; do
36 bom8=`od -t x1 -N 3 $file|\
40 echo "file $file bom /${bom8}/"
43 file="`echo $file | cut -d / -f2-`"
44 echo "converting ${file}"
48 binary_files="$binary_files $file";
54 binary_files="$file";
  /external/libmojo/soong/
jni_generator_helper.sh 6 # you may not use this file except in compliance with the License.
40 for file in "${files[@]}"; do
41 "${jni_generator}" "${args[@]}" --input_file="${file}"
  /external/ltp/lib/
tst_dir_is_empty.c 35 const char *file = entry->d_name; local
37 if (!strcmp(file, "..") || !strcmp(file, "."))
41 tst_resm(TINFO, "found a file: %s", file);
  /external/selinux/libsepol/tests/policies/test-deps/
modreq-bool-opt.conf 4 class file {read write};
20 allow a_t b_t : file { read write };
  /external/smali/smalidea/src/test/java/org/jf/smalidea/
SmaliFileTypeTest.java 43 PsiFile file = myFixture.addFileToProject("my/pkg/blah.smali", ".class public Lmy/pkg/blah; .super Ljava/lang/Object;"); local
44 Assert.assertEquals(SmaliFileType.INSTANCE, file.getVirtualFile().getFileType());
45 Assert.assertEquals(SmaliFileType.INSTANCE, file.getFileType());
46 Assert.assertEquals(SmaliLanguage.INSTANCE, file.getLanguage());
  /external/strace/tests/
xstatfs.c 28 #define SYSCALL_INVOKE(file, desc, ptr, size) \
29 syscall(SYSCALL_NR, SYSCALL_ARG(file, desc), ptr)
30 #define PRINT_SYSCALL_HEADER(file, desc, size) \
31 printf("%s(" SYSCALL_ARG_FMT ", ", SYSCALL_NAME, SYSCALL_ARG(file, desc))
xstatfs64.c 28 #define SYSCALL_INVOKE(file, desc, ptr, size) \
29 syscall(SYSCALL_NR, SYSCALL_ARG(file, desc), size, ptr)
30 #define PRINT_SYSCALL_HEADER(file, desc, size) \
32 SYSCALL_ARG(file, desc), (unsigned) size)
  /external/strace/tests-m32/
xstatfs.c 28 #define SYSCALL_INVOKE(file, desc, ptr, size) \
29 syscall(SYSCALL_NR, SYSCALL_ARG(file, desc), ptr)
30 #define PRINT_SYSCALL_HEADER(file, desc, size) \
31 printf("%s(" SYSCALL_ARG_FMT ", ", SYSCALL_NAME, SYSCALL_ARG(file, desc))
xstatfs64.c 28 #define SYSCALL_INVOKE(file, desc, ptr, size) \
29 syscall(SYSCALL_NR, SYSCALL_ARG(file, desc), size, ptr)
30 #define PRINT_SYSCALL_HEADER(file, desc, size) \
32 SYSCALL_ARG(file, desc), (unsigned) size)
  /external/strace/tests-mx32/
xstatfs.c 28 #define SYSCALL_INVOKE(file, desc, ptr, size) \
29 syscall(SYSCALL_NR, SYSCALL_ARG(file, desc), ptr)
30 #define PRINT_SYSCALL_HEADER(file, desc, size) \
31 printf("%s(" SYSCALL_ARG_FMT ", ", SYSCALL_NAME, SYSCALL_ARG(file, desc))
xstatfs64.c 28 #define SYSCALL_INVOKE(file, desc, ptr, size) \
29 syscall(SYSCALL_NR, SYSCALL_ARG(file, desc), size, ptr)
30 #define PRINT_SYSCALL_HEADER(file, desc, size) \
32 SYSCALL_ARG(file, desc), (unsigned) size)
  /external/swiftshader/third_party/LLVM/test/MC/MachO/
empty-dwarf-lines.s 8 .file 1 "test.c"
  /external/toybox/tests/
diff.test 20 expected='--- tree1/file
21 +++ tree2/file
27 echo foo > tree1/file
28 echo food > tree2/file
ln.test 11 echo file1 > file
12 testing "create_hardlink" "ln file hlink && [ file -ef hlink ] &&
14 testing "create_softlink" "ln -s file slink && [ -L slink ] &&
15 readlink slink" "file\n" "" ""
19 testing "force_create_hardlink" "ln -f file hlink &&
20 [ file -ef hlink ] && cat hlink 2>/dev/null" "file1\n" "" ""
23 testing "force_create_softlink" "ln -f -s file slink &&
24 [ -L slink ] && readlink slink" "file\n" "" ""
29 testing "preserves_hardlinks" "ln file hlink 2>/dev/null || echo 'yes'"
    [all...]
  /external/vboot_reference/scripts/image_signing/
ensure_no_nonrelease_files.sh 5 # found in the LICENSE file.
31 # with a .config file extension, ie ensure_no_nonrelease_files.config.
43 for file in ${RELEASE_FILE_BLACKLIST[@]}; do
44 if [ -e "$rootfs/$file" ]; then
45 echo "FAIL: $file exists in this image!"
46 ls -al "$rootfs/$file"
  /hardware/intel/common/libva/
style_unify 2 file=$(find . -name "*.[ch]" -o -name "*.cpp")
3 for i in $file
  /libcore/ojluni/src/main/java/java/io/
FileWriter.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
35 * <p>Whether or not a file is available or may be created depends upon the
36 * underlying platform. Some platforms, in particular, allow a file to be
37 * opened for writing by only one <tt>FileWriter</tt> (or other file-writing
39 * will fail if the file involved is already open.
55 * Constructs a FileWriter object given a file name.
58 * @throws IOException if the named file exists but is a directory rathe
    [all...]
  /libcore/ojluni/src/main/java/java/nio/file/
FileVisitor.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;
28 import java.nio.file.attribute.BasicFileAttributes;
33 * {@link Files#walkFileTree Files.walkFileTree} methods to visit each file in
34 * a file tree.
37 * Suppose we want to delete a file tree. In that case, each directory should
43 * public FileVisitResult visitFile(Path file, BasicFileAttributes attrs
    [all...]
  /libcore/ojluni/src/main/java/java/nio/file/attribute/
AclEntryFlag.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;
42 * added to each new non-directory file created.
AclEntryType.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;
36 * Explicitly grants access to a file or directory.
41 * Explicitly denies access to a file or directory.
DosFileAttributes.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;
29 * File attributes associated with a file in a file system that supports
34 * Path file = ...
35 * DosFileAttributes attrs = Files.readAttributes(file, DosFileAttributes.class)
    [all...]
FileAttribute.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;
29 * An object that encapsulates the value of a file attribute that can be set
30 * atomically when creating a new file or directory by invoking the {@link
31 * java.nio.file.Files#createFile createFile} or {@link
32 * java.nio.file.Files#createDirectory createDirectory} methods.
34 * @param <T> The type of the file attribute valu
    [all...]

Completed in 1025 milliseconds

<<11121314151617181920>>