HomeSort by: relevance | last modified time | path
    Searched refs:Commas (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Format/
FormatToken.cpp 115 // If the previous token was one of our commas, we are now on the next item.
116 if (Item < Commas.size() && State.NextToken->Previous == Commas[Item]) {
163 Commas.size() < 19)
169 if (Token->is(TT_ArrayInitializerLSquare) && Commas.size() < 19)
186 for (unsigned i = 0, e = Commas.size() + 1; i != e; ++i) {
197 if (i == Commas.size()) {
212 ItemEnd = Commas[i];
231 if (Commas.size() < 5 || HasSeparatingComment)
234 if (Token->NestingLevel != 0 && Token->is(tok::l_brace) && Commas.size() < 19
    [all...]
FormatToken.h 786 Commas.push_back(Token);
790 if (Commas.empty())
792 return Commas.back();
816 /// The ordered \c FormatTokens making up the commas of this list.
817 SmallVector<const FormatToken *, 8> Commas;
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseExprCXX.cpp 982 CommaLocsTy Commas;
986 } else if (ParseExpressionList(Exprs, Commas)) {
1906 "Unexpected number of commas!");

Completed in 17 milliseconds