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

Declarations

tools/lldb/include/lldb/API/SBDefines.h
   59 class LLDB_API SBModuleSpec;

References

gen/tools/lldb/scripts/LLDBWrapPython.cpp
 4357 SWIGINTERN PyObject *lldb_SBModuleSpec___str__(lldb::SBModuleSpec *self){
38557   lldb::SBModuleSpec *arg1 = 0 ;
40440   lldb::SBModuleSpec *result = 0 ;
40445     result = (lldb::SBModuleSpec *)new lldb::SBModuleSpec();
40457   lldb::SBModuleSpec *arg1 = 0 ;
40461   lldb::SBModuleSpec *result = 0 ;
40474     result = (lldb::SBModuleSpec *)new lldb::SBModuleSpec((lldb::SBModuleSpec const &)*arg1);
40519   lldb::SBModuleSpec *arg1 = (lldb::SBModuleSpec *) 0 ;
40544   lldb::SBModuleSpec *arg1 = (lldb::SBModuleSpec *) 0 ;
40570   lldb::SBModuleSpec *arg1 = (lldb::SBModuleSpec *) 0 ;
40596   lldb::SBModuleSpec *arg1 = (lldb::SBModuleSpec *) 0 ;
40621   lldb::SBModuleSpec *arg1 = (lldb::SBModuleSpec *) 0 ;
40647   lldb::SBModuleSpec *arg1 = (lldb::SBModuleSpec *) 0 ;
40684   lldb::SBModuleSpec *arg1 = (lldb::SBModuleSpec *) 0 ;
40710   lldb::SBModuleSpec *arg1 = (lldb::SBModuleSpec *) 0 ;
40747   lldb::SBModuleSpec *arg1 = (lldb::SBModuleSpec *) 0 ;
40773   lldb::SBModuleSpec *arg1 = (lldb::SBModuleSpec *) 0 ;
40810   lldb::SBModuleSpec *arg1 = (lldb::SBModuleSpec *) 0 ;
40836   lldb::SBModuleSpec *arg1 = (lldb::SBModuleSpec *) 0 ;
40873   lldb::SBModuleSpec *arg1 = (lldb::SBModuleSpec *) 0 ;
40899   lldb::SBModuleSpec *arg1 = (lldb::SBModuleSpec *) 0 ;
40936   lldb::SBModuleSpec *arg1 = (lldb::SBModuleSpec *) 0 ;
40962   lldb::SBModuleSpec *arg1 = (lldb::SBModuleSpec *) 0 ;
40988   lldb::SBModuleSpec *arg1 = (lldb::SBModuleSpec *) 0 ;
41032   lldb::SBModuleSpec *arg1 = (lldb::SBModuleSpec *) 0 ;
41070   lldb::SBModuleSpec *arg1 = (lldb::SBModuleSpec *) 0 ;
41233   lldb::SBModuleSpec *arg2 = 0 ;
41355   lldb::SBModuleSpec *arg2 = 0 ;
41362   lldb::SBModuleSpec result;
41393   lldb::SBModuleSpec *arg2 = 0 ;
41464   lldb::SBModuleSpec result;
54023   lldb::SBModuleSpec *arg2 = 0 ;
tools/lldb/include/lldb/API/SBModule.h
   26   SBModule(const SBModuleSpec &module_spec);
tools/lldb/include/lldb/API/SBModuleSpec.h
   21   SBModuleSpec(const SBModuleSpec &rhs);
   25   const SBModuleSpec &operator=(const SBModuleSpec &rhs);
   25   const SBModuleSpec &operator=(const SBModuleSpec &rhs);
  102   void Append(const SBModuleSpec &spec);
  106   SBModuleSpec FindFirstMatchingSpec(const SBModuleSpec &match_spec);
  106   SBModuleSpec FindFirstMatchingSpec(const SBModuleSpec &match_spec);
  108   SBModuleSpecList FindMatchingSpecs(const SBModuleSpec &match_spec);
  112   SBModuleSpec GetSpecAtIndex(size_t i);
tools/lldb/include/lldb/API/SBTarget.h
  281   lldb::SBModule AddModule(const SBModuleSpec &module_spec);
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,
  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...); }
  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) {
tools/lldb/source/API/SBModule.cpp
   38 SBModule::SBModule(const SBModuleSpec &module_spec) : m_opaque_sp() {
tools/lldb/source/API/SBModuleSpec.cpp
   26 SBModuleSpec::SBModuleSpec(const SBModuleSpec &rhs) : m_opaque_up() {
   32 const SBModuleSpec &SBModuleSpec::operator=(const SBModuleSpec &rhs) {
   32 const SBModuleSpec &SBModuleSpec::operator=(const SBModuleSpec &rhs) {
  186 void SBModuleSpecList::Append(const SBModuleSpec &spec) {
  206 SBModuleSpec SBModuleSpecList::GetSpecAtIndex(size_t i) {
  210   SBModuleSpec sb_module_spec;
  215 SBModuleSpec
  216 SBModuleSpecList::FindFirstMatchingSpec(const SBModuleSpec &match_spec) {
  221   SBModuleSpec sb_module_spec;
  228 SBModuleSpecList::FindMatchingSpecs(const SBModuleSpec &match_spec) {
  251 void RegisterMethods<SBModuleSpec>(Registry &R) {
tools/lldb/source/API/SBReproducer.cpp
   70   RegisterMethods<SBModuleSpec>(R);
tools/lldb/source/API/SBTarget.cpp
 1594 lldb::SBModule SBTarget::AddModule(const SBModuleSpec &module_spec) {
usr/include/c++/7.4.0/bits/move.h
   72     constexpr _Tp&&
   83     constexpr _Tp&&
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>