HomeSort by relevance Sort by last modified time
    Searched defs:printf (Results 1 - 25 of 88) sorted by null

1 2 3 4

  /bionic/libc/upstream-openbsd/lib/libc/stdio/
printf.c 1 /* $OpenBSD: printf.c,v 1.8 2011/05/30 18:48:33 martynas Exp $ */
39 printf(const char *fmt, ...) function
  /external/bison/lib/
printf.c 30 printf (const char *format, ...) function
  /ndk/sources/android/support/src/musl-stdio/
printf.c 4 int printf(const char *restrict fmt, ...) function
  /cts/suite/audio_quality/lib/src/
Log.cpp 41 void Log::printf(LogLevel level, const char* fmt, ...) function in class:Log
Report.cpp 66 void Report::printf(const char* fmt, ...) function in class:Report
96 printf(" <test title=\"%s\" result=\"pass\" >", it->first.string());
98 printf(" <test title=\"%s\" result=\"fail\" >", it->first.string());
100 printf(" <details>\n%s", it->second.string());
101 printf(" </details>");
102 printf(" </test>");
108 printf("<?xml version='1.0' encoding='utf-8' standalone='yes' ?>");
109 printf("<audio-test-results-report report-version=\"1\" creation-time=\"%s\">",
111 printf(" <verifier-info version-name=\"1\" version-code=\"1\" />");
112 printf(" <device-info>")
    [all...]
  /hardware/ti/omap4-aah/security/smc_pa_ctrl/
smc_pa_ctrl_os.h 36 #define printf RDebugPrintf macro
  /hardware/ti/omap4xxx/security/smc_pa_ctrl/
smc_pa_ctrl_os.h 36 #define printf RDebugPrintf macro
  /external/chromium_org/third_party/WebKit/Source/wtf/
PrintStream.cpp 38 void PrintStream::printf(const char* format, ...) function in class:WTF::PrintStream
52 out.printf("%s", string);
75 out.printf("%d", value);
80 out.printf("%u", value);
85 out.printf("%ld", value);
90 out.printf("%lu", value);
95 out.printf("%lld", value);
100 out.printf("%llu", value);
110 out.printf("%lf", value);
115 out.printf("%c", value)
    [all...]
  /external/chromium_org/third_party/libsrtp/srtp/crypto/include/
kernel_compat.h 79 #define printf(...) printk(__VA_ARGS__) macro
  /external/srtp/crypto/include/
kernel_compat.h 79 #define printf(...) printk(__VA_ARGS__) macro
  /external/clang/test/Sema/
attr-format.c 5 void a(const char *a, ...) __attribute__((format(printf, 1,2))); // no-error
6 void b(const char *a, ...) __attribute__((format(printf, 1,1))); // expected-error {{'format' attribute parameter 3 is out of bounds}}
7 void c(const char *a, ...) __attribute__((format(printf, 0,2))); // expected-error {{'format' attribute parameter 2 is out of bounds}}
8 void d(const char *a, int c) __attribute__((format(printf, 1,2))); // expected-error {{format attribute requires variadic function}}
9 void e(char *str, int c, ...) __attribute__((format(printf, 2,3))); // expected-error {{format argument not a string type}}
12 void f(xpto c, va_list list) __attribute__((format(printf, 1, 0))); // no-error
13 void g(xpto c) __attribute__((format(printf, 1, 0))); // no-error
18 int (*f_ptr)(char*,...) __attribute__((format(printf, 1,2))); // no-error
19 int (*f2_ptr)(double,...) __attribute__((format(printf, 1, 2))); // expected-error {{format argument not a string type}}
22 int (*printf)(const char *format, ...) __attribute__((__format__(printf, 1, 2))); // no-erro member in struct:_mystruct
    [all...]
  /libcore/support/src/test/java/libcore/java/io/
NullPrintStream.java 38 public PrintStream printf(String format, Object... args) { return this; } method in class:NullPrintStream
39 public PrintStream printf(Locale l, String format, Object... args) { return this; } method in class:NullPrintStream
  /ndk/sources/host-tools/sed-4.2.1/lib/
stdio-write.c 65 # if !REPLACE_PRINTF_POSIX /* avoid collision with printf.c */
67 printf (const char *format, ...) function
  /external/chromium_org/third_party/tcmalloc/chromium/src/
internal_logging.cc 177 void TCMalloc_Printer::printf(const char* format, ...) { function in class:TCMalloc_Printer
  /external/chromium_org/third_party/tcmalloc/vendor/src/
internal_logging.cc 176 void TCMalloc_Printer::printf(const char* format, ...) { function in class:TCMalloc_Printer
  /external/clang/test/SemaCXX/
format-strings.cpp 7 extern int printf(const char *restrict, ...);
15 printf("%a", 1.0);
20 printf("%ls", "foo"); // expected-warning{{format specifies type 'wchar_t *' but the argument has type 'const char *'}}
29 int printf(const char *, ...) __attribute__((format(printf, 2, 3)));
33 static int printf_static(const char *fmt, ...) __attribute__((format(printf, 1, 2)));
39 foo.printf("%d", i); // expected-warning{{format specifies type 'int' but the argument has type 'int *'}}
42 printf(foo.gettext("%d"), i); // expected-warning{{format specifies type 'int' but the argument has type 'int *'}}
43 printf(Foo::gettext_static("%d"), i); // expected-warning{{format specifies type 'int' but the argument has type 'int *'}}
59 int Foo::printf(const char *fmt, ...) function in class:Foo
    [all...]
  /external/qemu-pc-bios/bochs/bios/
rombios.h 43 #define printf(format, p...) bios_printf(BIOS_PRINTF_SCREEN, format, ##p) macro
  /external/srec/portable/include/
plog.h 68 * printf).
73 ESR_ReturnCode(*printf)(struct PLogger_t *self, member in struct:PLogger_t
203 * @param msg The message format specification (ala printf).
214 * @param msg The message format specification (ala printf).
285 * Usage: PLOG_DBG_TRACE((printf-arguments))
287 * The reason we require double brackets is to allow the use of printf-style variable
  /external/valgrind/main/drd/tests/
unit_vc.c 41 UInt VG_(printf)(const HChar *format, ...) function
47 { UInt ret; va_list vargs; va_start(vargs, format); ret = vprintf(format, vargs); va_end(vargs); printf("\n"); return ret; }
  /frameworks/base/tools/aapt/
SourcePos.cpp 134 SourcePos::printf(const char* fmt, ...) const function in class:SourcePos
  /libcore/luni/src/main/java/java/io/
Console.java 84 public Console printf(String format, Object... args) { method in class:Console
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/bits/
stdio2.h 103 printf (__const char *__restrict __fmt, ...) function
108 # define printf(...) \ macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
stdio2.h 103 printf (__const char *__restrict __fmt, ...) function
108 # define printf(...) \ macro
  /external/chromium_org/third_party/libxml/src/
trio.h 158 # define printf trio_printf macro
  /external/chromium_org/third_party/libxslt/libxslt/
trio.h 158 # define printf trio_printf macro

Completed in 1447 milliseconds

1 2 3 4