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

Declarations

tools/lldb/include/lldb/API/SBDefines.h
   42 class LLDB_API SBExecutionContext;

References

gen/tools/lldb/scripts/LLDBWrapPython.cpp
14518   lldb::SBExecutionContext *arg3 = 0 ;
14589   lldb::SBExecutionContext *arg3 = 0 ;
14769   lldb::SBExecutionContext *arg3 = 0 ;
26079   lldb::SBExecutionContext *result = 0 ;
26084     result = (lldb::SBExecutionContext *)new lldb::SBExecutionContext();
26096   lldb::SBExecutionContext *arg1 = 0 ;
26100   lldb::SBExecutionContext *result = 0 ;
26113     result = (lldb::SBExecutionContext *)new lldb::SBExecutionContext((lldb::SBExecutionContext const &)*arg1);
26129   lldb::SBExecutionContext *result = 0 ;
26142     result = (lldb::SBExecutionContext *)new lldb::SBExecutionContext((lldb::SBTarget const &)*arg1);
26158   lldb::SBExecutionContext *result = 0 ;
26171     result = (lldb::SBExecutionContext *)new lldb::SBExecutionContext((lldb::SBProcess const &)*arg1);
26187   lldb::SBExecutionContext *result = 0 ;
26205     result = (lldb::SBExecutionContext *)new lldb::SBExecutionContext(arg1);
26221   lldb::SBExecutionContext *result = 0 ;
26234     result = (lldb::SBExecutionContext *)new lldb::SBExecutionContext((lldb::SBFrame const &)*arg1);
26315   lldb::SBExecutionContext *arg1 = (lldb::SBExecutionContext *) 0 ;
26340   lldb::SBExecutionContext *arg1 = (lldb::SBExecutionContext *) 0 ;
26366   lldb::SBExecutionContext *arg1 = (lldb::SBExecutionContext *) 0 ;
26392   lldb::SBExecutionContext *arg1 = (lldb::SBExecutionContext *) 0 ;
26418   lldb::SBExecutionContext *arg1 = (lldb::SBExecutionContext *) 0 ;
80197     lldb::SBExecutionContext exe_ctx_sb(exe_ctx_ref_sp);
80237     lldb::SBExecutionContext exe_ctx_sb(exe_ctx_ref_sp);
tools/lldb/include/lldb/API/SBCommandInterpreter.h
  132                                    SBExecutionContext &exe_ctx,
  137                               lldb::SBExecutionContext &override_context,
tools/lldb/include/lldb/API/SBExecutionContext.h
   26   SBExecutionContext(const lldb::SBExecutionContext &rhs);
   42   const SBExecutionContext &operator=(const lldb::SBExecutionContext &rhs);
   42   const SBExecutionContext &operator=(const lldb::SBExecutionContext &rhs);
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)
  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...); }
  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));
  637               const RArgs &... args) {
  683   template <typename Result> Result RecordResult(Result &&r) {
tools/lldb/scripts/Python/python-swigsafecast.swig
    9 SBTypeToSWIGWrapper (SBClass& sb_object)
   16 SBTypeToSWIGWrapper (const SBClass& sb_object)
  130 SBTypeToSWIGWrapper (lldb::SBExecutionContext* ctx_sb)
tools/lldb/source/API/SBCommandInterpreter.cpp
  258   SBExecutionContext sb_exe_ctx;
  263     const char *command_line, SBExecutionContext &override_context,
  295     lldb::SBFileSpec &file, lldb::SBExecutionContext &override_context,
tools/lldb/source/API/SBExecutionContext.cpp
   27 SBExecutionContext::SBExecutionContext(const lldb::SBExecutionContext &rhs)
   71 const SBExecutionContext &SBExecutionContext::
   72 operator=(const lldb::SBExecutionContext &rhs) {
  140 void RegisterMethods<SBExecutionContext>(Registry &R) {
tools/lldb/source/API/SBReproducer.cpp
   53   RegisterMethods<SBExecutionContext>(R);
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;
 1633     { typedef _Tp   type; };
 1983     { typedef _Up     type; };