HomeSort by relevance Sort by last modified time
    Searched refs:Commas (Results 1 - 5 of 5) sorted by null

  /external/clang/lib/Format/
FormatToken.cpp 93 // If the previous token was one of our commas, we are now on the next item.
94 if (Item < Commas.size() && State.NextToken->Previous == Commas[Item]) {
146 for (unsigned i = 0, e = Commas.size() + 1; i != e; ++i) {
155 if (i == Commas.size()) {
169 ItemEnd = Commas[i];
188 if (HasNestedBracedList || Commas.size() < 5 || Token->NestingLevel != 0)
FormatToken.h 193 /// the number of commas.
465 Commas.push_back(Token);
489 /// \brief The ordered \c FormatTokens making up the commas of this list.
490 SmallVector<const FormatToken *, 8> Commas;
  /external/clang/test/Parser/
cxx0x-decl.cpp 3 // Make sure we know these are legitimate commas and not typos for ';'.
4 namespace Commas {
cxx-decl.cpp 49 enum { fooenum = 1, }; // expected-error {{commas at the end of enumerator lists are a C++11 extension}}
71 // Make sure we know these are legitimate commas and not typos for ';'.
72 namespace Commas {
  /external/clang/lib/Parse/
ParseExprCXX.cpp 833 CommaLocsTy Commas;
837 } else if (ParseExpressionList(Exprs, Commas)) {
    [all...]

Completed in 310 milliseconds