Searched defs:Printf (Results 1 - 5 of 5) sorted by relevance

/external/clang/test/SemaCXX/
H A Dprintf-cstr.cpp42 struct Printf { struct
43 Printf();
44 Printf(const Printf&);
45 Printf(const char *,...) __attribute__((__format__(__printf__,2,3)));
51 Printf p("%s %d %s", str, 10, 10); // expected-warning {{format specifies type 'char *' but the argument has type 'int'}}
52 Printf q("%s %d", hcs, 10); // expected-warning {{cannot pass non-POD object of type 'HasCStr' to variadic constructor; expected type from format string was 'char *'}} expected-note{{did you mean to call the c_str() method?}}
/external/chromium/third_party/libjingle/source/talk/examples/call/
H A Dconsole.cc123 void Console::Printf(const char* format, ...) { function in class:Console
/external/clang/lib/Basic/
H A DBuiltins.cpp87 const char *Printf = strpbrk(GetRecord(ID).Attributes, "pP"); local
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);
/external/valgrind/tsan/
H A Dts_dynamorio.cc79 #define Printf dr_printf macro
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);
H A Dts_util.cc140 void Printf(const char *format, ...) { function
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 264 milliseconds