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

  /external/clang/lib/Parse/
ParseTemplate.cpp 104 TryConsumeToken(tok::kw_export, ExportLoc);
108 if (!TryConsumeToken(tok::kw_template, TemplateLoc)) {
120 TryConsumeToken(tok::semi);
318 if (!TryConsumeToken(tok::less, LAngleLoc)) {
337 } else if (!TryConsumeToken(tok::greater, RAngleLoc) && Failed) {
495 if (TryConsumeToken(tok::ellipsis, EllipsisLoc)) {
519 if (TryConsumeToken(tok::ellipsis, EllipsisLoc))
527 if (TryConsumeToken(tok::equal, EqualLoc))
568 if (!TryConsumeToken(tok::kw_class)) {
594 if (TryConsumeToken(tok::ellipsis, EllipsisLoc)
    [all...]
ParseStmt.cpp 366 if (!TryConsumeToken(tok::semi) && !Res.isInvalid()) {
669 TryConsumeToken(tok::colon, ColonLoc);
682 if (TryConsumeToken(tok::ellipsis, DotDotDotLoc)) {
687 TryConsumeToken(tok::colon, ColonLoc);
696 if (TryConsumeToken(tok::colon, ColonLoc)) {
697 } else if (TryConsumeToken(tok::semi, ColonLoc) ||
698 TryConsumeToken(tok::coloncolon, ColonLoc)) {
774 if (TryConsumeToken(tok::colon, ColonLoc)) {
775 } else if (TryConsumeToken(tok::semi, ColonLoc)) {
936 if (!TryConsumeToken(tok::comma)
    [all...]
ParseDecl.cpp 142 if (TryConsumeToken(tok::comma))
315 } while (TryConsumeToken(tok::comma));
468 if (!TryConsumeToken(tok::equal)) {
492 if (TryConsumeToken(tok::comma))
545 if (TryConsumeToken(tok::comma))
    [all...]
ParseDeclCXX.cpp 503 if (TryConsumeToken(tok::kw_typename, TypenameLoc))
    [all...]
ParseObjc.cpp 118 if (!TryConsumeToken(tok::comma))
    [all...]
Parser.cpp 158 if (TryConsumeToken(tok::semi))
    [all...]
ParseTentative.cpp 325 if (!TryConsumeToken(tok::comma))
599 TryConsumeToken(tok::ellipsis);
601 if (!TryConsumeToken(tok::comma))
    [all...]
ParseCXXInlineMethods.cpp 64 if (TryConsumeToken(tok::equal)) {
73 if (TryConsumeToken(tok::kw_delete, KWLoc)) {
82 } else if (TryConsumeToken(tok::kw_default, KWLoc)) {
    [all...]
ParseStmtAsm.cpp 714 if (!TryConsumeToken(tok::comma))
790 if (!TryConsumeToken(tok::comma))
ParseExprCXX.cpp 263 if (!TryConsumeToken(tok::coloncolon, CCLoc)) {
    [all...]
ParseExpr.cpp 291 if (!TryConsumeToken(tok::colon, ColonLoc)) {
    [all...]
  /external/clang/include/clang/Parse/
Parser.h 289 bool TryConsumeToken(tok::TokenKind Expected) {
299 bool TryConsumeToken(tok::TokenKind Expected, SourceLocation &Loc) {
300 if (!TryConsumeToken(Expected))
    [all...]

Completed in 137 milliseconds