Searched refs:SBTypeSynthetic (Results 1 – 19 of 19) sorted by relevance
| /freebsd-12-stable/contrib/llvm-project/lldb/source/API/ |
| D | SBTypeSynthetic.cpp | 19 SBTypeSynthetic::SBTypeSynthetic() : m_opaque_sp() { in SBTypeSynthetic() function in SBTypeSynthetic 20 LLDB_RECORD_CONSTRUCTOR_NO_ARGS(SBTypeSynthetic); in SBTypeSynthetic() 23 SBTypeSynthetic SBTypeSynthetic::CreateWithClassName(const char *data, in CreateWithClassName() 25 LLDB_RECORD_STATIC_METHOD(lldb::SBTypeSynthetic, SBTypeSynthetic, in CreateWithClassName() 30 return LLDB_RECORD_RESULT(SBTypeSynthetic()); in CreateWithClassName() 31 return LLDB_RECORD_RESULT(SBTypeSynthetic(ScriptedSyntheticChildrenSP( in CreateWithClassName() 35 SBTypeSynthetic SBTypeSynthetic::CreateWithScriptCode(const char *data, in CreateWithScriptCode() 37 LLDB_RECORD_STATIC_METHOD(lldb::SBTypeSynthetic, SBTypeSynthetic, in CreateWithScriptCode() 42 return LLDB_RECORD_RESULT(SBTypeSynthetic()); in CreateWithScriptCode() 43 return LLDB_RECORD_RESULT(SBTypeSynthetic(ScriptedSyntheticChildrenSP( in CreateWithScriptCode() [all …]
|
| D | SBTypeCategory.cpp | 265 SBTypeSynthetic SBTypeCategory::GetSyntheticForType(SBTypeNameSpecifier spec) { in GetSyntheticForType() 266 LLDB_RECORD_METHOD(lldb::SBTypeSynthetic, SBTypeCategory, GetSyntheticForType, in GetSyntheticForType() 270 return LLDB_RECORD_RESULT(SBTypeSynthetic()); in GetSyntheticForType() 273 return LLDB_RECORD_RESULT(SBTypeSynthetic()); in GetSyntheticForType() 285 return LLDB_RECORD_RESULT(lldb::SBTypeSynthetic()); in GetSyntheticForType() 290 return LLDB_RECORD_RESULT(lldb::SBTypeSynthetic(synth_sp)); in GetSyntheticForType() 331 SBTypeSynthetic SBTypeCategory::GetSyntheticAtIndex(uint32_t index) { in GetSyntheticAtIndex() 332 LLDB_RECORD_METHOD(lldb::SBTypeSynthetic, SBTypeCategory, GetSyntheticAtIndex, in GetSyntheticAtIndex() 336 return LLDB_RECORD_RESULT(SBTypeSynthetic()); in GetSyntheticAtIndex() 341 return LLDB_RECORD_RESULT(lldb::SBTypeSynthetic()); in GetSyntheticAtIndex() [all …]
|
| D | SBDebugger.cpp | 1645 SBTypeSynthetic SBDebugger::GetSyntheticForType(SBTypeNameSpecifier type_name) { in GetSyntheticForType() 1646 LLDB_RECORD_METHOD(lldb::SBTypeSynthetic, SBDebugger, GetSyntheticForType, in GetSyntheticForType() 1650 return LLDB_RECORD_RESULT(SBTypeSynthetic()); in GetSyntheticForType() 1651 return LLDB_RECORD_RESULT(SBTypeSynthetic( in GetSyntheticForType() 1886 LLDB_REGISTER_METHOD(lldb::SBTypeSynthetic, SBDebugger, GetSyntheticForType, in RegisterMethods()
|
| D | SBValue.cpp | 542 lldb::SBTypeSynthetic SBValue::GetTypeSynthetic() { in GetTypeSynthetic() 543 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBTypeSynthetic, SBValue, GetTypeSynthetic); in GetTypeSynthetic() 545 lldb::SBTypeSynthetic synthetic; in GetTypeSynthetic() 1581 LLDB_REGISTER_METHOD(lldb::SBTypeSynthetic, SBValue, GetTypeSynthetic, ()); in RegisterMethods()
|
| D | SBReproducer.cpp | 128 RegisterMethods<SBTypeSynthetic>(R); in SBRegistry()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/API/ |
| D | SBTypeSynthetic.h | 17 class LLDB_API SBTypeSynthetic { 19 SBTypeSynthetic(); 21 static SBTypeSynthetic 25 static SBTypeSynthetic 29 SBTypeSynthetic(const lldb::SBTypeSynthetic &rhs); 31 ~SBTypeSynthetic(); 54 lldb::SBTypeSynthetic &operator=(const lldb::SBTypeSynthetic &rhs); 56 bool IsEqualTo(lldb::SBTypeSynthetic &rhs); 58 bool operator==(lldb::SBTypeSynthetic &rhs); 60 bool operator!=(lldb::SBTypeSynthetic &rhs); [all …]
|
| D | SBTypeCategory.h | 66 SBTypeSynthetic GetSyntheticForType(SBTypeNameSpecifier); 74 SBTypeSynthetic GetSyntheticAtIndex(uint32_t); 88 bool AddTypeSynthetic(SBTypeNameSpecifier, SBTypeSynthetic);
|
| D | SBDefines.h | 89 class LLDB_API SBTypeSynthetic; variable
|
| D | SBValue.h | 113 lldb::SBTypeSynthetic GetTypeSynthetic();
|
| D | SBDebugger.h | 329 SBTypeSynthetic GetSyntheticForType(SBTypeNameSpecifier);
|
| /freebsd-12-stable/contrib/llvm-project/lldb/bindings/interface/ |
| D | SBTypeSynthetic.i | 12 "Represents a summary that can be associated to one or more types.") SBTypeSynthetic; 14 class SBTypeSynthetic 18 SBTypeSynthetic(); 20 static lldb::SBTypeSynthetic 23 static lldb::SBTypeSynthetic 26 SBTypeSynthetic (const lldb::SBTypeSynthetic &rhs); 28 ~SBTypeSynthetic (); 36 IsEqualTo (lldb::SBTypeSynthetic &rhs); 61 operator == (lldb::SBTypeSynthetic &rhs); 64 operator != (lldb::SBTypeSynthetic &rhs); [all …]
|
| D | SBTypeCategory.i | 84 lldb::SBTypeSynthetic 96 lldb::SBTypeSynthetic 122 lldb::SBTypeSynthetic);
|
| D | SBDebugger.i | 479 lldb::SBTypeSynthetic
|
| D | SBValue.i | 183 lldb::SBTypeSynthetic
|
| /freebsd-12-stable/contrib/llvm-project/lldb/bindings/ |
| D | interfaces.swig | 79 %include "./interface/SBTypeSynthetic.i"
|
| D | headers.swig | 72 #include "lldb/API/SBTypeSynthetic.h"
|
| /freebsd-12-stable/lib/clang/liblldb/ |
| D | LLDBWrapLua.cpp | 3631 SWIGINTERN std::string lldb_SBTypeSynthetic___str__(lldb::SBTypeSynthetic *self){ in lldb_SBTypeSynthetic___str__() 20470 lldb::SBTypeSynthetic result; in _wrap_SBDebugger_GetSyntheticForType() 20488 …lldb::SBTypeSynthetic * resultptr = new lldb::SBTypeSynthetic((const lldb::SBTypeSynthetic &) resu… in _wrap_SBDebugger_GetSyntheticForType() 60646 lldb::SBTypeSynthetic result; in _wrap_SBTypeCategory_GetSyntheticForType() 60664 …lldb::SBTypeSynthetic * resultptr = new lldb::SBTypeSynthetic((const lldb::SBTypeSynthetic &) resu… in _wrap_SBTypeCategory_GetSyntheticForType() 60771 lldb::SBTypeSynthetic result; in _wrap_SBTypeCategory_GetSyntheticAtIndex() 60784 …lldb::SBTypeSynthetic * resultptr = new lldb::SBTypeSynthetic((const lldb::SBTypeSynthetic &) resu… in _wrap_SBTypeCategory_GetSyntheticAtIndex() 61026 lldb::SBTypeSynthetic arg3 ; in _wrap_SBTypeCategory_AddTypeSynthetic() 61028 lldb::SBTypeSynthetic *argp3 ; in _wrap_SBTypeCategory_AddTypeSynthetic() 64283 lldb::SBTypeSynthetic *result = 0 ; in _wrap_new_SBTypeSynthetic__SWIG_0() [all …]
|
| D | Makefile | 82 SRCS+= API/SBTypeSynthetic.cpp
|
| /freebsd-12-stable/contrib/llvm-project/lldb/bindings/python/ |
| D | python-extensions.swig | 237 %extend lldb::SBTypeSynthetic {
|