HomeSort by relevance Sort by last modified time
    Searched defs:printf (Results 26 - 50 of 111) sorted by null

12 3 4 5

  /external/skia/src/sksl/
SkSLString.cpp 20 String String::printf(const char* fmt, ...) { function in class:SkSL::String
186 return SkSL::String::printf("%d", value);
190 return SkSL::String::printf("%u", value);
  /external/skqp/src/sksl/
SkSLString.cpp 19 String String::printf(const char* fmt, ...) { function in class:SkSL::String
185 return SkSL::String::printf("%d", value);
189 return SkSL::String::printf("%u", value);
  /external/valgrind/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; }
unit_bitmap.c 57 UInt VG_(printf)(const HChar *format, ...) function
60 { UInt ret; va_list vargs; va_start(vargs, format); ret = vprintf(format, vargs); va_end(vargs); printf("\n"); return ret; }
111 VG_(printf)("Bitmaps are different.\n");
117 printf("0x%x %c %c %c %c\n",
166 VG_(printf)("Deleting bitmap bm\n");
169 VG_(printf)("Deleting bitmap bm2\n");
  /frameworks/base/tools/aapt/
SourcePos.cpp 134 SourcePos::printf(const char* fmt, ...) const function in class:SourcePos
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
stdio2.h 103 printf (__const char *__restrict __fmt, ...) function
108 # define printf(...) \ macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
stdio2.h 103 printf (__const char *__restrict __fmt, ...) function
108 # define printf(...) \ macro
  /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/annotation-tools/annotation-file-utilities/src/annotator/find/
InClassCriterion.java 276 System.out.printf(message, args);
  /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
  /external/syslinux/dos/
printf.c 4 * actually running. This version of printf() does not include 64-bit
10 * printf() isn't actually needed to build syslinux.com, but during
295 int printf(const char *fmt, ...) function
  /external/syslinux/gpxe/src/include/
cmdlinelib.h 57 cmdl_printf_t printf; member in struct:__anon38199
  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/SysCall/
CrtWrapper.c 457 int printf (char const *fmt, ...) function
  /external/mesa3d/src/gallium/drivers/freedreno/ir3/
disasm-a3xx.c 37 #define printf debug_printf macro
80 printf("(absneg)");
82 printf("(neg)");
84 printf("(abs)");
87 printf("(r)");
90 printf("%d", reg.iim_val);
96 printf("%s%c<a0.x - %d>", full ? "" : "h", type, -reg.iim_val);
98 printf("%s%c<a0.x + %d>", full ? "" : "h", type, reg.iim_val);
100 printf("%s%c<a0.x>", full ? "" : "h", type);
102 printf("a0.%c", component[reg.comp])
    [all...]
  /external/pdfium/fxjs/
cjs_util.cpp 62 {"printf", printf_static},
81 CJS_Return util::printf(CJS_Runtime* pRuntime, function in class:util
391 // Ensure that sFormat contains at most one well-understood printf formatting
394 // to use sFormat with printf() and it must be copied byte-by-byte.
  /external/syslinux/gpxe/src/core/
vsprintf.c 144 * Print character via a printf context
158 * Write a formatted string to a printf context
415 int printf ( const char *fmt, ... ) { function
  /external/syslinux/memdisk/
conio.c 55 * actually running. This version of printf() does not include 64-bit
370 int printf(const char *fmt, ...) function
  /frameworks/base/core/java/com/android/internal/os/
LoggingPrintStream.java 176 public PrintStream printf(String format, Object... args) { method in class:LoggingPrintStream
181 public PrintStream printf(Locale l, String format, Object... args) { method in class:LoggingPrintStream
  /libcore/ojluni/src/main/java/java/io/
Console.java 56 * {@link #printf printf()} as well as the read, format and write operations
179 * <p> An invocation of this method of the form <tt>con.printf(format,
209 public Console printf(String format, Object ... args) { method in class:Console
PrintStream.java 862 * <p> An invocation of this method of the form <tt>out.printf(format,
899 public PrintStream printf(String format, Object ... args) { method in class:PrintStream
907 * <p> An invocation of this method of the form <tt>out.printf(l, format
949 public PrintStream printf(Locale l, String format, Object ... args) { method in class:PrintStream
    [all...]
PrintWriter.java 42 * it will be done only when one of the <tt>println</tt>, <tt>printf</tt>, or
108 * <tt>printf</tt>, or <tt>format</tt> methods will
142 * <tt>printf</tt>, or <tt>format</tt> methods will
766 * <p> An invocation of this method of the form <tt>out.printf(format,
803 public PrintWriter printf(String format, Object ... args) { method in class:PrintWriter
812 * <p> An invocation of this method of the form <tt>out.printf(l, format,
854 public PrintWriter printf(Locale l, String format, Object ... args) { method in class:PrintWriter
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vet/testdata/
print.go 5 // This file contains tests for the printf checker.
21 // For testing printf-like functions from external package.
27 fmt.Printf("%p, %x %X", up, up, up)
70 fmt.Printf("")
71 fmt.Printf("%b %b %b", 3, i, x)
72 fmt.Printf("%c %c %c %c", 3, i, 'x', r)
73 fmt.Printf("%d %d %d", 3, i, imap)
74 fmt.Printf("%e %e %e %e", 3e9, x, fslice, c)
75 fmt.Printf("%E %E %E %E", 3e9, x, fslice, c)
76 fmt.Printf("%f %f %f %f", 3e9, x, fslice, c
333 func printf(format string, args ...interface{}) { func
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vet/testdata/
print.go 5 // This file contains tests for the printf checker.
21 // For testing printf-like functions from external package.
27 fmt.Printf("%p, %x %X", up, up, up)
70 fmt.Printf("")
71 fmt.Printf("%b %b %b", 3, i, x)
72 fmt.Printf("%c %c %c %c", 3, i, 'x', r)
73 fmt.Printf("%d %d %d", 3, i, imap)
74 fmt.Printf("%e %e %e %e", 3e9, x, fslice, c)
75 fmt.Printf("%E %E %E %E", 3e9, x, fslice, c)
76 fmt.Printf("%f %f %f %f", 3e9, x, fslice, c
333 func printf(format string, args ...interface{}) { func
    [all...]
  /prebuilts/misc/common/jacoco/src/main/java/com/google/android/jacoco/reporter/
ReportGenerator.java 152 System.err.printf(errorMessage, args);

Completed in 630 milliseconds

12 3 4 5