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

1 2 3 4 5 6 7 8 91011>>

  /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/compiler-rt/lib/tsan/rtl/
tsan_report.cc 96 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("%s", d.Access())
    [all...]
  /external/compiler-rt/lib/msan/
msan_report.cc 45 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("Stack depot allocated bytes: %zu\n", stack_depot_stats->allocated)
    [all...]
  /external/lldb/source/Interpreter/
OptionValueString.cpp 26 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/
Declaration.cpp 26 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);
ClangExternalASTSourceCommon.cpp 68 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/
History.cpp 25 strm.Printf ("%s %" PRIu64, m_name.c_str(), (uint64_t)((uintptr_t)event));
UserID.cpp 21 strm.Printf("{0x%8.8" PRIx64 "}", uid.GetID());
  /external/lldb/source/Expression/
ExpressionSourceCode.cpp 66 wrap_stream.Printf("%s \n"
79 wrap_stream.Printf("%s \n"
95 wrap_stream.Printf("%s \n"
114 wrap_stream.Printf("%s \n"
ClangUtilityFunction.cpp 118 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");
IRInterpreter.cpp 109 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("Unsupported operand type: %s", PrintType(operand_type).c_str())
    [all...]
  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFLocationDescription.cpp 64 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("0x%2.2" PRIx64, uint); break
    [all...]
DWARFDebugMacinfoEntry.cpp 56 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/
ThreadPlanStepInstruction.cpp 67 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/
ubsan_diag.cc 95 /// 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);
169 // printf, and stop using snprintf here.
172 Printf("%s", Buffer)
    [all...]
  /external/lldb/source/DataFormatters/
TypeSynthetic.cpp 37 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",
TypeFormat.cpp 45 sstr.Printf ("%s%s%s%s\n",
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_printf_test.cc 22 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/
plugin.cpp 38 result.Printf("%s ",arg);
41 result.Printf("\n");
  /external/chromium_org/ppapi/native_client/src/untrusted/nacl_ppapi_util/
string_buffer.h 23 void Printf(char const *fmt, ...) __attribute__((format(printf, 2, 3)));
  /external/chromium_org/third_party/tcmalloc/chromium/src/
raw_printer.h 33 // A printf() wrapper that writes into a fixed length buffer.
53 // Will printf any data added to this into "buf[0,length-1]" and
67 void Printf(const char* format, ...)
  /external/chromium_org/third_party/tcmalloc/vendor/src/
raw_printer.h 33 // A printf() wrapper that writes into a fixed length buffer.
53 // Will printf any data added to this into "buf[0,length-1]" and
67 void Printf(const char* format, ...)
  /external/compiler-rt/lib/asan/
asan_stats.cc 35 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("Stats: StackDepot: %zd ids; %zdM allocated\n"
    [all...]
  /external/lldb/source/Breakpoint/
BreakpointID.cpp 74 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/
SBFrame.cpp 66 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 ("SBFrame(%p)::GetCompileUnit () => SBCompileUnit(%p)",
    [all...]

Completed in 708 milliseconds

1 2 3 4 5 6 7 8 91011>>