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

  /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/clang/lib/Basic/
Builtins.cpp 87 const char *Printf = strpbrk(GetRecord(ID).Attributes, "pP");
88 if (!Printf)
91 HasVAListArg = (*Printf == 'P');
93 ++Printf;
94 assert(*Printf == ':' && "p or P specifier must have be followed by a ':'");
95 ++Printf;
97 assert(strchr(Printf, ':') && "printf specifier must end with a ':'");
98 FormatIdx = strtol(Printf, 0, 10);
116 assert(strchr(Scanf, ':') && "printf specifier must end with a ':'")
    [all...]
  /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/valgrind/tsan/
ts_dynamorio.cc 79 #define Printf dr_printf
111 Printf("T%d Shadow stack (%d)\n", t.tid, (int)t.shadow_stack.size());
114 Printf("%s[%p]\n", g_main_module_path->c_str(), pc);
119 Printf(" sp=%p pc=%p\n", sp, pc);
128 Printf("T%d PopShadowStack\n", t.tid);
142 Printf("T%d PushShadowStack %p %p %d\n", t.tid, pc, target_pc, sp);
ts_util.cc 140 void Printf(const char *format, ...) {
175 // Printf("Resized buff: %d\n", buff_size);
197 Printf("%s", res.c_str());
436 Printf("PANIC: `%s`\n", demangled.c_str());
444 Printf("PANIC: `%s`\n", demangled.c_str());
533 //Printf("rep::Read: %c\n", buf[0]);
570 //Printf("rep::Read: %c\n", buf[0]);

Completed in 1281 milliseconds