Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/DataFormatters/
H A DFormatClasses.h112 class TypeNameSpecifierImpl {
114 TypeNameSpecifierImpl() : m_is_regex(false), m_type() {} in TypeNameSpecifierImpl() function
116 TypeNameSpecifierImpl(llvm::StringRef name, bool is_regex) in TypeNameSpecifierImpl() function
123 TypeNameSpecifierImpl(lldb::TypeSP type) : m_is_regex(false), m_type() { in TypeNameSpecifierImpl() function
130 TypeNameSpecifierImpl(CompilerType type) : m_is_regex(false), m_type() { in TypeNameSpecifierImpl() function
168 DISALLOW_COPY_AND_ASSIGN(TypeNameSpecifierImpl);
H A DFormattersContainer.h280 new TypeNameSpecifierImpl(key.AsCString(), false)); in GetTypeNameSpecifierAtIndex_Impl()
292 new TypeNameSpecifierImpl(regex->GetText().str().c_str(), true)); in GetTypeNameSpecifierAtIndex_Impl()
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBTypeNameSpecifier.cpp24 : m_opaque_sp(new TypeNameSpecifierImpl(name, is_regex)) { in SBTypeNameSpecifier()
32 new TypeNameSpecifierImpl(type.m_opaque_sp->GetCompilerType(true))); in SBTypeNameSpecifier()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/
H A Dlldb-forward.h278 class TypeNameSpecifierImpl; variable
477 typedef std::shared_ptr<lldb_private::TypeNameSpecifierImpl>
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DFormatEntity.cpp856 auto type_sp = std::make_shared<TypeNameSpecifierImpl>( in DumpValue()