Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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.h55 for (std::list<UnwrappedLineNode>::const_iterator I = ++Line.Tokens.begin(), in AnnotatedLine()
58 const UnwrappedLineNode &Node = *I; in AnnotatedLine()
H A DUnwrappedLineParser.cpp1021 [](UnwrappedLineNode &LineNode) { in readTokenWithJavaScriptASI()
2946 for (std::list<UnwrappedLineNode>::const_iterator I = Line.Tokens.begin(), in printDebugInfo()
2953 for (std::list<UnwrappedLineNode>::const_iterator I = Line.Tokens.begin(), in printDebugInfo()
2956 const UnwrappedLineNode &Node = *I; in printDebugInfo()
3094 for (const UnwrappedLineNode &Node : Line.Tokens) { in continuesLineCommentSection()
3267 Line->Tokens.push_back(UnwrappedLineNode(Tok)); in pushToken()