Home
last modified time | relevance | path

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

/freebsd-9-stable/contrib/llvm/tools/clang/lib/Format/
DUnwrappedLineParser.h27 struct UnwrappedLineNode;
40 std::list<UnwrappedLineNode> Tokens;
190 struct UnwrappedLineNode { struct
191 UnwrappedLineNode() : Tok(NULL) {} in UnwrappedLineNode() argument
192 UnwrappedLineNode(FormatToken *Tok) : Tok(Tok) {} in UnwrappedLineNode() function
DTokenAnnotator.h52 for (std::list<UnwrappedLineNode>::const_iterator I = ++Line.Tokens.begin(), in AnnotatedLine()
55 const UnwrappedLineNode &Node = *I; in AnnotatedLine()
DUnwrappedLineParser.cpp1245 for (std::list<UnwrappedLineNode>::const_iterator I = Line.Tokens.begin(), in printDebugInfo()
1250 for (std::list<UnwrappedLineNode>::const_iterator I = Line.Tokens.begin(), in printDebugInfo()
1253 const UnwrappedLineNode &Node = *I; in printDebugInfo()
1348 Line->Tokens.push_back(UnwrappedLineNode(Tok)); in pushToken()