Home
last modified time | relevance | path

Searched refs:TypeNameSpecifierImpl (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/lldb/include/lldb/DataFormatters/
H A DFormatClasses.h106 class TypeNameSpecifierImpl {
108 TypeNameSpecifierImpl() = default;
110 TypeNameSpecifierImpl(llvm::StringRef name, bool is_regex) in TypeNameSpecifierImpl() function
117 TypeNameSpecifierImpl(lldb::TypeSP type) : m_is_regex(false) { in TypeNameSpecifierImpl() function
124 TypeNameSpecifierImpl(CompilerType type) : m_is_regex(false) { in TypeNameSpecifierImpl() function
154 TypeNameSpecifierImpl(const TypeNameSpecifierImpl &) = delete;
155 const TypeNameSpecifierImpl &
156 operator=(const TypeNameSpecifierImpl &) = delete;
H A DFormattersContainer.h178 return std::make_shared<TypeNameSpecifierImpl>( in GetTypeNameSpecifierAtIndex()
/llvm-project-15.0.7/lldb/source/API/
H A DSBTypeNameSpecifier.cpp23 : m_opaque_sp(new TypeNameSpecifierImpl(name, is_regex)) { in SBTypeNameSpecifier()
35 new TypeNameSpecifierImpl(type.m_opaque_sp->GetCompilerType(true))); in SBTypeNameSpecifier()
/llvm-project-15.0.7/lldb/include/lldb/
H A Dlldb-forward.h256 class TypeNameSpecifierImpl; variable
434 typedef std::shared_ptr<lldb_private::TypeNameSpecifierImpl>
/llvm-project-15.0.7/lldb/source/Core/
H A DFormatEntity.cpp830 auto type_sp = std::make_shared<TypeNameSpecifierImpl>( in DumpValue()