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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Sema/
vfprintf-invalid-redecl.c 4 // The following declaration is not compatible with vfprintf(), but make
6 char vfprintf(); // expected-warning {{incompatible redeclaration of library function 'vfprintf'}} expected-note {{'vfprintf' is a builtin}}
vfprintf-valid-redecl.c 8 // `vfprintf' in this file, and we getPreviousDecl()->getTypeSourceInfo() on it, then we will
10 int vfprintf(void) { return 0; } function
14 // The following declaration is compatible with vfprintf, so we shouldn't
16 int vfprintf();
  /external/clang/test/CodeGen/
vfprintf.c 4 int vfprintf(FILE*restrict,const char*restrict, __builtin_va_list);
6 vfprintf(0, " ", ap);
  /toolchain/binutils/binutils-2.25/libiberty/
vfprintf.c 1 /* Provide a version vfprintf in terms of _doprnt.
9 #undef vfprintf macro
12 vfprintf (FILE *stream, const char *format, va_list ap) function
vprintf.c 4 @deftypefnx Supplemental int vfprintf (FILE *@var{stream}, @
27 return vfprintf (stdout, format, ap);
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
vprintf.c 39 return (vfprintf(stdout, fmt, ap));
printf.c 45 ret = vfprintf(stdout, fmt, ap);
fprintf.c 45 ret = vfprintf(fp, fmt, ap);
  /ndk/sources/android/support/src/musl-stdio/
vprintf.c 5 return vfprintf(stdout, fmt, ap);
printf.c 9 ret = vfprintf(stdout, fmt, ap);
  /external/clang/test/CodeGen/Inputs/
stdio.h 2 extern int vfprintf(struct FILE *s, const char *format, __builtin_va_list arg);
8 return vfprintf (0, 0, y);
  /external/skia/src/ports/
SkDebug_stdio.cpp 17 vfprintf(stderr, format, args);
  /external/curl/lib/
curl_printf.h 36 # undef vfprintf macro
44 # define vfprintf curl_mvfprintf macro
curlx.h 99 # undef vfprintf macro
110 # define vfprintf curlx_mvfprintf macro
  /bionic/libc/upstream-openbsd/lib/libc/gen/
verrx.c 43 (void)vfprintf(stderr, fmt, ap);
vwarnx.c 42 (void)vfprintf(stderr, fmt, ap);
verr.c 48 (void)vfprintf(stderr, fmt, ap);
  /external/bison/lib/
printf.c 36 retval = vfprintf (stdout, format, args);
  /prebuilts/go/darwin-x86/src/runtime/cgo/
gcc_android.c 22 vfprintf(stderr, format, ap);
gcc_fatalf.c 19 vfprintf(stderr, format, ap);
  /prebuilts/go/linux-x86/src/runtime/cgo/
gcc_android.c 22 vfprintf(stderr, format, ap);
gcc_fatalf.c 19 vfprintf(stderr, format, ap);
  /system/core/libsparse/
sparse_err.c 28 vfprintf(stderr, fmt, argp);
  /external/iproute2/lib/
color.c 53 ret = vfprintf(fp, fmt, args);
58 ret += vfprintf(fp, fmt, args);
  /frameworks/base/tools/aapt/
IndentPrinter.h 24 vfprintf(mStream, fmt, args);
32 vfprintf(mStream, fmt, args);

Completed in 646 milliseconds

1 2 3 4 5 6 7 8 91011>>