HomeSort by relevance Sort by last modified time
    Searched defs:sstr (Results 1 - 25 of 30) sorted by null

1 2

  /external/lldb/source/DataFormatters/
TypeFormat.cpp 44 StreamString sstr; local
45 sstr.Printf ("%s%s%s%s\n",
50 return sstr.GetString();
TypeSynthetic.cpp 36 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.Printf("%s%s%s Python class %s"
    [all...]
TypeSummary.cpp 132 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/stlport/test/unit/
bitset_test.cpp 82 stringstream sstr; local
84 sstr << b;
85 CPPUNIT_ASSERT( sstr.str() == "1000100010001" );
88 sstr >> b1;
96 wstringstream sstr; local
98 sstr << b;
99 CPPUNIT_ASSERT( sstr.str() == L"1000100010001" );
102 sstr >> b1;
  /ndk/tests/device/test-gnustl-full/unit/
bitset_test.cpp 82 stringstream sstr; local
84 sstr << b;
85 CPPUNIT_ASSERT( sstr.str() == "1000100010001" );
88 sstr >> b1;
96 wstringstream sstr; local
98 sstr << b;
99 CPPUNIT_ASSERT( sstr.str() == L"1000100010001" );
102 sstr >> b1;
  /ndk/tests/device/test-stlport/unit/
bitset_test.cpp 82 stringstream sstr; local
84 sstr << b;
85 CPPUNIT_ASSERT( sstr.str() == "1000100010001" );
88 sstr >> b1;
96 wstringstream sstr; local
98 sstr << b;
99 CPPUNIT_ASSERT( sstr.str() == L"1000100010001" );
102 sstr >> b1;
  /external/lldb/source/API/
SBInputReader.cpp 124 SBStream sstr; local
125 sb_error.GetDescription (sstr);
127 sb_error.get(), sstr.GetData());
SBDeclaration.cpp 84 SBStream sstr; local
85 sb_file_spec.GetDescription (sstr);
87 sb_file_spec.get(), sstr.GetData());
SBEvent.cpp 93 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());
SBValueList.cpp 218 SBStream sstr; local
219 sb_value.GetDescription (sstr);
221 m_opaque_ap.get(), idx, sb_value.GetSP().get(), sstr.GetData());
SBBreakpointLocation.cpp 43 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());
SBCompileUnit.cpp 93 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());
SBLineEntry.cpp 77 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());
SBSymbolContext.cpp 102 SBStream sstr; local
103 sb_module.GetDescription (sstr);
105 m_opaque_ap.get(), module_sp.get(), sstr.GetData());
SBWatchpoint.cpp 42 SBStream sstr; local
43 GetDescription (sstr, lldb::eDescriptionLevelBrief);
45 "=%p) => this.sp = %p (%s)", wp_sp.get(), m_opaque_sp.get(), sstr.GetData());
SBCommandInterpreter.cpp 134 SBStream sstr; local
135 result.GetDescription (sstr);
137 m_opaque_ptr, command_line, result.get(), sstr.GetData(), add_to_history, result.GetStatus());
SBFrame.cpp 64 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());
    [all...]
SBProcess.cpp 194 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...]
SBDebugger.cpp 106 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...]
  /external/lldb/source/Commands/
CommandObjectHelp.cpp 158 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/
IO.h 198 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/
EmulationStateARM.cpp 372 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());
  /ndk/tests/abcc/jni/
Abcc.cpp 285 std::stringstream sstr; local
286 sstr << ifs.rdbuf();
287 LOGE("Error message: %s", sstr.str().c_str());
292 fout << "Error message: " << sstr.str() << "\n";
  /external/chromium_org/third_party/webrtc/base/
linux.cc 279 std::ostringstream sstr; local
286 sstr << "DISTRIB_ID=" << line;
291 sstr << " DISTRIB_DESCRIPTION=\"" << line << '"';
296 sstr << " DISTRIB_RELEASE=" << line;
301 sstr << " DISTRIB_CODENAME=" << line;
314 lsb_release_string = sstr.str();
326 std::ostringstream sstr; local
327 sstr << buf.sysname << " "
331 return sstr.str();
  /external/lldb/source/Core/
DataExtractor.cpp 2036 StreamString sstr; local
    [all...]

Completed in 4690 milliseconds

1 2