HomeSort by relevance Sort by last modified time
    Searched refs:FILE (Results 1 - 25 of 4387) 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/lib/
stdio-safer.h 23 FILE *fopen_safer (char const *, char const *);
27 FILE *freopen_safer (char const *, char const *, FILE *);
31 FILE *popen_safer (char const *, char const *);
35 FILE *tmpfile_safer (void);
bitsetv-print.h 26 extern void bitsetv_matrix_dump (FILE *, const char *, bitsetv);
close-stream.h 2 int close_stream (FILE *stream);
  /external/bison/src/
scan-skel.h 5 This file is part of Bison, the GNU Compiler Compiler.
20 void scan_skel (FILE *);
23 extern FILE *skel_in;
24 extern FILE *skel_out;
graphviz.h 5 This file is part of Bison, the GNU Compiler Compiler.
31 void start_graph (FILE *fout);
39 void output_node (int id, char const *label, FILE *fout);
50 char const *style, FILE *fout);
57 void output_red (state const *s, reductions const *reds, FILE *fout);
63 void finish_graph (FILE *fout);
print-xml.h 5 This file is part of Bison, the GNU Compiler Compiler.
23 void xml_indent (FILE *out, int level);
24 void xml_puts (FILE *, int, char const *);
25 void xml_printf (FILE *, int, char const *, ...);
  /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, ...);
3 extern FILE *__stderrp;
  /external/chromium-libpac/test/
jstocstring.pl 5 open(FILE, "> $ARGV[1]");
6 print FILE "// This file is auto generated using the following command.\n";
7 print FILE "// Do not modify.\n";
8 print FILE "// \t./jstocstring.pl $ARGV[0] $ARGV[1]\n";
9 print FILE "#ifndef PROXY_TEST_SCRIPT_H_\n";
10 print FILE "#define PROXY_TEST_SCRIPT_H_\n\n";
17 print FILE "#define $upper \\\n";
21 print FILE " \"",$_,"\\n\" \\\n";
24 print FILE "\n
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/test/
debugUtility.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.
20 FILE* res0to4FilePtr;
21 FILE* res4to8FilePtr;
22 FILE* res8to12FilePtr;
23 FILE* res8to16FilePtr;
25 FILE* res0to4DecFilePtr;
26 FILE* res4to8DecFilePtr;
27 FILE* res8to12DecFilePtr
    [all...]
  /external/chromium_org/third_party/mesa/src/bin/
minstall 7 # -m mode Sets a file's mode when installing
24 # set file mode
29 # install file(s) into destination
33 for FILE in $@ ; do
34 DESTDIR="$FILE"
39 for FILE in $@ ; do
52 case $FILE in
66 # determine file's type
67 if [ -h "$FILE" ] ; then
68 #echo $FILE is a symlin
    [all...]
  /external/mesa3d/bin/
minstall 7 # -m mode Sets a file's mode when installing
24 # set file mode
29 # install file(s) into destination
33 for FILE in $@ ; do
34 DESTDIR="$FILE"
39 for FILE in $@ ; do
52 case $FILE in
66 # determine file's type
67 if [ -h "$FILE" ] ; then
68 #echo $FILE is a symlin
    [all...]
  /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);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/config/i386/
bsd.h 6 This file is part of GCC.
19 along with GCC; see the file COPYING3. If not see
41 #define ASM_OUTPUT_SOURCE_FILENAME(FILE, NAME) */
50 #define ASM_OUTPUT_SKIP(FILE,SIZE) \
51 fprintf (FILE, "\t.space "HOST_WIDE_INT_PRINT_UNSIGNED"\n", (SIZE))
59 #define ASM_OUTPUT_COMMON(FILE, NAME, SIZE, ROUNDED) \
60 ( fputs (".comm ", (FILE)), \
61 assemble_name ((FILE), (NAME)), \
62 fprintf ((FILE), ",%u\n", (int)(ROUNDED)))
67 #define ASM_OUTPUT_LOCAL(FILE, NAME, SIZE, ROUNDED)
    [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 #define SEEK_SET 0 /* set file offset to offset */
30 #define SEEK_CUR 1 /* set file offset to current plus offset */
31 #define SEEK_END 2 /* set file offset to EOF plus offset */
33 extern int fclose(FILE *);
34 extern int fflush(FILE *);
35 extern FILE *fopen(const char * restrict, const char * restrict)
    [all...]
  /external/clang/test/Analysis/Inputs/
system-header-simulator-for-simple-stream.h 10 } FILE;
11 FILE *fopen(const char * restrict, const char * restrict) __asm("_" "fopen" );
12 int fputc(int, FILE *);
13 int fputs(const char * restrict, FILE * restrict) __asm("_" "fputs" );
14 int fclose(FILE *);
19 FILE * p;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-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.11-4.8/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.15/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);
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
marshal.h 12 PyAPI_FUNC(void) PyMarshal_WriteLongToFile(long, FILE *, int);
13 PyAPI_FUNC(void) PyMarshal_WriteObjectToFile(PyObject *, FILE *, int);
16 PyAPI_FUNC(long) PyMarshal_ReadLongFromFile(FILE *);
17 PyAPI_FUNC(int) PyMarshal_ReadShortFromFile(FILE *);
18 PyAPI_FUNC(PyObject *) PyMarshal_ReadObjectFromFile(FILE *);
19 PyAPI_FUNC(PyObject *) PyMarshal_ReadLastObjectFromFile(FILE *);
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
marshal.h 12 PyAPI_FUNC(void) PyMarshal_WriteLongToFile(long, FILE *, int);
13 PyAPI_FUNC(void) PyMarshal_WriteObjectToFile(PyObject *, FILE *, int);
16 PyAPI_FUNC(long) PyMarshal_ReadLongFromFile(FILE *);
17 PyAPI_FUNC(int) PyMarshal_ReadShortFromFile(FILE *);
18 PyAPI_FUNC(PyObject *) PyMarshal_ReadObjectFromFile(FILE *);
19 PyAPI_FUNC(PyObject *) PyMarshal_ReadLastObjectFromFile(FILE *);
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/test/
NETEQTEST_DummyRTPpacket.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.
18 virtual int readFromFile(FILE* fp) OVERRIDE;
19 virtual int writeToFile(FILE* fp) OVERRIDE;
  /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...]

Completed in 1635 milliseconds

1 2 3 4 5 6 7 8 91011>>