Home
last modified time | relevance | path

Searched refs:m_types (Results 1 – 17 of 17) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DTypeMap.cpp22 TypeMap::TypeMap() : m_types() {} in TypeMap()
31 m_types.insert(std::make_pair(type_sp->GetID(), type_sp)); in Insert()
37 iterator pos, end = m_types.end(); in InsertUnique()
39 for (pos = m_types.find(type_uid); in InsertUnique()
73 void TypeMap::Clear() { m_types.clear(); } in Clear()
75 uint32_t TypeMap::GetSize() const { return m_types.size(); } in GetSize()
77 bool TypeMap::Empty() const { return m_types.empty(); } in Empty()
86 for (pos = m_types.begin(), end = m_types.end(); pos != end; ++pos) { in GetTypeAtIndex()
95 if (m_types.empty()) in FirstType()
97 return m_types.begin()->second; in FirstType()
[all …]
H A DTypeList.cpp22 TypeList::TypeList() : m_types() {} in TypeList()
31 m_types.push_back(type_sp); in Insert()
58 void TypeList::Clear() { m_types.clear(); } in Clear()
60 uint32_t TypeList::GetSize() const { return m_types.size(); } in GetSize()
70 for (pos = m_types.begin(), end = m_types.end(); pos != end; ++pos) { in GetTypeAtIndex()
80 for (auto pos = m_types.begin(), end = m_types.end(); pos != end; ++pos) { in ForEach()
88 for (auto pos = m_types.begin(), end = m_types.end(); pos != end; ++pos) { in ForEach()
95 for (iterator pos = m_types.begin(), end = m_types.end(); pos != end; ++pos) in Dump()
/freebsd/contrib/llvm-project/lldb/source/DataFormatters/
H A DTypeFormat.cpp137 : TypeFormatImpl(flags), m_enum_type(type_name), m_types() {} in TypeFormatImpl_EnumType()
157 auto iter = m_types.find(valobj_key), end = m_types.end(); in FormatObject()
175 m_types.emplace(valobj_key, valobj_enum_type); in FormatObject()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DSystemRuntime.cpp30 SystemRuntime::SystemRuntime(Process *process) : Runtime(process), m_types() {} in SystemRuntime()
43 return m_types; in GetExtendedBacktraceTypes()
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DTypeList.h45 TypeIterable Types() { return TypeIterable(m_types); } in Types()
56 collection m_types; variable
H A DTypeMap.h49 TypeIterable Types() const { return TypeIterable(m_types); } in Types()
62 collection m_types; variable
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/
H A DSymbolFileCTF.cpp714 if (!m_types.empty()) in ParseTypes()
745 LLDB_LOG(log, "Created {0} CTF types", m_types.size()); in ParseTypes()
747 return m_types.size(); in ParseTypes()
820 lldb::user_id_t function_type_uid = m_types.size() + 1; in ParseFunctions()
825 m_types[function_type_uid] = type_sp; in ParseFunctions()
987 auto type_it = m_types.find(type_uid); in ResolveTypeUID()
988 if (type_it != m_types.end()) in ResolveTypeUID()
1016 m_types[type_uid] = type_sp; in ResolveTypeUID()
H A DSymbolFileCTF.h248 llvm::DenseMap<lldb::user_id_t, lldb::TypeSP> m_types;
291 std::vector<lldb::TypeSP> m_types; global() variable
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DSystemRuntime.h298 std::vector<ConstString> m_types;
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DSymbolFileNativePDB.cpp790 auto full_iter = m_types.find(toOpaqueUid(*full_decl_uid)); in CreateAndCacheType()
791 if (full_iter != m_types.end()) { in CreateAndCacheType()
795 m_types[toOpaqueUid(type_id)] = result; in CreateAndCacheType()
819 m_types[best_uid] = result; in CreateAndCacheType()
823 m_types[toOpaqueUid(type_id)] = result; in CreateAndCacheType()
832 auto iter = m_types.find(toOpaqueUid(type_id)); in GetOrCreateType()
833 if (iter != m_types.end()) in GetOrCreateType()
1910 auto iter = m_types.find(toOpaqueUid(id)); in GetOrCreateTypedef()
1911 if (iter != m_types.end()) in GetOrCreateTypedef()
2095 auto iter = m_types.find(type_uid); in ResolveTypeUID()
[all …]
H A DSymbolFileNativePDB.h277 llvm::DenseMap<lldb::user_id_t, lldb::TypeSP> m_types; variable
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DSymbolFilePDB.cpp565 auto find_result = m_types.find(type_uid); in ResolveTypeUID()
566 if (find_result != m_types.end()) in ResolveTypeUID()
592 m_types.insert(std::make_pair(type_uid, result)); in ResolveTypeUID()
1512 auto iter = m_types.find(result->getSymIndexId()); in FindTypesByRegex()
1513 if (iter == m_types.end()) in FindTypesByRegex()
1560 auto iter = m_types.find(result->getSymIndexId()); in FindTypes()
1561 if (iter == m_types.end()) in FindTypes()
H A DSymbolFilePDB.h237 llvm::DenseMap<uint32_t, lldb::TypeSP> m_types;
248 llvm::DenseMap<uint32_t, lldb::TypeSP> m_types; global() variable
/freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DTypeFormat.h212 mutable std::unordered_map<void *, CompilerType> m_types; variable
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCClassDescriptorV2.cpp316 process->ReadCStringFromMemory(m_types_ptr, m_types, error); in Read()
458 if (instance_method_func(method->m_name.c_str(), method->m_types.c_str())) in ProcessMethodList()
H A DAppleObjCClassDescriptorV2.h161 std::string m_types; member
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A Darm_sve.td923 string name, string m_types, string xz_types, string types,
925 …def _M : SInst<name, m_types, types, MergeOp1, intrinsic, !listconcat(flags, [VerifyRuntimeMo…
930 multiclass SInstCvtMX<string name, string m_types, string xz_types,
933 …def _M : SInst<name, m_types, types, MergeOp1, intrinsic, !listconcat(flags, [VerifyRuntimeMo…