Home
last modified time | relevance | path

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

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