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

1 2

  /external/clang/test/SemaCXX/
printf-cstr.cpp 6 extern int printf(const char *restrict, ...);
33 printf("%d: %s\n", n, hcs.c_str());
34 printf("%d: %s\n", n, hcs); // expected-warning{{cannot pass non-POD object of type 'HasCStr' to variadic function; expected type from format string was 'char *'}} expected-note{{did you mean to call the c_str() method?}}
35 printf("%d: %s\n", n, hncs); // expected-warning{{cannot pass non-POD object of type 'HasNoCStr' to variadic function; expected type from format string was 'char *'}}
38 printf(formatString, hcs, hncs); // expected-warning{{cannot pass object of non-POD type 'HasCStr' through variadic function}} expected-warning{{cannot pass object of non-POD type 'HasNoCStr' through variadic function}}
39 printf(extstr, hcs, n); // expected-warning{{cannot pass object of non-POD type 'HasCStr' through variadic function}}
42 struct Printf {
43 Printf();
44 Printf(const Printf&)
    [all...]
  /external/tensorflow/tensorflow/core/lib/strings/
stringprintf.cc 82 string Printf(const char* format, ...) {
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
html.go 343 func (w *HTMLWriter) Printf(msg string, v ...interface{}) {
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
html.go 343 func (w *HTMLWriter) Printf(msg string, v ...interface{}) {
  /build/soong/ui/logger/
logger.go 48 // Arguments to Printf are handled in the manner of fmt.Printf
49 Printf(format string, v ...interface{})
236 // Printf prints to both stderr and the file log.
237 // Arguments are handled in the manner of fmt.Printf.
238 func (s *stdLogger) Printf(format string, v ...interface{}) {
257 // Verbosef is equivalent to Printf, but only goes to the file log unless
279 // Fatalf is equivalent to Printf() followed by a call to panic() that
302 // Panicf is equivalent to Printf() followed by a call to panic().
  /external/llvm/lib/Fuzzer/
FuzzerIO.cpp 48 Printf("No such directory: %s; exiting\n", Dir.c_str());
66 Printf("No such directory: %s; exiting\n", Path.c_str());
88 Printf("%s", FileToString(Path).c_str());
110 Printf("Loaded %zd/%zd files from %s\n", NumLoaded, Files.size(), Path);
135 void Printf(const char *Fmt, ...) {
  /prebuilts/go/darwin-x86/src/log/
log.go 176 // Printf calls l.Output to print to the logger.
177 // Arguments are handled in the manner of fmt.Printf.
178 func (l *Logger) Printf(format string, v ...interface{}) {
196 // Fatalf is equivalent to l.Printf() followed by a call to os.Exit(1).
215 // Panicf is equivalent to l.Printf() followed by a call to panic().
292 // Printf calls Output to print to the standard logger.
293 // Arguments are handled in the manner of fmt.Printf.
294 func Printf(format string, v ...interface{}) {
310 // Fatalf is equivalent to Printf() followed by a call to os.Exit(1).
329 // Panicf is equivalent to Printf() followed by a call to panic()
    [all...]
  /prebuilts/go/linux-x86/src/log/
log.go 176 // Printf calls l.Output to print to the logger.
177 // Arguments are handled in the manner of fmt.Printf.
178 func (l *Logger) Printf(format string, v ...interface{}) {
196 // Fatalf is equivalent to l.Printf() followed by a call to os.Exit(1).
215 // Panicf is equivalent to l.Printf() followed by a call to panic().
292 // Printf calls Output to print to the standard logger.
293 // Arguments are handled in the manner of fmt.Printf.
294 func Printf(format string, v ...interface{}) {
310 // Fatalf is equivalent to Printf() followed by a call to os.Exit(1).
329 // Panicf is equivalent to Printf() followed by a call to panic()
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/doc/
pkg.go 159 func (pkg *Package) Printf(format string, args ...interface{}) {
432 pkg.Printf("package %s // import %q\n\n", pkg.name, importPath)
434 pkg.Printf("WARNING: package source is installed in %q\n", pkg.build.ImportPath)
461 pkg.Printf("%s\n", decl)
486 pkg.Printf("%s\n", pkg.oneLineNode(fun.Decl))
498 pkg.Printf("%s\n", pkg.oneLineNode(typeSpec))
502 pkg.Printf(indent+"%s\n", decl)
507 pkg.Printf(indent+"%s\n", decl)
512 pkg.Printf(indent+"%s\n", pkg.oneLineNode(constructor.Decl))
526 pkg.Printf("\n"
    [all...]
  /prebuilts/go/linux-x86/src/cmd/doc/
pkg.go 159 func (pkg *Package) Printf(format string, args ...interface{}) {
432 pkg.Printf("package %s // import %q\n\n", pkg.name, importPath)
434 pkg.Printf("WARNING: package source is installed in %q\n", pkg.build.ImportPath)
461 pkg.Printf("%s\n", decl)
486 pkg.Printf("%s\n", pkg.oneLineNode(fun.Decl))
498 pkg.Printf("%s\n", pkg.oneLineNode(typeSpec))
502 pkg.Printf(indent+"%s\n", decl)
507 pkg.Printf(indent+"%s\n", decl)
512 pkg.Printf(indent+"%s\n", pkg.oneLineNode(constructor.Decl))
526 pkg.Printf("\n"
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_printf.cc 12 // Internal printf function, used inside run-time libraries.
13 // We can't use libc printf because we intercept some of the functions used
122 "Supported Printf formats: %([0-9]*)?(z|ll)?{d,u,x}; %p; %(\\.\\*)?s; %c\n";
294 void Printf(const char *format, ...) {
301 // Like Printf, but prints the current PID before the output string.
  /prebuilts/go/darwin-x86/src/net/mail/
message.go 38 func (d debugT) Printf(format string, args ...interface{}) {
40 log.Printf(format, args...)
291 debug.Printf("parseAddress: %q", p.s)
320 debug.Printf("parseAddress: not an addr-spec: %v", err)
321 debug.Printf("parseAddress: state is now %q", p.s)
331 debug.Printf("parseAddress: displayName=%q", displayName)
350 debug.Printf("parseAddress: spec=%q", spec)
392 debug.Printf("consumeAddrSpec: %q", p.s)
409 debug.Printf("consumeAddrSpec: parsing quoted-string")
416 debug.Printf("consumeAddrSpec: parsing dot-atom"
    [all...]
  /prebuilts/go/linux-x86/src/net/mail/
message.go 38 func (d debugT) Printf(format string, args ...interface{}) {
40 log.Printf(format, args...)
291 debug.Printf("parseAddress: %q", p.s)
320 debug.Printf("parseAddress: not an addr-spec: %v", err)
321 debug.Printf("parseAddress: state is now %q", p.s)
331 debug.Printf("parseAddress: displayName=%q", displayName)
350 debug.Printf("parseAddress: spec=%q", spec)
392 debug.Printf("consumeAddrSpec: %q", p.s)
409 debug.Printf("consumeAddrSpec: parsing quoted-string")
416 debug.Printf("consumeAddrSpec: parsing dot-atom"
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_graph_dumper.cc 62 // Helpers for Printf and Appendf.
72 // Like tensorflow::strings::Printf/Appendf, but you don't need to call c_str()
75 string Printf(const char* fmt, const Ts&... ts) {
76 return tensorflow::strings::Printf(fmt, PrintfConvert<Ts>()(ts)...);
203 return Printf(
500 Printf(" #%s%d:hover ~ #edge%lld text { fill: %s; }\n"
550 return Printf(fmt, graph_label, Join(edge_css_rules, "\n"));
599 subcomp_label = Printf("Fused expression for <b>%s</b><br/>%s",
613 Printf(R"(style="rounded,filled,bold"; fillcolor="%s"; color="%s;")",
616 subcomp_label = Printf("Subcomputation for <b>%s</b><br/>%s"
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vet/
main.go 86 // They work like boolean flags: we can say vet -printf as well as vet -printf=true
522 // Printf is fmt.Printf guarded by -v.
523 func Printf(format string, args ...interface{}) {
527 fmt.Printf(format+"\n", args...)
  /prebuilts/go/darwin-x86/src/fmt/
print.go 194 // Printf formats according to a format specifier and writes to standard output.
196 func Printf(format string, a ...interface{}) (n int, err error) {
  /prebuilts/go/linux-x86/src/cmd/vet/
main.go 86 // They work like boolean flags: we can say vet -printf as well as vet -printf=true
522 // Printf is fmt.Printf guarded by -v.
523 func Printf(format string, args ...interface{}) {
527 fmt.Printf(format+"\n", args...)
  /prebuilts/go/linux-x86/src/fmt/
print.go 194 // Printf formats according to a format specifier and writes to standard output.
196 func Printf(format string, a ...interface{}) (n int, err error) {
  /external/iputils/
traceroute6.c 289 #define Printf (void)printf
431 printf("traceroute6 utility, iputils-%s\n", SNAPSHOT);
571 Printf("traceroute: unknown addr %s\n", source);
598 Printf("%2d ", ttl);
619 Printf(" %g ms", deltaT(&t1, &t2));
627 Printf(" !N");
631 Printf(" !H");
636 Printf(" !S");
644 Printf(" *");
    [all...]
  /external/vixl/src/aarch32/
macro-assembler-aarch32.cc 352 printf(format, a, b, c, d);
358 printf(format, a, b, c, d);
364 printf(format, a, b, c, d);
370 printf(format, a, b, c, d);
376 printf(format, a, b, c, d);
382 printf(format, a, b, c, d);
388 printf(format, a, b, c, d);
394 printf(format, a, b, c, d);
400 printf(format, a, b, c, d);
406 printf(format, a, b, c, d)
    [all...]
  /system/core/adb/
file_sync_client.cpp 514 void Printf(const char* fmt, ...) __attribute__((__format__(ADB_FORMAT_ARCHETYPE, 2, 3))) {
800 printf("%08x %08x %08x %s\n", mode, size, time, name);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Support/
AMDGPUCodeObjectMetadata.h 392 constexpr char Printf[] = "Printf";
401 /// \brief Printf metadata. Optional.
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Support/
AMDGPUCodeObjectMetadata.h 392 constexpr char Printf[] = "Printf";
401 /// \brief Printf metadata. Optional.
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Support/
AMDGPUMetadata.h 402 constexpr char Printf[] = "Printf";
411 /// \brief Printf metadata. Optional.
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Support/
AMDGPUMetadata.h 402 constexpr char Printf[] = "Printf";
411 /// \brief Printf metadata. Optional.

Completed in 613 milliseconds

1 2