/external/llvm-project/lldb/source/API/ |
D | SBSymbolContextList.cpp | 18 SBSymbolContextList::SBSymbolContextList() in SBSymbolContextList() function in SBSymbolContextList 20 LLDB_RECORD_CONSTRUCTOR_NO_ARGS(SBSymbolContextList); in SBSymbolContextList() 23 SBSymbolContextList::SBSymbolContextList(const SBSymbolContextList &rhs) in SBSymbolContextList() function in SBSymbolContextList 25 LLDB_RECORD_CONSTRUCTOR(SBSymbolContextList, in SBSymbolContextList() 26 (const lldb::SBSymbolContextList &), rhs); in SBSymbolContextList() 31 SBSymbolContextList::~SBSymbolContextList() = default; 33 const SBSymbolContextList &SBSymbolContextList:: 34 operator=(const SBSymbolContextList &rhs) { in operator =() 36 const lldb::SBSymbolContextList &, in operator =() 37 SBSymbolContextList, operator=,(const lldb::SBSymbolContextList &), rhs); in operator =() [all …]
|
D | SBModule.cpp | 277 SBSymbolContextList SBModule::FindCompileUnits(const SBFileSpec &sb_file_spec) { in FindCompileUnits() 278 LLDB_RECORD_METHOD(lldb::SBSymbolContextList, SBModule, FindCompileUnits, in FindCompileUnits() 281 SBSymbolContextList sb_sc_list; in FindCompileUnits() 332 lldb::SBSymbolContextList SBModule::FindSymbols(const char *name, in FindSymbols() 334 LLDB_RECORD_METHOD(lldb::SBSymbolContextList, SBModule, FindSymbols, in FindSymbols() 337 SBSymbolContextList sb_sc_list; in FindSymbols() 392 lldb::SBSymbolContextList SBModule::FindFunctions(const char *name, in FindFunctions() 394 LLDB_RECORD_METHOD(lldb::SBSymbolContextList, SBModule, FindFunctions, in FindFunctions() 397 lldb::SBSymbolContextList sb_sc_list; in FindFunctions() 736 LLDB_REGISTER_METHOD(lldb::SBSymbolContextList, SBModule, FindCompileUnits, in RegisterMethods() [all …]
|
D | SBTarget.cpp | 1671 SBSymbolContextList SBTarget::FindCompileUnits(const SBFileSpec &sb_file_spec) { in FindCompileUnits() 1672 LLDB_RECORD_METHOD(lldb::SBSymbolContextList, SBTarget, FindCompileUnits, in FindCompileUnits() 1675 SBSymbolContextList sb_sc_list; in FindCompileUnits() 1789 lldb::SBSymbolContextList SBTarget::FindFunctions(const char *name, in FindFunctions() 1791 LLDB_RECORD_METHOD(lldb::SBSymbolContextList, SBTarget, FindFunctions, in FindFunctions() 1794 lldb::SBSymbolContextList sb_sc_list; in FindFunctions() 1810 lldb::SBSymbolContextList SBTarget::FindGlobalFunctions(const char *name, in FindGlobalFunctions() 1813 LLDB_RECORD_METHOD(lldb::SBSymbolContextList, SBTarget, FindGlobalFunctions, in FindGlobalFunctions() 1817 lldb::SBSymbolContextList sb_sc_list; in FindGlobalFunctions() 2297 lldb::SBSymbolContextList SBTarget::FindSymbols(const char *name, in FindSymbols() [all …]
|
D | SBReproducer.cpp | 114 RegisterMethods<SBSymbolContextList>(R); in SBRegistry()
|
D | CMakeLists.txt | 73 SBSymbolContextList.cpp
|
/external/llvm-project/lldb/include/lldb/API/ |
D | SBSymbolContextList.h | 17 class LLDB_API SBSymbolContextList { 19 SBSymbolContextList(); 21 SBSymbolContextList(const lldb::SBSymbolContextList &rhs); 23 ~SBSymbolContextList(); 25 const lldb::SBSymbolContextList & 26 operator=(const lldb::SBSymbolContextList &rhs); 40 void Append(lldb::SBSymbolContextList &sc_list);
|
D | SBModule.h | 135 lldb::SBSymbolContextList 145 lldb::SBSymbolContextList FindSymbols(const char *name, 166 lldb::SBSymbolContextList
|
D | SBTarget.h | 316 lldb::SBSymbolContextList 411 lldb::SBSymbolContextList 467 lldb::SBSymbolContextList FindGlobalFunctions(const char *name, 814 lldb::SBSymbolContextList FindSymbols(const char *name,
|
D | SBSymbolContext.h | 63 friend class SBSymbolContextList; variable
|
D | SBStream.h | 86 friend class SBSymbolContextList; variable
|
D | SBDefines.h | 73 class LLDB_API SBSymbolContextList; variable
|
/external/llvm-project/lldb/bindings/interface/ |
D | SBSymbolContextList.i | 30 self.assertTrue(sc.GetSymbol().GetName() == 'c')") SBSymbolContextList; 31 class SBSymbolContextList 34 SBSymbolContextList (); 36 SBSymbolContextList (const lldb::SBSymbolContextList& rhs); 38 ~SBSymbolContextList (); 55 Append (lldb::SBSymbolContextList &sc_list); 63 STRING_EXTENSION(SBSymbolContextList)
|
D | SBModule.i | 217 lldb::SBSymbolContextList 230 lldb::SBSymbolContextList 258 lldb::SBSymbolContextList
|
D | SBTarget.i | 402 lldb::SBSymbolContextList 462 lldb::SBSymbolContextList 512 lldb::SBSymbolContextList 940 lldb::SBSymbolContextList
|
/external/llvm-project/lldb/test/API/python_api/symbol-context/ |
D | TestSymbolContext.py | 92 sc_list = lldb.SBSymbolContextList()
|
/external/llvm-project/lldb/bindings/ |
D | headers.swig | 59 #include "lldb/API/SBSymbolContextList.h"
|
D | interfaces.swig | 66 %include "./interface/SBSymbolContextList.i"
|
/external/llvm-project/lldb/test/API/python_api/default-constructor/ |
D | TestDefaultConstructorForAPIObjects.py | 321 obj = lldb.SBSymbolContextList()
|