Home
last modified time | relevance | path

Searched refs:TypeFormatImpl (Results 1 – 12 of 12) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/DataFormatters/
H A DTypeFormat.h26 class TypeFormatImpl {
112 TypeFormatImpl(const Flags &flags = Flags());
114 typedef std::shared_ptr<TypeFormatImpl> SharedPointer;
116 virtual ~TypeFormatImpl();
157 DISALLOW_COPY_AND_ASSIGN(TypeFormatImpl);
160 class TypeFormatImpl_Format : public TypeFormatImpl {
173 TypeFormatImpl::Type GetType() override { in GetType()
174 return TypeFormatImpl::Type::eTypeFormat; in GetType()
188 class TypeFormatImpl_EnumType : public TypeFormatImpl {
201 TypeFormatImpl::Type GetType() override { in GetType()
[all …]
H A DTypeCategory.h68 typedef FormatterContainerPair<TypeFormatImpl> FormatContainer;
102 template <typename U = TypeFormatImpl>
108 template <typename U = TypeFormatImpl>
426 friend class FormattersContainer<ConstString, TypeFormatImpl>;
427 friend class FormattersContainer<lldb::RegularExpressionSP, TypeFormatImpl>;
H A DFormatClasses.h41 typedef HardcodedFormatterFinders<TypeFormatImpl> HardcodedFormatFinder;
H A DFormattersHelpers.h25 ConstString type_name, TypeFormatImpl::Flags flags,
/freebsd-12.1/contrib/llvm/tools/lldb/source/DataFormatters/
H A DTypeFormat.cpp31 TypeFormatImpl::TypeFormatImpl(const Flags &flags) in TypeFormatImpl() function in TypeFormatImpl
34 TypeFormatImpl::~TypeFormatImpl() {} in ~TypeFormatImpl()
37 const TypeFormatImpl::Flags &flags) in TypeFormatImpl_Format()
38 : TypeFormatImpl(flags), m_format(f) {} in TypeFormatImpl_Format()
136 ConstString type_name, const TypeFormatImpl::Flags &flags) in TypeFormatImpl_EnumType()
137 : TypeFormatImpl(flags), m_enum_type(type_name), m_types() {} in TypeFormatImpl_EnumType()
H A DFormattersHelpers.cpp28 ConstString type_name, TypeFormatImpl::Flags flags, bool regex) { in AddFormat()
H A DFormatManager.cpp1013 TypeFormatImpl::Flags fourchar_flags; in LoadSystemFormatters()
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBTypeFormat.cpp38 if (IsValid() && m_opaque_sp->GetType() == TypeFormatImpl::Type::eTypeFormat) in GetFormat()
44 if (IsValid() && m_opaque_sp->GetType() == TypeFormatImpl::Type::eTypeEnum) in GetTypeName()
128 m_opaque_sp->GetType() == TypeFormatImpl::Type::eTypeFormat) || in CopyOnWrite_Impl()
130 m_opaque_sp->GetType() == TypeFormatImpl::Type::eTypeEnum))) in CopyOnWrite_Impl()
134 if (m_opaque_sp->GetType() == TypeFormatImpl::Type::eTypeFormat) in CopyOnWrite_Impl()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/
H A Dlldb-forward.h277 class TypeFormatImpl; variable
476 typedef std::shared_ptr<lldb_private::TypeFormatImpl> TypeFormatImplSP;
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/
H A DValueObject.h68 class TypeFormatImpl; variable
456 virtual bool GetValueAsCString(const lldb_private::TypeFormatImpl &format,
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectType.cpp704 format, TypeFormatImpl::Flags() in DoExecute()
711 TypeFormatImpl::Flags() in DoExecute()
1230 : public CommandObjectTypeFormatterList<TypeFormatImpl> {
3060 "info", CommandObjectSP(new CommandObjectFormatterInfo<TypeFormatImpl>( in CommandObjectTypeFormat()
3062 [](ValueObject &valobj) -> TypeFormatImpl::SharedPointer { in CommandObjectTypeFormat()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DValueObject.cpp1135 bool ValueObject::GetValueAsCString(const lldb_private::TypeFormatImpl &format, in GetValueAsCString()