Home
last modified time | relevance | path

Searched refs:formatter_sp (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DFormatClasses.h103 bool IsMatch(const std::shared_ptr<Formatter> &formatter_sp) const { in IsMatch() argument
104 if (!formatter_sp) in IsMatch()
106 if (formatter_sp->Cascades() == false && DidStripTypedef()) in IsMatch()
108 if (formatter_sp->SkipsPointers() && DidStripPointer()) in IsMatch()
110 if (formatter_sp->GetPtrMatchDepth() < GetPtrStrippedDepth()) in IsMatch()
112 if (formatter_sp->SkipsReferences() && DidStripReference()) in IsMatch()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DCPlusPlusLanguage.cpp1834 static CXXFunctionSummaryFormat::SharedPointer formatter_sp( in GetHardcodedSummaries() local
1842 return formatter_sp; in GetHardcodedSummaries()
1849 static CXXFunctionSummaryFormat::SharedPointer formatter_sp( in GetHardcodedSummaries() local
1862 return formatter_sp; in GetHardcodedSummaries()
1869 static CXXFunctionSummaryFormat::SharedPointer formatter_sp( in GetHardcodedSummaries() local
1881 return formatter_sp; in GetHardcodedSummaries()
1900 static CXXSyntheticChildren::SharedPointer formatter_sp( in GetHardcodedSynthetics() local
1911 return formatter_sp; in GetHardcodedSynthetics()
1918 static CXXSyntheticChildren::SharedPointer formatter_sp( in GetHardcodedSynthetics() local
1928 return formatter_sp; in GetHardcodedSynthetics()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectType.cpp2769 typename FormatterType::SharedPointer formatter_sp = in DoExecute() local
2771 if (formatter_sp) { in DoExecute()
2772 std::string description(formatter_sp->GetDescription()); in DoExecute()