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

1 2

  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
printf.c 2 Implementation of printf as declared in <stdio.h>.
43 NetBSD: printf.c,v 1.11 2003/08/07 16:43:29 agc Exp
44 printf.c 8.1 (Berkeley) 6/4/93
54 printf(char const *fmt, ...) function
  /device/linaro/bootloader/arm-trusted-firmware/lib/stdlib/
printf.c 12 int printf(const char *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...]
  /external/skia/src/sksl/
SkSLOutputStream.cpp 16 void OutputStream::printf(const char format[], ...) { function in class:SkSL::OutputStream
SkSLString.cpp 20 String String::printf(const char* fmt, ...) { function in class:SkSL::String
227 return SkSL::String::printf("%d", value);
231 return SkSL::String::printf("%u", value);
  /external/skqp/src/sksl/
SkSLOutputStream.cpp 16 void OutputStream::printf(const char format[], ...) { function in class:SkSL::OutputStream
SkSLString.cpp 20 String String::printf(const char* fmt, ...) { function in class:SkSL::String
227 return SkSL::String::printf("%d", value);
231 return SkSL::String::printf("%u", value);
  /external/capstone/contrib/cs_driver/cs_driver/
cs_driver.c 35 printf("Entering DriverEntry()\n");
39 printf("Leaving DriverEntry()\n");
75 printf("cs_driver!cs_driver_hello:\n");
77 printf("0x%p\t%s\t\t%s\n", (void *)(uintptr_t)insn[j].address,
90 // printf()
91 _Use_decl_annotations_ int __cdecl printf(const char *_Format, ...) { function
  /external/curl/lib/
curl_printf.h 32 # undef printf macro
40 # define printf curl_mprintf macro
curlx.h 78 /* If this define is set, we define all "standard" printf() functions to use
81 # undef printf macro
92 # define printf curlx_mprintf macro
  /external/mesa3d/src/mesa/x86/
gen_matypes.c 49 printf( "\n" ); \
50 printf( "\n" ); \
51 printf( "/* =====================================================" \
53 printf( " * Offsets for " x "\n" ); \
54 printf( " */\n" ); \
55 printf( "\n" ); \
60 printf( "\n" ); \
61 printf( "/*\n" ); \
62 printf( " * Flags for " x "\n" ); \
63 printf( " */\n" );
80 #define printf macro
    [all...]
  /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...]
  /external/compiler-rt/test/asan/TestCases/
coverage-reset.cc 16 // In MSVC 2015, printf is an inline function, which causes this test to fail as
17 // it introduces an extra coverage point. Define away printf on that platform to
20 # define printf(arg, ...) macro
27 printf("line %d: bitset %zd total: %zd\n", __LINE__, bitset, \
  /external/conscrypt/testing/src/main/java/org/conscrypt/testing/
NullPrintStream.java 58 public PrintStream printf(String format, Object... args) { method in class:NullPrintStream
63 public PrintStream printf(Locale l, String format, Object... args) { method in class:NullPrintStream
  /external/google-breakpad/src/third_party/curl/
mprintf.h 49 # undef printf macro
59 # define printf curl_mprintf macro
  /external/objenesis/tck/src/main/java/org/objenesis/tck/search/
SystemOutListener.java 29 System.out.printf(PATTERN, c.getSimpleName() + " (" + getTypology(c) + ")", "Working!");
33 System.out.printf(PATTERN, c.getSimpleName() + "(" + getTypology(c) + ")", "KO - " + t);
  /external/u-boot/include/
stdio.h 18 int __printf(1, 2) printf(const char *fmt, ...);
29 static inline int __printf(1, 2) printf(const char *fmt, ...) function
  /external/conscrypt/repackaged/testing/src/main/java/com/android/org/conscrypt/testing/
NullPrintStream.java 60 public PrintStream printf(String format, Object... args) { method in class:NullPrintStream
65 public PrintStream printf(Locale l, String format, Object... args) { method in class:NullPrintStream
  /external/pcre/dist2/
RunGrepTest.bat 83 :: Create a simple printf via cscript/JScript (an actual printf may translate
86 echo WScript.StdOut.Write(WScript.Arguments(0).replace(/\\r/g, "\r").replace(/\\n/g, "\n")) >printf.js
87 set printf=cscript //nologo printf.js variable
584 %printf% "123\n456\n789\n---abc\ndef\nxyz\n---\n" >testNinputgrep
630 %printf% "abc\rdef\r\nghi\njkl" >testNinputgrep
639 for /f %%a in ('%printf% "def\rjkl"') do set pattern=%%a
    [all...]
  /external/capstone/tests/
test_winkernel.cpp 101 printf("ERROR: Failed to save floating point state!\n");
134 printf("ERROR: cs_winkernel_vsnprintf_test() did not produce expected results!\n");
148 // This functions mimics printf() but does not return the same value as printf()
149 // would do. printf() is required to exercise regression tests.
151 int __cdecl printf(const char * format, ...) function
  /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 *'}}
60 int Foo::printf(const char *fmt, ...) function in class:Foo
    [all...]
  /device/google/cuttlefish_common/guest/monitoring/vsoc_service/java/com/android/google/gce/gceservice/
BootReporter.java 113 mKmsgWriter.printf(KLOG_FORMAT, KLOG_NOTICE, LOG_TAG, message);
  /external/cmockery/cmockery_0_1_2/src/example/
calculator.c 27 /* Redirect printf to a function in the test application so it's possible to
29 #ifdef printf
30 #undef printf macro
31 #endif // printf
32 #define printf example_test_printf macro
253 printf("%s\n", argv[1]);
256 printf(" %s %s = %d\n", argv[i], argv[i + 1],
259 printf("= %d\n", result);
  /external/libxml2/
trio.h 158 # undef printf macro
159 # define printf trio_printf macro

Completed in 2079 milliseconds

1 2