Lines Matching refs:FormatCache

19 FormatCache::Entry::Entry()  in Entry()
24 FormatCache::Entry::Entry(lldb::TypeFormatImplSP format_sp) in Entry()
31 FormatCache::Entry::Entry(lldb::TypeSummaryImplSP summary_sp) in Entry()
38 FormatCache::Entry::Entry(lldb::SyntheticChildrenSP synthetic_sp) in Entry()
45 FormatCache::Entry::Entry(lldb::TypeValidatorImplSP validator_sp) in Entry()
52 FormatCache::Entry::Entry(lldb::TypeFormatImplSP format_sp, in Entry()
62 bool FormatCache::Entry::IsFormatCached() { return m_format_cached; } in IsFormatCached()
64 bool FormatCache::Entry::IsSummaryCached() { return m_summary_cached; } in IsSummaryCached()
66 bool FormatCache::Entry::IsSyntheticCached() { return m_synthetic_cached; } in IsSyntheticCached()
68 bool FormatCache::Entry::IsValidatorCached() { return m_validator_cached; } in IsValidatorCached()
70 lldb::TypeFormatImplSP FormatCache::Entry::GetFormat() { return m_format_sp; } in GetFormat()
72 lldb::TypeSummaryImplSP FormatCache::Entry::GetSummary() { in GetSummary()
76 lldb::SyntheticChildrenSP FormatCache::Entry::GetSynthetic() { in GetSynthetic()
80 lldb::TypeValidatorImplSP FormatCache::Entry::GetValidator() { in GetValidator()
84 void FormatCache::Entry::SetFormat(lldb::TypeFormatImplSP format_sp) { in SetFormat()
89 void FormatCache::Entry::SetSummary(lldb::TypeSummaryImplSP summary_sp) { in SetSummary()
94 void FormatCache::Entry::SetSynthetic(lldb::SyntheticChildrenSP synthetic_sp) { in SetSynthetic()
99 void FormatCache::Entry::SetValidator(lldb::TypeValidatorImplSP validator_sp) { in SetValidator()
104 FormatCache::FormatCache() in FormatCache() function in FormatCache
113 FormatCache::Entry &FormatCache::GetEntry(const ConstString &type) { in GetEntry()
117 m_map[type] = FormatCache::Entry(); in GetEntry()
121 bool FormatCache::GetFormat(const ConstString &type, in GetFormat()
139 bool FormatCache::GetSummary(const ConstString &type, in GetSummary()
157 bool FormatCache::GetSynthetic(const ConstString &type, in GetSynthetic()
175 bool FormatCache::GetValidator(const ConstString &type, in GetValidator()
193 void FormatCache::SetFormat(const ConstString &type, in SetFormat()
199 void FormatCache::SetSummary(const ConstString &type, in SetSummary()
205 void FormatCache::SetSynthetic(const ConstString &type, in SetSynthetic()
211 void FormatCache::SetValidator(const ConstString &type, in SetValidator()
217 void FormatCache::Clear() { in Clear()