Searched defs:sstr (Results 1 - 24 of 24) sorted by relevance

/external/lldb/source/DataFormatters/
H A DTypeFormat.cpp44 StreamString sstr; local
45 sstr.Printf ("%s%s%s%s\n",
50 return sstr.GetString();
H A DTypeSynthetic.cpp36 StreamString sstr; local
37 sstr.Printf("%s%s%s {\n",
44 sstr.Printf(" %s\n",
48 sstr.Printf("}");
49 return sstr.GetString();
55 StreamString sstr; local
56 sstr.Printf("%s%s%s Generator at %p - %s",
63 return sstr.GetString();
104 StreamString sstr; local
105 sstr
[all...]
H A DTypeSummary.cpp132 StreamString sstr; local
134 sstr.Printf ("`%s`%s%s%s%s%s%s%s", m_format.c_str(),
142 return sstr.GetString();
169 StreamString sstr; local
170 sstr.Printf ("`%s (%p) `%s%s%s%s%s%s%s", m_description.c_str(),m_impl,
178 return sstr.GetString();
237 StreamString sstr; local
238 sstr.Printf ("%s%s%s%s%s%s%s\n%s", Cascades() ? "" : " (not cascading)",
246 return sstr.GetString();
/external/lldb/source/API/
H A DSBDeclaration.cpp84 SBStream sstr; local
85 sb_file_spec.GetDescription (sstr);
87 sb_file_spec.get(), sstr.GetData());
H A DSBEvent.cpp93 StreamString sstr; local
94 if (lldb_event && lldb_event->GetBroadcaster() && lldb_event->GetBroadcaster()->GetEventNames(sstr, event_type, true))
95 log->Printf ("SBEvent(%p)::GetType () => 0x%8.8x (%s)", get(), event_type, sstr.GetData());
H A DSBInputReader.cpp124 SBStream sstr; local
125 sb_error.GetDescription (sstr);
127 sb_error.get(), sstr.GetData());
H A DSBLineEntry.cpp77 StreamString sstr; local
80 addr->Dump (&sstr, NULL, Address::DumpStyleModuleWithFileAddress, Address::DumpStyleInvalid, 4);
82 m_opaque_ap.get(), sb_address.get(), sstr.GetData());
100 StreamString sstr; local
103 addr->Dump (&sstr, NULL, Address::DumpStyleModuleWithFileAddress, Address::DumpStyleInvalid, 4);
105 m_opaque_ap.get(), sb_address.get(), sstr.GetData());
128 SBStream sstr; local
129 sb_file_spec.GetDescription (sstr);
131 sb_file_spec.get(), sstr.GetData());
H A DSBValueList.cpp218 SBStream sstr; local
219 sb_value.GetDescription (sstr);
221 m_opaque_ap.get(), idx, sb_value.GetSP().get(), sstr.GetData());
H A DSBBreakpointLocation.cpp43 SBStream sstr; local
44 GetDescription (sstr, lldb::eDescriptionLevelBrief);
46 "=%p) => this.sp = %p (%s)", break_loc_sp.get(), m_opaque_sp.get(), sstr.GetData());
313 SBStream sstr; local
314 sb_bp.GetDescription (sstr);
316 m_opaque_sp.get(), sb_bp.get(), sstr.GetData());
H A DSBCompileUnit.cpp93 SBStream sstr; local
94 sb_line_entry.GetDescription (sstr);
96 m_opaque_ptr, idx, sb_line_entry.get(), sstr.GetData());
133 SBStream sstr; local
202 SBStream sstr; local
203 sb_file_spec.GetDescription (sstr);
205 m_opaque_ptr, idx, sb_file_spec.get(), sstr.GetData());
H A DSBSymbolContext.cpp102 SBStream sstr; local
103 sb_module.GetDescription (sstr);
105 m_opaque_ap.get(), module_sp.get(), sstr.GetData());
H A DSBWatchpoint.cpp42 SBStream sstr; local
43 GetDescription (sstr, lldb::eDescriptionLevelBrief);
45 "=%p) => this.sp = %p (%s)", wp_sp.get(), m_opaque_sp.get(), sstr.GetData());
H A DSBCommandInterpreter.cpp134 SBStream sstr; local
135 result.GetDescription (sstr);
137 m_opaque_ptr, command_line, result.get(), sstr.GetData(), add_to_history, result.GetStatus());
H A DSBFrame.cpp64 SBStream sstr; local
65 GetDescription (sstr);
67 lldb_object_sp.get(), lldb_object_sp.get(), sstr.GetData());
998 SBStream sstr; local
999 sb_thread.GetDescription (sstr);
1003 sstr.GetData());
H A DSBProcess.cpp194 SBStream sstr; local
195 error.GetDescription (sstr);
196 log->Printf ("SBProcess(%p)::RemoteLaunch (...) => SBError (%p): %s", process_sp.get(), error.get(), sstr.GetData());
227 SBStream sstr; local
228 error.GetDescription (sstr);
229 log->Printf ("SBProcess(%p)::RemoteAttachToProcessWithID (%" PRIu64 ") => SBError (%p): %s", process_sp.get(), pid, error.get(), sstr.GetData());
695 SBStream sstr; local
696 sb_error.GetDescription (sstr);
697 log->Printf ("SBProcess(%p)::Continue () => SBError (%p): %s", process_sp.get(), sb_error.get(), sstr.GetData());
720 SBStream sstr; local
748 SBStream sstr; local
775 SBStream sstr; local
825 SBStream sstr; local
1008 SBStream sstr; local
1144 SBStream sstr; local
[all...]
H A DSBDebugger.cpp106 SBStream sstr; local
107 debugger.GetDescription (sstr);
108 log->Printf ("SBDebugger::Create () => SBDebugger(%p): %s", debugger.m_opaque_sp.get(), sstr.GetData());
134 SBStream sstr; local
135 debugger.GetDescription (sstr);
136 log->Printf ("SBDebugger::Destroy () => SBDebugger(%p): %s", debugger.m_opaque_sp.get(), sstr.GetData());
779 SBStream sstr; local
780 sb_target.GetDescription (sstr, eDescriptionLevelBrief);
782 target_sp.get(), sstr.GetData());
800 SBStream sstr; local
[all...]
H A DSBTarget.cpp1301 SBStream sstr; local
1302 sb_bp.GetDescription (sstr);
1310 sstr.GetData());
/external/lldb/source/Commands/
H A DCommandObjectHelp.cpp158 StreamString sstr; local
159 m_interpreter.GetAliasHelp (alias_name.c_str(), cmd_obj->GetCommandName(), sstr);
160 result.GetOutputStream().Printf ("\n'%s' is an abbreviation for %s\n", alias_name.c_str(), sstr.GetData());
/external/eigen/Eigen/src/Core/
H A DIO.h198 std::stringstream sstr; local
199 sstr.copyfmt(s);
200 sstr << m.coeff(i,j);
201 width = std::max<Index>(width, Index(sstr.str().length()));
/external/lldb/source/Plugins/Instruction/ARM/
H A DEmulationStateARM.cpp372 StreamString sstr; local
375 sstr.Clear();
376 sstr.Printf ("r%d", i);
377 ConstString reg_name (sstr.GetData());
394 sstr.Clear();
395 sstr.Printf ("s%d", i);
396 ConstString reg_name (sstr.GetData());
/external/lldb/source/Core/
H A DDataExtractor.cpp2036 StreamString sstr; local
2042 if (sstr.GetSize() > 0)
2044 log->Printf("%s", sstr.GetData());
2045 sstr.Clear();
2049 sstr.Printf("0x%8.8" PRIx64 ":", (uint64_t)(base_addr + (offset - start_offset)));
2054 case TypeUInt8: sstr.Printf (format ? format : " %2.2x", GetU8(&offset)); break;
2058 sstr.Printf (format ? format : " %c", isprint(ch) ? ch : ' ');
2061 case TypeUInt16: sstr.Printf (format ? format : " %4.4x", GetU16(&offset)); break;
2062 case TypeUInt32: sstr.Printf (format ? format : " %8.8x", GetU32(&offset)); break;
2063 case TypeUInt64: sstr
[all...]
H A DValueObject.cpp397 StreamString sstr; local
427 sstr.Printf("0x%*.*llx", addr_nibble_size, addr_nibble_size, value.GetScalar().ULongLong(LLDB_INVALID_ADDRESS));
428 m_location_str.swap(sstr.GetString());
786 StreamString sstr; local
807 so_addr.Dump (&sstr,
820 if (sstr.GetSize() > 0)
823 destination.append (sstr.GetData(), sstr.GetSize());
1358 StreamString sstr; local
1360 clang_type.DumpTypeValue (&sstr, // Th
[all...]
/external/lldb/source/Interpreter/
H A DCommandInterpreter.cpp1094 StreamString sstr; local
1098 GetAliasHelp (pos->first.c_str(), pos->second->GetCommandName(), sstr);
1100 translation_and_help.Printf ("(%s) %s", sstr.GetData(), pos->second->GetHelp());
H A DScriptInterpreterPython.cpp746 StreamString sstr; local
752 sstr.Printf ("%s_%d", base_name_wanted, functions_counter++);
754 sstr.Printf ("%s_%p", base_name_wanted, name_token);
756 return sstr.GetString();
1649 StreamString sstr;
1663 sstr.Clear ();
1664 sstr.Printf (" %s", input.GetStringAtIndex (i));
1665 auto_generated_function.AppendString (sstr.GetData());
1686 StreamString sstr; local
1696 sstr
1711 StreamString sstr; local
1736 StreamString sstr; local
2123 StreamString sstr; local
2144 StreamString sstr; local
[all...]

Completed in 211 milliseconds