Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/Format/
H A DUnwrappedLineParser.h29 struct UnwrappedLineNode;
42 std::list<UnwrappedLineNode> Tokens;
283 struct UnwrappedLineNode { struct
284 UnwrappedLineNode() : Tok(nullptr) {} in UnwrappedLineNode() argument
285 UnwrappedLineNode(FormatToken *Tok) : Tok(Tok) {} in UnwrappedLineNode() argument
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.cpp947 [](UnwrappedLineNode &LineNode) { in readTokenWithJavaScriptASI()
2365 for (std::list<UnwrappedLineNode>::const_iterator I = Line.Tokens.begin(), in printDebugInfo()
2372 for (std::list<UnwrappedLineNode>::const_iterator I = Line.Tokens.begin(), in printDebugInfo()
2375 const UnwrappedLineNode &Node = *I; in printDebugInfo()
2500 for (const UnwrappedLineNode &Node : Line.Tokens) { in continuesLineCommentSection()
2670 Line->Tokens.push_back(UnwrappedLineNode(Tok)); in pushToken()