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

  /external/chromium_org/third_party/tcmalloc/chromium/src/
raw_printer.cc 50 void RawPrinter::Printf(const char* format, ...) {
  /external/chromium_org/third_party/tcmalloc/vendor/src/
raw_printer.cc 50 void RawPrinter::Printf(const char* format, ...) {
  /external/chromium/third_party/libjingle/source/talk/examples/call/
console.cc 114 printf("\n%s", str);
116 printf("\n(%s) ", prompt_.c_str());
123 void Console::Printf(const char* format, ...) {
  /external/chromium_org/ppapi/native_client/src/untrusted/nacl_ppapi_util/
string_buffer.cc 36 void StringBuffer::Printf(char const *fmt, ...) {
  /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/clang/lib/Basic/
Builtins.cpp 100 const char *Printf = strpbrk(GetRecord(ID).Attributes, "pP");
101 if (!Printf)
104 HasVAListArg = (*Printf == 'P');
106 ++Printf;
107 assert(*Printf == ':' && "p or P specifier must have be followed by a ':'");
108 ++Printf;
110 assert(strchr(Printf, ':') && "printf specifier must end with a ':'");
111 FormatIdx = strtol(Printf, 0, 10);
129 assert(strchr(Scanf, ':') && "printf specifier must end with a ':'")
    [all...]
  /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...]

Completed in 284 milliseconds