Home
last modified time | relevance | path

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

/external/clang/lib/Format/
DUnwrappedLineParser.h27 struct UnwrappedLineNode;
40 std::list<UnwrappedLineNode> Tokens;
203 struct UnwrappedLineNode { struct
204 UnwrappedLineNode() : Tok(nullptr) {} in UnwrappedLineNode() argument
205 UnwrappedLineNode(FormatToken *Tok) : Tok(Tok) {} in UnwrappedLineNode() function
DTokenAnnotator.h53 for (std::list<UnwrappedLineNode>::const_iterator I = ++Line.Tokens.begin(), in AnnotatedLine()
56 const UnwrappedLineNode &Node = *I; in AnnotatedLine()
DUnwrappedLineParser.cpp1457 for (std::list<UnwrappedLineNode>::const_iterator I = Line.Tokens.begin(), in printDebugInfo()
1462 for (std::list<UnwrappedLineNode>::const_iterator I = Line.Tokens.begin(), in printDebugInfo()
1465 const UnwrappedLineNode &Node = *I; in printDebugInfo()
1579 Line->Tokens.push_back(UnwrappedLineNode(Tok)); in pushToken()