HomeSort by relevance Sort by last modified time
    Searched refs:FILE (Results 1 - 25 of 2148) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Preprocessor/
include-directive1.c 1 // RUN: %clang_cc1 -E %s -fno-caret-diagnostics 2>&1 >/dev/null | grep 'file successfully included' | count 3
6 // expand macros to get to file to include
7 #define FILE "file_to_include.h"
8 #include XX FILE
10 #include FILE
  /external/bison/src/
scan-skel.h 5 This file is part of Bison, the GNU Compiler Compiler.
18 along with Bison; see the file COPYING. If not, write to
22 void scan_skel (FILE *);
25 extern FILE *skel_in;
26 extern FILE *skel_out;
  /external/bison/lib/
stdio-safer.h 23 FILE *fopen_safer (char const *, char const *);
bitsetv-print.h 25 extern void bitsetv_matrix_dump (FILE *, const char *, bitsetv);
  /external/libvpx/
tools_common.h 5 * that can be found in the LICENSE file in the root of the source
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
14 FILE* set_binary_mode(FILE *stream);
  /external/clang/test/CodeGen/
2002-06-25-FWriteInterfaceFailure.c 3 typedef struct _IO_FILE FILE;
4 extern FILE *stderr;
5 int fprintf(FILE * restrict stream, const char * restrict format, ...);
vfprintf.c 3 typedef struct _IO_FILE FILE;
4 int vfprintf(FILE*restrict,const char*restrict, __builtin_va_list);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
stdio_ext.h 1 /* Functions to access FILE structure internals.
3 This file is part of the GNU C Library.
47 extern size_t __fbufsize (FILE *__fp) __THROW;
52 extern int __freading (FILE *__fp) __THROW;
57 extern int __fwriting (FILE *__fp) __THROW;
62 extern int __freadable (FILE *__fp) __THROW;
65 extern int __fwritable (FILE *__fp) __THROW;
69 extern int __flbf (FILE *__fp) __THROW;
73 extern void __fpurge (FILE *__fp) __THROW;
76 extern size_t __fpending (FILE *__fp) __THROW
    [all...]
  /external/clang/test/Analysis/
stream.c 4 typedef struct _IO_FILE FILE;
5 #define SEEK_SET 0 /* Seek from beginning of file. */
7 #define SEEK_END 2 /* Seek from end of file. */
8 extern FILE *fopen(const char *path, const char *mode);
9 extern FILE *tmpfile(void);
10 extern int fclose(FILE *fp);
11 extern size_t fread(void *ptr, size_t size, size_t nmemb, FILE *stream);
12 extern int fseek (FILE *__stream, long int __off, int __whence);
13 extern long int ftell (FILE *__stream);
14 extern void rewind (FILE *__stream)
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/main/macos/exports/
gendef.pl 7 while ( ($file = shift(@ARGV)) ) {
8 if ( ! defined(open(FILE, $file)) ) {
9 warn "Couldn't open $file: $!\n";
13 $file =~ s,.*/,,;
14 while (<FILE>) {
21 close(FILE);
  /external/oprofile/libutil/
op_fileio.h 2 * @file op_fileio.h
6 * @remark Read the file COPYING
24 * op_try_open_file - open a file
25 * @param name file name
28 * Open a file name.
29 * Returns file handle or %NULL on failure.
31 FILE * op_try_open_file(char const * name, char const * mode);
34 * op_open_file - open a file
35 * @param name file name
38 * Open a file name
    [all...]
  /bionic/libc/stdio/
fgetc.c 37 fgetc(FILE *fp)
glue.h 42 FILE *iobs;
  /external/v8/src/
disassembler.h 37 static void Dump(FILE* f, byte* begin, byte* end);
42 static int Decode(FILE* f, byte* begin, byte* end);
45 static void Decode(FILE* f, Code* code);
51 static int Decode(FILE* f, byte* pc, int* char_count);
  /ndk/build/tools/
find-case-duplicates.sh 6 # you may not use this file except in compliance with the License.
18 # This script is used to find case-insensitive duplicate file names
31 for FILE in $ORG_FILES; do
34 UPFILE=`echo $FILE | tr [a-z] [A-Z]`
36 NEW_FILES="$NEW_FILES $FILE"
39 echo "$FILE"
41 PREVFILE=$FILE
  /frameworks/compile/libbcc/runtime/test/Unit/
test 24 for FILE in $(ls *.c); do
30 if test $FILE = gcc_personality_test.c
36 if test $FILE = trampoline_setup_test.c
43 if gcc $CFLAGS $FILE ../../darwin_fat/Release/libcompiler_rt.a $LIBS $EXTRA -o ./remote/$FILE.exe
45 echo "Built $FILE.exe for $ARCH"
47 echo "$FILE failed to compile"
50 if gcc $CFLAGS $FILE ../../darwin_fat/Release/libcompiler_rt.a $LIBS $EXTRA
52 echo "Testing $FILE for $ARCH"
61 echo "$FILE failed to compile
    [all...]
  /external/stlport/src/
_stdio_file.h 22 /* This file provides a low-level interface between the internal
23 * representation of struct FILE, from the C stdio library, and
41 inline int _FILE_fd(const FILE *__f) {
42 /* Check if FILE is one of the three standard streams
57 return (int)::_fileno((FILE*)__f);
62 inline int _FILE_fd(const FILE *__f) { return __f->__file; }
66 inline int _FILE_fd(const FILE *__f) { return (int) __f->__pad[2]; }
72 inline int _FILE_fd(const FILE *__f) { return fileno(__CONST_CAST(FILE*, __f)); }
76 inline int _FILE_fd(const FILE *__f) { return __f->_fileno;
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
_stdio_file.h 22 /* This file provides a low-level interface between the internal
23 * representation of struct FILE, from the C stdio library, and
41 inline int _FILE_fd(const FILE *__f) {
42 /* Check if FILE is one of the three standard streams
57 return (int)::_fileno((FILE*)__f);
62 inline int _FILE_fd(const FILE *__f) { return __f->__file; }
66 inline int _FILE_fd(const FILE *__f) { return (int) __f->__pad[2]; }
72 inline int _FILE_fd(const FILE *__f) { return fileno(__CONST_CAST(FILE*, __f)); }
76 inline int _FILE_fd(const FILE *__f) { return __f->_fileno;
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/config/
elfos.h 7 This file is part of GCC.
84 /* All SVR4 targets use the ELF object file format. */
90 #define ASM_OUTPUT_IDENT(FILE, NAME) \
91 fprintf (FILE, "%s\"%s\"\n", IDENT_ASM_OP, NAME);
98 /* Most svr4 assemblers want a .file directive at the beginning of
99 their input file. */
108 #define ASM_OUTPUT_SKIP(FILE, SIZE) \
109 fprintf ((FILE), "%s"HOST_WIDE_INT_PRINT_UNSIGNED"\n",\
140 #define ASM_OUTPUT_BEFORE_CASE_LABEL(FILE, PREFIX, NUM, TABLE) \
141 ASM_OUTPUT_ALIGN ((FILE), 2)
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/config/
elfos.h 7 This file is part of GCC.
84 /* All SVR4 targets use the ELF object file format. */
90 #define ASM_OUTPUT_IDENT(FILE, NAME) \
91 fprintf (FILE, "%s\"%s\"\n", IDENT_ASM_OP, NAME);
98 /* Most svr4 assemblers want a .file directive at the beginning of
99 their input file. */
108 #define ASM_OUTPUT_SKIP(FILE, SIZE) \
109 fprintf ((FILE), "%s"HOST_WIDE_INT_PRINT_UNSIGNED"\n",\
140 #define ASM_OUTPUT_BEFORE_CASE_LABEL(FILE, PREFIX, NUM, TABLE) \
141 ASM_OUTPUT_ALIGN ((FILE), 2)
    [all...]
  /prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/lib/gcc/arm-linux-androideabi/4.4.3/plugin/include/config/
elfos.h 7 This file is part of GCC.
84 /* All SVR4 targets use the ELF object file format. */
90 #define ASM_OUTPUT_IDENT(FILE, NAME) \
91 fprintf (FILE, "%s\"%s\"\n", IDENT_ASM_OP, NAME);
98 /* Most svr4 assemblers want a .file directive at the beginning of
99 their input file. */
108 #define ASM_OUTPUT_SKIP(FILE, SIZE) \
109 fprintf ((FILE), "%s"HOST_WIDE_INT_PRINT_UNSIGNED"\n",\
140 #define ASM_OUTPUT_BEFORE_CASE_LABEL(FILE, PREFIX, NUM, TABLE) \
141 ASM_OUTPUT_ALIGN ((FILE), 2)
    [all...]
  /external/chromium/base/memory/
scoped_handle.h 3 // found in the LICENSE file.
18 explicit ScopedStdioHandle(FILE* handle)
32 FILE* get() const { return handle_; }
34 FILE* Take() {
35 FILE* temp = handle_;
40 void Set(FILE* newhandle) {
46 FILE* handle_;
  /frameworks/compile/libbcc/runtime/test/timing/
time 5 file=$2
9 if gcc -arch $arch -Os $file $ldflags -DLIBNAME=$name
18 echo "$FILE failed to compile"
25 for FILE in $(ls *.c); do
27 echo "Timing $FILE for $ARCH"
29 test $ARCH $FILE libgcc ""
30 test $ARCH $FILE tuned ../../darwin_fat/Release/libcompiler_rt.a
32 test $ARCH $FILE installed $INSTALLED
  /bionic/libc/include/
stdio.h 78 typedef off_t fpos_t; /* stdio file position type */
103 * try to write or read from a file that is in `read' or `write' mode.
123 short _flags; /* flags, below; this FILE is free if 0 */
151 } FILE;
154 extern FILE __sF[];
173 #define __SIGN 0x8000 /* ignore this file in _fwalk */
208 #define SEEK_SET 0 /* set file offset to offset */
211 #define SEEK_CUR 1 /* set file offset to current plus offset */
214 #define SEEK_END 2 /* set file offset to EOF plus offset */
225 void clearerr(FILE *);
    [all...]
  /development/ndk/platforms/android-3/include/
stdio.h 78 typedef off_t fpos_t; /* stdio file position type */
103 * try to write or read from a file that is in `read' or `write' mode.
123 short _flags; /* flags, below; this FILE is free if 0 */
151 } FILE;
154 extern FILE __sF[];
207 #define SEEK_SET 0 /* set file offset to offset */
210 #define SEEK_CUR 1 /* set file offset to current plus offset */
213 #define SEEK_END 2 /* set file offset to EOF plus offset */
224 void clearerr(FILE *);
225 int fclose(FILE *);
    [all...]

Completed in 646 milliseconds

1 2 3 4 5 6 7 8 91011>>