Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/Format/
H A DUnwrappedLineParser.h28 struct UnwrappedLineNode;
41 std::list<UnwrappedLineNode> Tokens;
300 struct UnwrappedLineNode { struct
301 UnwrappedLineNode() : Tok(nullptr) {} in UnwrappedLineNode() argument
302 UnwrappedLineNode(FormatToken *Tok) : Tok(Tok) {} in UnwrappedLineNode() function
H A DTokenAnnotator.h56 for (std::list<UnwrappedLineNode>::const_iterator I = ++Line.Tokens.begin(), in AnnotatedLine()
59 const UnwrappedLineNode &Node = *I; in AnnotatedLine()
H A DUnwrappedLineParser.cpp1068 [](UnwrappedLineNode &LineNode) { in readTokenWithJavaScriptASI()
3024 for (std::list<UnwrappedLineNode>::const_iterator I = Line.Tokens.begin(), in printDebugInfo()
3031 for (std::list<UnwrappedLineNode>::const_iterator I = Line.Tokens.begin(), in printDebugInfo()
3034 const UnwrappedLineNode &Node = *I; in printDebugInfo()
3172 for (const UnwrappedLineNode &Node : Line.Tokens) { in continuesLineCommentSection()
3345 Line->Tokens.push_back(UnwrappedLineNode(Tok)); in pushToken()