reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/lldb/include/lldb/Utility/Stream.h
  194   Stream &operator<<(llvm::StringRef str);

References

tools/lldb/source/Commands/CommandObjectBreakpoint.cpp
 1348       output_stream << ss.GetString();
tools/lldb/source/Commands/CommandObjectFrame.cpp
 1053       output_stream << recognizer->GetName();
tools/lldb/source/Commands/CommandObjectLog.cpp
  182     result.GetErrorStream() << error_stream.str();
  253       result.GetErrorStream() << error_stream.str();
  306     result.GetOutputStream() << output_stream.str();
tools/lldb/source/Commands/CommandObjectMultiword.cpp
  245     complete_command_name << prefix << " " << command_name;
tools/lldb/source/Commands/CommandObjectType.cpp
 2876             << m_formatter_name << " applied to ("
 2878             << ") " << command << " is: " << description << "\n";
 2878             << ") " << command << " is: " << description << "\n";
 2882             << "no " << m_formatter_name << " applies to ("
 2884             << ") " << command << "\n";
tools/lldb/source/Commands/CommandObjectWatchpoint.cpp
 1029       result.GetErrorStream() << "expression evaluated: \n" << expr << "\n";
tools/lldb/source/Core/FormatEntity.cpp
  871         s << str_temp.GetString();
 1526       s << ss.GetString();
 1568       s << ss.GetString();
 1597       s << ss.GetString();
tools/lldb/source/Core/Highlighter.cpp
   19   s << m_prefix << value << m_suffix;
   19   s << m_prefix << value << m_suffix;
   19   s << m_prefix << value << m_suffix;
   35     s << line;
   45   s << line.substr(0, column);
   49   s << line.substr(column + 1U);
tools/lldb/source/Core/ValueObject.cpp
 1474       s << str;
tools/lldb/source/Interpreter/CommandInterpreter.cpp
 2497       strm << prefix;
 2545   text_strm << separator << " " << help_text;
 2545   text_strm << separator << " " << help_text;
tools/lldb/source/Interpreter/CommandObject.cpp
  845   output_strm << "\nSyntax: " << GetSyntax() << "\n";
tools/lldb/source/Interpreter/CommandObjectRegexCommand.cpp
   65     result.GetOutputStream() << "Command contents '" << command
   68                              << m_cmd_name << "' regex ";
tools/lldb/source/Interpreter/CommandReturnObject.cpp
   66   GetOutputStream() << sstrm.GetString();
   78   GetErrorStream() << "warning: " << sstrm.GetString();
   84   GetOutputStream() << in_string << "\n";
   90   GetErrorStream() << "warning: " << in_string << "\n";
   99   GetErrorStream() << in_string;
  105   GetErrorStream() << "error: " << in_string << "\n";
  130   GetErrorStream() << in_string;
tools/lldb/source/Interpreter/OptionValueFormatEntity.cpp
   62     strm << '"' << escaped << '"';
tools/lldb/source/Interpreter/Options.cpp
  522         strm << " " << args_str.GetString();
  534     strm << " " << arguments_str.GetString();
tools/lldb/source/Interpreter/Property.cpp
  254         strm << "-- " << desc;
tools/lldb/source/Plugins/Language/ClangCommon/ClangHighlighter.cpp
  235     result << line;
tools/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
 4726       *s << all_specs.GetModuleSpecRefAtIndex(i)
tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
 5345           [&output_strm](llvm::StringRef output) { output_strm << output; });
tools/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.cpp
 1033     command_stream << enable_options;
tools/lldb/unittests/Process/gdb-remote/GDBRemoteClientBaseTest.cpp
  356       [&command_output](llvm::StringRef output) { command_output << output; });
tools/lldb/unittests/Utility/StreamTest.cpp
  293   s << llvm::StringRef("llvm::StringRef\n");