Home
last modified time | relevance | path

Searched refs:MarkupNode (Results 1 – 4 of 4) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/Symbolize/
H A DMarkupFilter.h84 bool tryMMap(const MarkupNode &Element,
86 bool tryReset(const MarkupNode &Element,
88 bool tryModule(const MarkupNode &Element,
94 void filterNode(const MarkupNode &Node);
96 bool tryPresentation(const MarkupNode &Node);
97 bool trySymbol(const MarkupNode &Node);
98 bool tryPC(const MarkupNode &Node);
99 bool tryBackTrace(const MarkupNode &Node);
100 bool tryData(const MarkupNode &Node);
102 bool trySGR(const MarkupNode &Node);
[all …]
H A DMarkup.h33 struct MarkupNode { struct
44 bool operator==(const MarkupNode &Other) const { argument
47 bool operator!=(const MarkupNode &Other) const { return !(*this == Other); }
82 std::optional<MarkupNode> nextNode();
84 bool isSGR(const MarkupNode &Node) const { in isSGR()
89 std::optional<MarkupNode> parseElement(StringRef Line);
109 SmallVector<MarkupNode> Buffer;
/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
H A DMarkupFilter.cpp49 SmallVector<MarkupNode> DeferredNodes; in filter()
63 for (const MarkupNode &Node : DeferredNodes) in filter()
86 const MarkupNode &Node, const SmallVector<MarkupNode> &DeferredNodes) { in tryContextualElement()
94 bool MarkupFilter::tryMMap(const MarkupNode &Node, in tryMMap()
116 for (const MarkupNode &Node : DeferredNodes) in tryMMap()
125 bool MarkupFilter::tryReset(const MarkupNode &Node, in tryReset()
134 for (const MarkupNode &Node : DeferredNodes) in tryReset()
145 bool MarkupFilter::tryModule(const MarkupNode &Node, in tryModule()
163 for (const MarkupNode &Node : DeferredNodes) in tryModule()
236 bool MarkupFilter::tryPC(const MarkupNode &Node) { in tryPC()
[all …]
H A DMarkup.cpp45 std::optional<MarkupNode> MarkupParser::nextNode() { in nextNode()
77 if (std::optional<MarkupNode> Element = parseElement(Line)) { in nextNode()
114 std::optional<MarkupNode> MarkupParser::parseElement(StringRef Line) { in parseElement()
124 MarkupNode Element; in parseElement()
145 static MarkupNode textNode(StringRef Text) { in textNode()
146 MarkupNode Node; in textNode()