/external/llvm-project/lldb/test/API/python_api/value/ |
D | TestValueAPI.py | 58 list = target.FindGlobalVariables('days_of_week', 1) 79 list = target.FindGlobalVariables('weekdays', 1) 86 list = target.FindGlobalVariables('g_table', 1)
|
/external/llvm-project/lldb/source/Symbol/ |
D | SymbolFile.cpp | 107 void SymbolFile::FindGlobalVariables(ConstString name, in FindGlobalVariables() function in SymbolFile 112 void SymbolFile::FindGlobalVariables(const RegularExpression ®ex, in FindGlobalVariables() function in SymbolFile
|
/external/llvm-project/lldb/test/API/python_api/default-constructor/ |
D | sb_module.py | 21 obj.FindGlobalVariables(lldb.SBTarget(), "my_global_var", 1)
|
D | sb_target.py | 30 obj.FindGlobalVariables("my_global_var", 1)
|
/external/llvm-project/lldb/test/API/macosx/builtin-debugtrap/ |
D | TestBuiltinDebugTrap.py | 38 list = target.FindGlobalVariables("global", 1, lldb.eMatchTypeNormal)
|
/external/llvm-project/lldb/include/lldb/Symbol/ |
D | SymbolFile.h | 218 virtual void FindGlobalVariables(ConstString name, 222 virtual void FindGlobalVariables(const RegularExpression ®ex,
|
/external/llvm-project/lldb/include/lldb/Core/ |
D | ModuleList.h | 293 void FindGlobalVariables(ConstString name, size_t max_matches, 307 void FindGlobalVariables(const RegularExpression ®ex, size_t max_matches,
|
D | Module.h | 368 void FindGlobalVariables(ConstString name, 384 void FindGlobalVariables(const RegularExpression ®ex, size_t max_matches,
|
/external/llvm-project/lldb/source/API/ |
D | SBModule.cpp | 409 SBValueList SBModule::FindGlobalVariables(SBTarget &target, const char *name, in FindGlobalVariables() function in SBModule 411 LLDB_RECORD_METHOD(lldb::SBValueList, SBModule, FindGlobalVariables, in FindGlobalVariables() 419 module_sp->FindGlobalVariables(ConstString(name), CompilerDeclContext(), in FindGlobalVariables() 438 SBValueList sb_value_list(FindGlobalVariables(target, name, 1)); in FindFirstGlobalVariable() 748 LLDB_REGISTER_METHOD(lldb::SBValueList, SBModule, FindGlobalVariables, in RegisterMethods()
|
D | SBTarget.cpp | 1942 SBValueList SBTarget::FindGlobalVariables(const char *name, in FindGlobalVariables() function in SBTarget 1944 LLDB_RECORD_METHOD(lldb::SBValueList, SBTarget, FindGlobalVariables, in FindGlobalVariables() 1952 target_sp->GetImages().FindGlobalVariables(ConstString(name), max_matches, in FindGlobalVariables() 1970 SBValueList SBTarget::FindGlobalVariables(const char *name, in FindGlobalVariables() function in SBTarget 1973 LLDB_RECORD_METHOD(lldb::SBValueList, SBTarget, FindGlobalVariables, in FindGlobalVariables() 1987 target_sp->GetImages().FindGlobalVariables(ConstString(name), max_matches, in FindGlobalVariables() 1991 target_sp->GetImages().FindGlobalVariables(RegularExpression(name_ref), in FindGlobalVariables() 1996 target_sp->GetImages().FindGlobalVariables(RegularExpression(regexstr), in FindGlobalVariables() 2020 SBValueList sb_value_list(FindGlobalVariables(name, 1)); in FindFirstGlobalVariable() 2624 LLDB_REGISTER_METHOD(lldb::SBValueList, SBTarget, FindGlobalVariables, in RegisterMethods() [all …]
|
/external/llvm-project/lldb/test/API/lang/objc/foundation/ |
D | TestObjectDescriptionAPI.py | 66 value_list2 = target.FindGlobalVariables('my_global_str', 3)
|
/external/llvm-project/lldb/examples/python/ |
D | globals.py | 43 global_variable_list = module.FindGlobalVariables(
|
/external/llvm-project/lldb/source/Plugins/SymbolFile/PDB/ |
D | SymbolFilePDB.h | 114 FindGlobalVariables(lldb_private::ConstString name, 119 void FindGlobalVariables(const lldb_private::RegularExpression ®ex,
|
/external/llvm-project/lldb/bindings/interface/ |
D | SBTarget.i | 489 A list of matched variables in an SBValueList.") FindGlobalVariables; 491 FindGlobalVariables (const char *name, 508 FindGlobalVariables(const char *name,
|
D | SBModule.i | 304 A list of matched variables in an SBValueList.") FindGlobalVariables; 306 FindGlobalVariables (lldb::SBTarget &target,
|
/external/llvm-project/lldb/include/lldb/API/ |
D | SBModule.h | 184 lldb::SBValueList FindGlobalVariables(lldb::SBTarget &target,
|
D | SBTarget.h | 426 lldb::SBValueList FindGlobalVariables(const char *name, uint32_t max_matches); 451 lldb::SBValueList FindGlobalVariables(const char *name, uint32_t max_matches,
|
/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
D | SymbolFileDWARFDebugMap.h | 106 FindGlobalVariables(lldb_private::ConstString name, 110 void FindGlobalVariables(const lldb_private::RegularExpression ®ex,
|
D | SymbolFileDWARFDebugMap.cpp | 848 oso_dwarf->FindGlobalVariables(name, parent_decl_ctx, max_matches, in PrivateFindGlobalVariables() 857 void SymbolFileDWARFDebugMap::FindGlobalVariables( in FindGlobalVariables() function in SymbolFileDWARFDebugMap 865 oso_dwarf->FindGlobalVariables(name, parent_decl_ctx, max_matches, in FindGlobalVariables() 888 void SymbolFileDWARFDebugMap::FindGlobalVariables( in FindGlobalVariables() function in SymbolFileDWARFDebugMap 895 oso_dwarf->FindGlobalVariables(regex, max_matches, variables); in FindGlobalVariables()
|
D | SymbolFileDWARF.h | 171 FindGlobalVariables(lldb_private::ConstString name, 176 void FindGlobalVariables(const lldb_private::RegularExpression ®ex,
|
/external/llvm-project/lldb/test/API/python_api/module_section/ |
D | TestModuleAndSection.py | 101 exe_module.FindGlobalVariables(target, None, 1)
|
/external/llvm-project/lldb/test/API/python_api/target/ |
D | TestTargetAPI.py | 249 value_list = target.FindGlobalVariables( 268 value_list = m.FindGlobalVariables(
|
/external/llvm-project/lldb/source/Core/ |
D | ModuleList.cpp | 447 void ModuleList::FindGlobalVariables(ConstString name, size_t max_matches, in FindGlobalVariables() function in ModuleList 452 (*pos)->FindGlobalVariables(name, CompilerDeclContext(), max_matches, in FindGlobalVariables() 457 void ModuleList::FindGlobalVariables(const RegularExpression ®ex, in FindGlobalVariables() function in ModuleList 463 (*pos)->FindGlobalVariables(regex, max_matches, variable_list); in FindGlobalVariables()
|
/external/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/ |
D | SymbolFileBreakpad.h | 84 void FindGlobalVariables(ConstString name, in FindGlobalVariables() function
|
/external/llvm-project/lldb/tools/lldb-test/ |
D | lldb-test.cpp | 401 Symfile.FindGlobalVariables(ConstString(Context), CompilerDeclContext(), in getDeclContext() 560 Symfile.FindGlobalVariables(RE, UINT32_MAX, List); in findVariables() 585 Symfile.FindGlobalVariables(ConstString(Name), ContextPtr, UINT32_MAX, List); in findVariables()
|