Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/include/lldb/DataFormatters/
H A DTypeFormat.h24 class TypeFormatImpl {
110 TypeFormatImpl(const Flags &flags = Flags());
112 typedef std::shared_ptr<TypeFormatImpl> SharedPointer;
114 virtual ~TypeFormatImpl();
155 TypeFormatImpl(const TypeFormatImpl &) = delete;
156 const TypeFormatImpl &operator=(const TypeFormatImpl &) = delete;
159 class TypeFormatImpl_Format : public TypeFormatImpl {
162 const TypeFormatImpl::Flags &flags = Flags());
172 TypeFormatImpl::Type GetType() override { in GetType()
173 return TypeFormatImpl::Type::eTypeFormat; in GetType()
[all …]
H A DTypeCategory.h169 typedef TieredFormatterContainer<TypeFormatImpl> FormatContainer;
194 void ForEach(ForEachCallback<TypeFormatImpl> callback) { in ForEach()
391 friend class FormattersContainer<TypeFormatImpl>;
H A DFormatClasses.h40 typedef HardcodedFormatterFinders<TypeFormatImpl> HardcodedFormatFinder;
H A DFormattersHelpers.h24 ConstString type_name, TypeFormatImpl::Flags flags,
/openbsd-src/gnu/llvm/lldb/source/DataFormatters/
H A DTypeFormat.cpp31 TypeFormatImpl::TypeFormatImpl(const Flags &flags) : m_flags(flags) {} in TypeFormatImpl() function in TypeFormatImpl
33 TypeFormatImpl::~TypeFormatImpl() = default;
36 const TypeFormatImpl::Flags &flags) in TypeFormatImpl_Format()
37 : 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.cpp26 ConstString type_name, TypeFormatImpl::Flags flags, bool regex) { in AddFormat()
H A DFormatManager.cpp739 TypeFormatImpl::Flags fourchar_flags; in LoadSystemFormatters()
/openbsd-src/gnu/llvm/lldb/source/API/
H A DSBTypeFormat.cpp53 if (IsValid() && m_opaque_sp->GetType() == TypeFormatImpl::Type::eTypeFormat) in GetFormat()
61 if (IsValid() && m_opaque_sp->GetType() == TypeFormatImpl::Type::eTypeEnum) in GetTypeName()
163 m_opaque_sp->GetType() == TypeFormatImpl::Type::eTypeFormat) || in CopyOnWrite_Impl()
165 m_opaque_sp->GetType() == TypeFormatImpl::Type::eTypeEnum))) in CopyOnWrite_Impl()
169 if (m_opaque_sp->GetType() == TypeFormatImpl::Type::eTypeFormat) in CopyOnWrite_Impl()
/openbsd-src/gnu/llvm/lldb/include/lldb/
H A Dlldb-forward.h252 class TypeFormatImpl; variable
443 typedef std::shared_ptr<lldb_private::TypeFormatImpl> TypeFormatImplSP;
/openbsd-src/gnu/llvm/lldb/include/lldb/Core/
H A DValueObject.h52 class TypeFormatImpl; variable
438 virtual bool GetValueAsCString(const lldb_private::TypeFormatImpl &format,
/openbsd-src/gnu/llvm/lldb/source/Commands/
H A DCommandObjectType.cpp660 format, TypeFormatImpl::Flags() in DoExecute()
667 TypeFormatImpl::Flags() in DoExecute()
1130 : public CommandObjectTypeFormatterList<TypeFormatImpl> {
2902 "info", CommandObjectSP(new CommandObjectFormatterInfo<TypeFormatImpl>( in CommandObjectTypeFormat()
2904 [](ValueObject &valobj) -> TypeFormatImpl::SharedPointer { in CommandObjectTypeFormat()
/openbsd-src/gnu/llvm/lldb/source/Core/
H A DValueObject.cpp1045 bool ValueObject::GetValueAsCString(const lldb_private::TypeFormatImpl &format, in GetValueAsCString()