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

Declarations

tools/lldb/include/lldb/API/SBDefines.h
   68 class LLDB_API SBStringList;
tools/lldb/tools/lldb-vscode/VSCodeForward.h
   40 class SBStringList;

References

gen/tools/lldb/scripts/LLDBWrapPython.cpp
 8816   lldb::SBStringList *arg2 = 0 ;
 8853   lldb::SBStringList *arg2 = 0 ;
 9004   lldb::SBStringList *arg2 = 0 ;
10453   lldb::SBStringList *arg2 = 0 ;
10490   lldb::SBStringList *arg2 = 0 ;
11969   lldb::SBStringList *arg2 = 0 ;
12006   lldb::SBStringList *arg2 = 0 ;
14850   lldb::SBStringList *arg6 = 0 ;
14927   lldb::SBStringList *arg6 = 0 ;
14928   lldb::SBStringList *arg7 = 0 ;
23276   lldb::SBStringList result;
45957   lldb::SBStringList *arg3 = 0 ;
49388   lldb::SBStringList *result = 0 ;
49393     result = (lldb::SBStringList *)new lldb::SBStringList();
49405   lldb::SBStringList *arg1 = 0 ;
49409   lldb::SBStringList *result = 0 ;
49422     result = (lldb::SBStringList *)new lldb::SBStringList((lldb::SBStringList const &)*arg1);
49467   lldb::SBStringList *arg1 = (lldb::SBStringList *) 0 ;
49492   lldb::SBStringList *arg1 = (lldb::SBStringList *) 0 ;
49518   lldb::SBStringList *arg1 = (lldb::SBStringList *) 0 ;
49544   lldb::SBStringList *arg1 = (lldb::SBStringList *) 0 ;
49581   lldb::SBStringList *arg1 = (lldb::SBStringList *) 0 ;
49648   lldb::SBStringList *arg1 = (lldb::SBStringList *) 0 ;
49649   lldb::SBStringList *arg2 = 0 ;
49756   lldb::SBStringList *arg1 = (lldb::SBStringList *) 0 ;
49782   lldb::SBStringList *arg1 = (lldb::SBStringList *) 0 ;
49817   lldb::SBStringList *arg1 = (lldb::SBStringList *) 0 ;
50121   lldb::SBStringList *arg2 = 0 ;
57175   lldb::SBStringList *arg5 = 0 ;
57935   lldb::SBStringList *arg2 = 0 ;
58101   lldb::SBStringList *arg3 = 0 ;
tools/lldb/include/lldb/API/SBBreakpoint.h
  100   void SetCommandLineCommands(SBStringList &commands);
  102   bool GetCommandLineCommands(SBStringList &commands);
  112   void GetNames(SBStringList &names);
tools/lldb/include/lldb/API/SBBreakpointLocation.h
   63   void SetCommandLineCommands(lldb::SBStringList &commands);
   65   bool GetCommandLineCommands(lldb::SBStringList &commands);
tools/lldb/include/lldb/API/SBBreakpointName.h
   91   void SetCommandLineCommands(lldb::SBStringList &commands);
   93   bool GetCommandLineCommands(lldb::SBStringList &commands);
tools/lldb/include/lldb/API/SBCommandInterpreter.h
  160                        int max_return_elements, lldb::SBStringList &matches);
  164                        lldb::SBStringList &matches);
  171       lldb::SBStringList &matches, lldb::SBStringList &descriptions);
  171       lldb::SBStringList &matches, lldb::SBStringList &descriptions);
  177                                        lldb::SBStringList &matches,
  178                                        lldb::SBStringList &descriptions);
tools/lldb/include/lldb/API/SBDebugger.h
  241   static lldb::SBStringList
tools/lldb/include/lldb/API/SBProcess.h
  325                                SBStringList &paths,
tools/lldb/include/lldb/API/SBStringList.h
   20   SBStringList(const lldb::SBStringList &rhs);
   22   const SBStringList &operator=(const SBStringList &rhs);
   22   const SBStringList &operator=(const SBStringList &rhs);
   34   void AppendList(const lldb::SBStringList &strings);
