Home
last modified time | relevance | path

Searched refs:SBSymbolContextList (Results 1 – 18 of 18) sorted by relevance

/external/llvm-project/lldb/source/API/
DSBSymbolContextList.cpp18 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 …]
DSBModule.cpp277 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 …]
DSBTarget.cpp1671 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 …]
DSBReproducer.cpp114 RegisterMethods<SBSymbolContextList>(R); in SBRegistry()
DCMakeLists.txt73 SBSymbolContextList.cpp
/external/llvm-project/lldb/include/lldb/API/
DSBSymbolContextList.h17 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);
DSBModule.h135 lldb::SBSymbolContextList
145 lldb::SBSymbolContextList FindSymbols(const char *name,
166 lldb::SBSymbolContextList
DSBTarget.h316 lldb::SBSymbolContextList
411 lldb::SBSymbolContextList
467 lldb::SBSymbolContextList FindGlobalFunctions(const char *name,
814 lldb::SBSymbolContextList FindSymbols(const char *name,
DSBSymbolContext.h63 friend class SBSymbolContextList; variable
DSBStream.h86 friend class SBSymbolContextList; variable
DSBDefines.h73 class LLDB_API SBSymbolContextList; variable
/external/llvm-project/lldb/bindings/interface/
DSBSymbolContextList.i30 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)
DSBModule.i217 lldb::SBSymbolContextList
230 lldb::SBSymbolContextList
258 lldb::SBSymbolContextList
DSBTarget.i402 lldb::SBSymbolContextList
462 lldb::SBSymbolContextList
512 lldb::SBSymbolContextList
940 lldb::SBSymbolContextList
/external/llvm-project/lldb/test/API/python_api/symbol-context/
DTestSymbolContext.py92 sc_list = lldb.SBSymbolContextList()
/external/llvm-project/lldb/bindings/
Dheaders.swig59 #include "lldb/API/SBSymbolContextList.h"
Dinterfaces.swig66 %include "./interface/SBSymbolContextList.i"
/external/llvm-project/lldb/test/API/python_api/default-constructor/
DTestDefaultConstructorForAPIObjects.py321 obj = lldb.SBSymbolContextList()