Searched refs:FindTypes (Results 1 - 25 of 32) sorted by path

12

/external/lldb/examples/python/
H A Dtypes.py206 types = module.FindTypes(typename)
/external/lldb/include/lldb/API/
H A DSBModule.h200 FindTypes (const char* type);
H A DSBTarget.h745 FindTypes (const char* type);
/external/lldb/include/lldb/Core/
H A DModule.h452 FindTypes (const SymbolContext& sc,
H A DModuleList.h434 FindTypes (const SymbolContext& sc,
/external/lldb/include/lldb/Symbol/
H A DSymbolFile.h140 virtual uint32_t FindTypes (const SymbolContext& sc, const ConstString &name, const ClangNamespaceDecl *namespace_decl, bool append, uint32_t max_matches, TypeList& types) = 0;
141 // virtual uint32_t FindTypes (const SymbolContext& sc, const RegularExpression& regex, bool append, uint32_t max_matches, TypeList& types) = 0;
H A DSymbolVendor.h122 FindTypes (const SymbolContext& sc,
H A DTypeList.h40 FindTypes(const ConstString &name);
H A DTypeVendor.h38 FindTypes (const ConstString &name,
/external/lldb/scripts/Python/interface/
H A DSBModule.i225 FindTypes (const char* type);
H A DSBTarget.i586 FindTypes (const char* type);
/external/lldb/source/API/
H A DSBModule.cpp524 SBModule::FindTypes (const char *type) function in class:SBModule
535 const uint32_t num_matches = module_sp->FindTypes (sc,
H A DSBTarget.cpp2147 if (objc_type_vendor->FindTypes(const_typename, true, 1, types) > 0)
2176 SBTarget::FindTypes (const char* typename_cstr) function in class:SBTarget
2188 uint32_t num_matches = images.FindTypes (sc,
2220 if (objc_type_vendor->FindTypes(const_typename, true, UINT32_MAX, types))
/external/lldb/source/Commands/
H A DCommandObjectMemory.cpp508 sc.module_sp->FindTypes (sc,
517 target->GetImages().FindTypes (sc,
H A DCommandObjectTarget.cpp1724 num_matches = module->FindTypes(sc, name, name_is_fully_qualified, max_num_matches, type_list);
1779 num_matches = sym_ctx.module_sp->FindTypes(sym_ctx, name, name_is_fully_qualified, max_num_matches, type_list);
/external/lldb/source/Core/
H A DModule.cpp768 return symbols->FindTypes(sc, name, namespace_decl, append, max_matches, types);
790 const size_t num_matches = FindTypes (sc, name, exact_match, 1, type_list);
798 Module::FindTypes (const SymbolContext& sc, function in class:Module
H A DModuleList.cpp609 ModuleList::FindTypes (const SymbolContext& sc, const ConstString &name, bool name_is_fully_qualified, size_t max_matches, TypeList& types) const function in class:ModuleList
623 total_matches += (*pos)->FindTypes (sc, name, name_is_fully_qualified, max_matches, types);
640 total_matches += (*pos)->FindTypes (world_sc, name, name_is_fully_qualified, max_matches, types);
/external/lldb/source/Expression/
H A DClangASTSource.cpp269 module_list.FindTypes (null_sc, name, exact_match, UINT32_MAX, types);
683 m_target->GetImages().FindTypes(null_sc, name, exact_match, 1, types);
739 if (!type_vendor->FindTypes(name,
1167 if (!type_vendor->FindTypes(interface_name,
1338 if (!type_vendor->FindTypes(class_name,
/external/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/
H A DItaniumABILanguageRuntime.cpp128 num_matches = sc.module_sp->FindTypes (sc,
140 num_matches = target->GetImages().FindTypes (sc,
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTypeVendor.cpp586 AppleObjCTypeVendor::FindTypes (const ConstString &name, function in class:AppleObjCTypeVendor
597 log->Printf("AppleObjCTypeVendor::FindTypes [%u] ('%s', %s, %u, )",
H A DAppleObjCTypeVendor.h36 FindTypes (const ConstString &name,
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.cpp3893 SymbolFileDWARF::FindTypes (const SymbolContext& sc, function in class:SymbolFileDWARF
3911 "SymbolFileDWARF::FindTypes (sc, name=\"%s\", clang::NamespaceDecl(%p) \"%s\", append=%u, max_matches=%u, type_list)",
3921 "SymbolFileDWARF::FindTypes (sc, name=\"%s\", clang::NamespaceDecl(NULL), append=%u, max_matches=%u, type_list)",
3996 "SymbolFileDWARF::FindTypes (sc, name=\"%s\", clang::NamespaceDecl(%p) \"%s\", append=%u, max_matches=%u, type_list) => %u",
4007 "SymbolFileDWARF::FindTypes (sc, name=\"%s\", clang::NamespaceDecl(NULL), append=%u, max_matches=%u, type_list) => %u",
4110 SymbolFileDWARF::FindTypes(std::vector<dw_offset_t> die_offsets, uint32_t max_matches, TypeList& types) function in class:SymbolFileDWARF
H A DSymbolFileDWARF.h122 virtual uint32_t FindTypes (const lldb_private::SymbolContext& sc, const lldb_private::ConstString &name, const lldb_private::ClangNamespaceDecl *namespace_decl, bool append, uint32_t max_matches, lldb_private::TypeList& types);
447 uint32_t FindTypes(std::vector<dw_offset_t> die_offsets, uint32_t max_matches, lldb_private::TypeList& types);
H A DSymbolFileDWARFDebugMap.cpp1229 SymbolFileDWARFDebugMap::FindTypes function in class:SymbolFileDWARFDebugMap
1249 return oso_dwarf->FindTypes (sc, name, namespace_decl, append, max_matches, types);
1255 oso_dwarf->FindTypes (sc, name, namespace_decl, append, max_matches, types);
1263 //SymbolFileDWARFDebugMap::FindTypes (const SymbolContext& sc, const RegularExpression& regex, bool append, uint32_t max_matches, Type::Encoding encoding, lldb::user_id_t udt_uid, TypeList& types)
1267 // return oso_dwarf->FindTypes (sc, regex, append, max_matches, encoding, udt_uid, types);
H A DSymbolFileDWARFDebugMap.h87 virtual uint32_t FindTypes (const lldb_private::SymbolContext& sc, const lldb_private::ConstString &name, const lldb_private::ClangNamespaceDecl *namespace_decl, bool append, uint32_t max_matches, lldb_private::TypeList& types);

Completed in 416 milliseconds

12