tools/lldb/include/lldb/API/SBStructuredData.h
   53    bool GetKeys(lldb::SBStringList &keys) const;
tools/lldb/include/lldb/API/SBTarget.h
  619       const SBFileSpecList &source_file, const SBStringList &func_names);
  687                                           SBStringList &matching_names,
  730   void GetBreakpointNames(SBStringList &names);
tools/lldb/include/lldb/Utility/ReproducerInstrumentation.h
   31 inline void stringify_append(llvm::raw_string_ostream &ss, const T &t) {
   47 inline void stringify_helper(llvm::raw_string_ostream &ss, const Head &head) {
   52 inline void stringify_helper(llvm::raw_string_ostream &ss, const Head &head,
   53                              const Tail &... tail) {
   59 template <typename... Ts> inline std::string stringify_args(const Ts &... ts) {
  201   template <typename T> T *GetObjectForIndex(unsigned idx) {
  208   template <typename T> void AddObjectForIndex(unsigned idx, T *object) {
  249       typename std::conditional<std::is_fundamental<T>::value,
  253   typedef typename std::conditional<std::is_fundamental<T>::value,
  285   template <typename T> void HandleReplayResult(const T &t) {
  287     if (std::is_fundamental<T>::value)
  290     m_index_to_object.AddObjectForIndex(result, new T(t));
  294   template <typename T> void HandleReplayResult(T *t) {
  296     if (std::is_fundamental<T>::value)
  375     static Result doit(Deserializer &deserializer,
  376                        Result (*f)(Deserialized..., Head, Tail...),
  379           template deserialized<Result, Deserialized..., Head>::doit(
  387     static Result doit(Deserializer &deserializer, Result (*f)(Deserialized...),
  387     static Result doit(Deserializer &deserializer, Result (*f)(Deserialized...),
  404   DefaultReplayer(Result (*f)(Args...)) : Replayer(), f(f) {}
  408         DeserializationHelper<Args...>::template deserialized<Result>::doit(
  412   Result (*f)(Args...);
  501   static Class *doit(Args... args) { return new Class(args...); }
  501   static Class *doit(Args... args) { return new Class(args...); }
  510     static Result doit(Class *c, Args... args) { return (c->*m)(args...); }
  510     static Result doit(Class *c, Args... args) { return (c->*m)(args...); }
  517     static Result doit(Class *c, Args... args) { return (c->*m)(args...); }
  517     static Result doit(Class *c, Args... args) { return (c->*m)(args...); }
  524     static void doit(Class *c, Args... args) { (c->*m)(args...); }
  524     static void doit(Class *c, Args... args) { (c->*m)(args...); }
  535   template <typename T> unsigned GetIndexForObject(T *t) {
  552   void SerializeAll(const Head &head, const Tail &... tail) {
  552   void SerializeAll(const Head &head, const Tail &... tail) {
  563   template <typename T> void Serialize(T *t) {
  564     if (std::is_fundamental<T>::value) {
  575   template <typename T> void Serialize(T &t) {
  576     if (std::is_fundamental<T>::value) {
  577       m_stream.write(reinterpret_cast<const char *>(&t), sizeof(T));
  636   void Record(Serializer &serializer, Registry &registry, Result (*f)(FArgs...),
  637               const RArgs &... args) {
  652             typename std::remove_reference<Result>::type>::type>::value) {
  683   template <typename Result> Result RecordResult(Result &&r) {
  683   template <typename Result> Result RecordResult(Result &&r) {
  690     return std::forward<Result>(r);
tools/lldb/source/API/SBBreakpoint.cpp
  484 void SBBreakpoint::SetCommandLineCommands(SBStringList &commands) {
  502 bool SBBreakpoint::GetCommandLineCommands(SBStringList &commands) {
  698 void SBBreakpoint::GetNames(SBStringList &names) {
tools/lldb/source/API/SBBreakpointLocation.cpp
  271 void SBBreakpointLocation::SetCommandLineCommands(SBStringList &commands) {
  289 bool SBBreakpointLocation::GetCommandLineCommands(SBStringList &commands) {
tools/lldb/source/API/SBBreakpointName.cpp
  472 void SBBreakpointName::SetCommandLineCommands(SBStringList &commands) {
  492 bool SBBreakpointName::GetCommandLineCommands(SBStringList &commands) {
tools/lldb/source/API/SBCommandInterpreter.cpp
  331     int match_start_point, int max_return_elements, SBStringList &matches) {
  338   SBStringList dummy_descriptions;
  346     int match_start_point, int max_return_elements, SBStringList &matches,
  347     SBStringList &descriptions) {
  407   SBStringList temp_matches_list(&lldb_matches);
  409   SBStringList temp_descriptions_list(&lldb_descriptions);
  416     int max_return_elements, SBStringList &matches,
  417     SBStringList &descriptions) {
  436                                            lldb::SBStringList &matches) {
tools/lldb/source/API/SBDebugger.cpp
 1256 SBStringList
 1263   SBStringList ret_value;
tools/lldb/source/API/SBProcess.cpp
 1067                                         SBStringList &paths,
tools/lldb/source/API/SBReproducer.cpp
   81   RegisterMethods<SBStringList>(R);
tools/lldb/source/API/SBStringList.cpp
   27 SBStringList::SBStringList(const SBStringList &rhs) : m_opaque_up() {
   33 const SBStringList &SBStringList::operator=(const SBStringList &rhs) {
   33 const SBStringList &SBStringList::operator=(const SBStringList &rhs) {
   85 void SBStringList::AppendList(const SBStringList &strings) {
  143 void RegisterMethods<SBStringList>(Registry &R) {
tools/lldb/source/API/SBStructuredData.cpp
  123 bool SBStructuredData::GetKeys(lldb::SBStringList &keys) const {
tools/lldb/source/API/SBTarget.cpp
 1044     const SBStringList &func_names) {
 1192 void SBTarget::GetBreakpointNames(SBStringList &names) {
 1262   SBStringList empty_name_list;
 1268                                                   SBStringList &matching_names,
usr/include/c++/7.4.0/bits/move.h
   72     constexpr _Tp&&
   73     forward(typename std::remove_reference<_Tp>::type& __t) noexcept
   83     constexpr _Tp&&
   84     forward(typename std::remove_reference<_Tp>::type&& __t) noexcept
usr/include/c++/7.4.0/type_traits
  215     : public __is_void_helper<typename remove_cv<_Tp>::type>::type
  326     : public __is_integral_helper<typename remove_cv<_Tp>::type>::type
  354     : public __is_floating_point_helper<typename remove_cv<_Tp>::type>::type
  567     : public __is_null_pointer_helper<typename remove_cv<_Tp>::type>::type
  588     : public __or_<is_integral<_Tp>, is_floating_point<_Tp>>::type
  588     : public __or_<is_integral<_Tp>, is_floating_point<_Tp>>::type
  594     : public __or_<is_arithmetic<_Tp>, is_void<_Tp>,
  594     : public __or_<is_arithmetic<_Tp>, is_void<_Tp>,
  595 		   is_null_pointer<_Tp>>::type
 1554     { typedef _Tp     type; };
 1558     { typedef _Tp     type; };
 1563     { typedef _Tp     type; };
 1574       remove_const<typename remove_volatile<_Tp>::type>::type     type;
 1629     { typedef _Tp   type; };
 1633     { typedef _Tp   type; };
 1979     { typedef _Tp     type; };
 1983     { typedef _Up     type; };
 1988     : public __remove_pointer_helper<_Tp, typename remove_cv<_Tp>::type>
 1988     : public __remove_pointer_helper<_Tp, typename remove_cv<_Tp>::type>