Lines Matching defs:RemarkLinker
32 struct RemarkLinker { struct
35 struct RemarkPtrCompare {
46 StringTable StrTab;
52 std::set<std::unique_ptr<Remark>, RemarkPtrCompare> Remarks;
55 std::optional<std::string> PrependPath;
59 bool KeepAllRemarks = true;
66 bool shouldKeepRemark(const Remark &R) { in shouldKeepRemark()
75 void setKeepAllRemarks(bool B) { KeepAllRemarks = B; } in setKeepAllRemarks()
97 bool empty() const { return Remarks.empty(); } in empty()
102 using iterator = pointee_iterator<decltype(Remarks)::const_iterator>;
104 iterator_range<iterator> remarks() const { in remarks()