/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/clang/test/Modules/Inputs/System/usr/include/ |
stdio.h | 1 typedef struct { int id; } FILE; 2 int fprintf(FILE*restrict, const char* restrict format, ...);
|
/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);
|
/external/clang/test/Analysis/ |
system-header-simulator.h | 3 typedef struct _FILE FILE; 4 extern FILE *stdin; 5 extern FILE *stdout; 6 extern FILE *stderr; 7 // Include a variant of standard streams that occur in the pre-processed file. 8 extern FILE *__stdinp; 9 extern FILE *__stdoutp; 10 extern FILE *__stderrp; 13 int fscanf(FILE *restrict, const char *restrict, ...); 30 void setbuf(FILE * restrict, char * restrict) [all...] |
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/compiler-rt/SDKs/linux/usr/include/ |
stdio.h | 5 * This file is dual licensed under the MIT and the University of Illinois Open 10 * This is a stub SDK header file. This file is not part of the interface of 23 typedef struct _IO_FILE FILE; 29 extern int fclose(FILE *); 30 extern int fflush(FILE *); 31 extern FILE *fopen(const char * restrict, const char * restrict); 32 extern int fprintf(FILE * restrict, const char * restrict, ...); 33 extern size_t fwrite(const void * restrict, size_t, size_t, FILE * restrict);
|
/prebuilts/gcc/linux-x86/host/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...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/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...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/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/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...] |
/external/webkit/Source/WebCore/platform/graphics/android/layers/ |
DumpLayer.h | 5 * you may not use this file except in compliance with the License. 26 // Debug tools : dump the layers tree in a file. 53 void lwrite(FILE* file, const char* str); 54 void writeIndent(FILE* file, int indentLevel); 55 void writeln(FILE* file, int indentLevel, const char* str); 56 void writeIntVal(FILE* file, int indentLevel, const char* str, int value) [all...] |
/bionic/libc/stdio/ |
fgetc.c | 37 fgetc(FILE *fp)
|
glue.h | 42 FILE *iobs;
|
/external/v8/src/ |
disassembler.h | 39 static void Dump(FILE* f, byte* begin, byte* end); 44 static int Decode(FILE* f, byte* begin, byte* end); 47 static void Decode(FILE* f, Code* code); 53 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
|
/external/compiler-rt/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...] |
/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...] |