Searched refs:Printf (Results 1 - 25 of 376) sorted by relevance

1234567891011>>

/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/compiler-rt/lib/tsan/rtl/
H A Dtsan_report.cc96 Printf(" [failed to restore the stack]\n\n");
100 Printf(" #%d %s %s:%d", i, ent->func, ent->file, ent->line);
102 Printf(":%d", ent->col);
104 Printf(" (%s+%p)\n", ent->module, (void*)ent->offset);
106 Printf(" (%p)\n", (void*)ent->pc);
108 Printf("\n");
114 Printf(" (mutexes:");
116 Printf(" %s M%llu", m.write ? "write" : "read", m.id);
117 Printf(i == mset.Size() - 1 ? ")" : ",");
131 Printf("
[all...]
/external/compiler-rt/lib/msan/
H A Dmsan_report.cc45 Printf("%s", d.Origin());
46 Printf(
67 Printf(" %sinvalid origin id(%d)%s\n", d.Warning(), id, d.End());
82 Printf(" %sUninitialized value was created by a heap allocation%s\n",
91 Printf(" %sUninitialized value was stored to memory at%s\n", d.Origin(),
105 Printf("%s", d.Warning());
107 Printf("%s", d.End());
118 Printf(" WARNING: Expected use of uninitialized value not found\n");
129 Printf("Unique heap origins: %zu\n", stack_depot_stats->n_uniq_ids);
130 Printf("Stac
[all...]
/external/lldb/source/Interpreter/
H A DOptionValueString.cpp26 strm.Printf ("(%s)", GetTypeAsCString ());
38 strm.Printf ("%s", expanded_escape_value.c_str());
40 strm.Printf ("\"%s\"", expanded_escape_value.c_str());
45 strm.Printf ("%s", m_current_value.c_str());
47 strm.Printf ("\"%s\"", m_current_value.c_str());
/external/lldb/source/Symbol/
H A DDeclaration.cpp26 s->Printf(":%u", m_line);
29 s->Printf(":%u", m_column);
36 s->Printf(", line = %u", m_line);
39 s->Printf(":%u", m_column);
44 s->Printf(", column = %u", m_column);
60 s->Printf(":%u", m_line);
63 s->Printf(":%u", m_column);
69 s->Printf(" line %u", m_line);
72 s->Printf(":%u", m_column);
H A DClangExternalASTSourceCommon.cpp68 s->Printf ("uid=0x%" PRIx64, uid);
74 s->Printf ("isa_ptr=0x%" PRIx64, isa_ptr);
80 s->Printf ("obj_ptr_name=\"%s\" ", obj_ptr_name);
85 s->Printf ("is_dynamic_cxx=%i ", m_is_dynamic_cxx);
/external/lldb/source/Core/
H A DHistory.cpp25 strm.Printf ("%s %" PRIu64, m_name.c_str(), (uint64_t)((uintptr_t)event));
H A DUserID.cpp21 strm.Printf("{0x%8.8" PRIx64 "}", uid.GetID());
/external/lldb/source/Expression/
H A DExpressionSourceCode.cpp66 wrap_stream.Printf("%s \n"
79 wrap_stream.Printf("%s \n"
95 wrap_stream.Printf("%s \n"
114 wrap_stream.Printf("%s \n"
H A DClangUtilityFunction.cpp118 error_stream.Printf ("error: %d errors parsing expression\n", num_errors);
144 logfile.Printf ("0x%16.16" PRIx64 ": func = %s, source =\n%s\n",
162 error_stream.Printf ("error: %s\n", error_cstr);
164 error_stream.Printf ("error: expression can't be interpreted or run\n");
H A DIRInterpreter.cpp109 ss.Printf("%s", PrintValue(value).c_str());
117 ss.Printf(" 0x%llx", (unsigned long long)addr);
309 log->Printf("Made an allocation for argument %s", PrintValue(value).c_str());
310 log->Printf(" Data region : %llx", (unsigned long long)address);
311 log->Printf(" Ref region : %llx", (unsigned long long)data_address);
379 ss.Printf("%02hhx - ", buf.GetBytes()[i]);
381 ss.Printf("%02hhx ", buf.GetBytes()[i]);
458 log->Printf("Unsupported instruction: %s", PrintValue(ii).c_str());
485 log->Printf("Unsupported ICmp predicate: %s", PrintValue(ii).c_str());
541 log->Printf("Unsupporte
[all...]
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFLocationDescription.cpp64 s.Printf("%s ", DW_OP_value_to_name (opcode));
74 s.Printf("%" PRIu64 " %" PRIi64, uint, sint);
79 s.Printf("UNKNOWN OP %u", opcode);
153 s.Printf("UNKNOWN ONE-OPERAND OPCODE, #%u", opcode);
159 case -1: sint = (int8_t) data.GetU8(offset_ptr); s.Printf("%+" PRIi64, sint); break;
160 case -2: sint = (int16_t) data.GetU16(offset_ptr); s.Printf("%+" PRIi64, sint); break;
161 case -4: sint = (int32_t) data.GetU32(offset_ptr); s.Printf("%+" PRIi64, sint); break;
162 case -8: sint = (int64_t) data.GetU64(offset_ptr); s.Printf("%+" PRIi64, sint); break;
163 case -128: sint = data.GetSLEB128(offset_ptr); s.Printf("%+" PRIi64, sint); break;
164 case 1: uint = data.GetU8(offset_ptr); s.Printf("
[all...]
H A DDWARFDebugMacinfoEntry.cpp56 s->Printf(" line:%u #define %s\n", (uint32_t)m_line, m_op2.cstr);
60 s->Printf(" line:%u #undef %s\n", (uint32_t)m_line, m_op2.cstr);
64 s->Printf(" line:%u str: '%s'\n", (uint32_t)m_line, m_op2.cstr);
68 s->Printf(" line:%u file index: '%u'\n", (uint32_t)m_line, (uint32_t)m_op2.file_idx);
/external/lldb/source/Target/
H A DThreadPlanStepInstruction.cpp67 s->Printf ("instruction step over");
69 s->Printf ("instruction step into");
73 s->Printf ("Stepping one instruction past ");
76 s->Printf(" which has no symbol");
79 s->Printf(" stepping over calls");
81 s->Printf(" stepping into calls");
144 log->Printf("%s.", s.GetData());
173 log->Printf("Could not find previous frame, stopping.");
218 log->Printf("Completed single instruction step plan.");
/external/compiler-rt/lib/ubsan/
H A Dubsan_diag.cc95 /// Hexadecimal printing for numbers too large for Printf to handle directly.
98 Printf("0x%08x%08x%08x%08x",
131 Printf("%s:", LocBuffer.data());
142 Printf(Buffer);
148 Printf("%s", A.String);
151 Printf("'%s'", Symbolizer::GetOrInit()->Demangle(A.String));
157 Printf("%lld", (long long)A.SInt);
163 Printf("%llu", (unsigned long long)A.UInt);
172 Printf("%s", Buffer);
176 Printf("
[all...]
/external/lldb/source/DataFormatters/
H A DTypeSynthetic.cpp37 sstr.Printf("%s%s%s {\n",
44 sstr.Printf(" %s\n",
48 sstr.Printf("}");
56 sstr.Printf("%s%s%s Generator at %p - %s",
105 sstr.Printf("%s%s%s Python class %s",
H A DTypeFormat.cpp45 sstr.Printf ("%s%s%s%s\n",
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_printf_test.cc22 TEST(Printf, Basic) {
41 TEST(Printf, OverflowStr) {
55 TEST(Printf, OverflowInt) {
68 TEST(Printf, OverflowUint) {
87 TEST(Printf, OverflowPtr) {
121 TEST(Printf, MinMax) {
133 TEST(Printf, Padding) {
146 TEST(Printf, Precision) {
/external/lldb/test/functionalities/plugins/commands/
H A Dplugin.cpp38 result.Printf("%s ",arg);
41 result.Printf("\n");
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Draw_printer.h67 void Printf(const char* format, ...)
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Draw_printer.h67 void Printf(const char* format, ...)
/external/compiler-rt/lib/asan/
H A Dasan_stats.cc35 Printf("%s", prefix);
38 Printf("%zu:%zu; ", i, array[i]);
40 Printf("\n");
44 Printf("Stats: %zuM malloced (%zuM for red zones) by %zu calls\n",
46 Printf("Stats: %zuM realloced by %zu calls\n", realloced>>20, reallocs);
47 Printf("Stats: %zuM freed by %zu calls\n", freed>>20, frees);
48 Printf("Stats: %zuM really freed by %zu calls\n",
50 Printf("Stats: %zuM (%zuM-%zuM) mmaped; %zu maps, %zu unmaps\n",
58 Printf("Stats: malloc large: %zu small slow: %zu\n",
133 Printf("Stat
[all...]
/external/lldb/source/Breakpoint/
H A DBreakpointID.cpp74 s->Printf("%p BreakpointID:", this);
79 s->Printf("%i", m_break_id);
81 s->Printf("%i.%i", m_break_id, m_location_id);
90 s->Printf("%i", bp_id);
92 s->Printf("%i.%i", bp_id, loc_id);
/external/lldb/source/API/
H A DSBFrame.cpp66 log->Printf ("SBFrame::SBFrame (sp=%p) => SBFrame(%p): %s",
133 log->Printf ("SBFrame::GetVariables () => error: could not reconstruct frame object for this SBFrame.");
139 log->Printf ("SBFrame::GetSymbolContext () => error: process is running");
144 log->Printf ("SBFrame(%p)::GetSymbolContext (resolve_scope=0x%8.8x) => SBSymbolContext(%p)",
176 log->Printf ("SBFrame::GetModule () => error: could not reconstruct frame object for this SBFrame.");
182 log->Printf ("SBFrame::GetModule () => error: process is running");
187 log->Printf ("SBFrame(%p)::GetModule () => SBModule(%p)",
217 log->Printf ("SBFrame::GetCompileUnit () => error: could not reconstruct frame object for this SBFrame.");
223 log->Printf ("SBFrame::GetCompileUnit () => error: process is running");
227 log->Printf ("SBFram
[all...]
/external/lldb/source/Plugins/ObjectFile/PECOFF/
H A DObjectFilePECOFF.cpp756 s->Printf("%p: ", this);
795 s->Printf (" e_magic = 0x%4.4x\n", header.e_magic);
796 s->Printf (" e_cblp = 0x%4.4x\n", header.e_cblp);
797 s->Printf (" e_cp = 0x%4.4x\n", header.e_cp);
798 s->Printf (" e_crlc = 0x%4.4x\n", header.e_crlc);
799 s->Printf (" e_cparhdr = 0x%4.4x\n", header.e_cparhdr);
800 s->Printf (" e_minalloc = 0x%4.4x\n", header.e_minalloc);
801 s->Printf (" e_maxalloc = 0x%4.4x\n", header.e_maxalloc);
802 s->Printf (" e_ss = 0x%4.4x\n", header.e_ss);
803 s->Printf (" e_s
[all...]

Completed in 1426 milliseconds

1234567891011>>