reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/include/clang/Parse/Parser.h
 1682             K == tok::period || K == tok::arrow ||
tools/clang/lib/Format/FormatToken.h
  406     return isOneOf(tok::arrow, tok::period, tok::arrowstar) &&
tools/clang/lib/Format/FormatTokenLexer.cpp
  329   return Tok->isOneOf(tok::period, tok::l_paren, tok::comma, tok::l_brace,
tools/clang/lib/Format/TokenAnnotator.cpp
  860         if ((Tok->Previous && Tok->Previous->is(tok::period)) ||
 1210     return Tok.TokenText == "goog" && Tok.Next && Tok.Next->is(tok::period) &&
 1444                                  tok::comma, tok::period, tok::arrow,
 1475     } else if (Current.is(tok::period)) {
 1516       } else if (Current.Previous->is(tok::period) &&
 1555              PreviousNotConst->MatchingParen->Previous->isNot(tok::period) &&
 1929       if (Current->isOneOf(tok::period, tok::arrow))
 2359       (Right.is(tok::period) && Style.Language == FormatStyle::LK_Proto))
 2661               (!Left.Previous || Left.Previous->isNot(tok::period))))) ||
 2680   if (Left.is(tok::period) || Right.is(tok::period))
 2680   if (Left.is(tok::period) || Right.is(tok::period))
 2686       (Left.MatchingParen->Previous->is(tok::period) ||
 2725     if (Right.is(tok::period) &&
 2793       if (Left.Previous && Left.Previous->is(tok::period) &&
 2813         (!Left.Previous || !Left.Previous->is(tok::period)))
 2816         Left.Previous->is(tok::period) && Right.is(tok::l_paren))
 2936       Left.isOneOf(tok::arrow, tok::period, tok::arrowstar, tok::periodstar) ||
 2937       (Right.is(tok::period) && Right.isNot(TT_DesignatedInitializerPeriod)))
 3431     return Left.isNot(tok::period); // FIXME: Properly parse ObjC calls.
tools/clang/lib/Format/UnwrappedLineParser.cpp
  461               NextTok->isOneOf(tok::comma, tok::period, tok::colon,
  603   if (I->Tok->isNot(tok::period))
  864          Tok.isNot(tok::period) && Tok.isNot(tok::periodstar) &&
 1239     case tok::period:
 2189           FormatTok->isOneOf(tok::period, tok::comma))) {
tools/clang/lib/Lex/Lexer.cpp
 3519       Kind = tok::period;
tools/clang/lib/Lex/ModuleMap.cpp
 1531   case tok::period:
tools/clang/lib/Lex/Pragma.cpp
  776     if (Tok.isNot(tok::period))
tools/clang/lib/Lex/Preprocessor.cpp
 1225   if (!ModuleImportExpectsIdentifier && Result.getKind() == tok::period) {
tools/clang/lib/Lex/TokenConcatenation.cpp
   75   TokenInfo[tok::period          ] |= aci_custom_firstchar;
  267   case tok::period:          // ..., .*, .1234
  268     return (FirstChar == '.' && PrevPrevTok.is(tok::period)) ||
tools/clang/lib/Parse/ParseDecl.cpp
 4969     if (getLangOpts().ObjC && NextToken().is(tok::period))
 5972       if (Tok.isOneOf(tok::period, tok::arrow))
tools/clang/lib/Parse/ParseExpr.cpp
  562     if (!NextToken.isOneOf(tok::equal, tok::arrow, tok::period))
  974     if (getLangOpts().ObjC && Tok.is(tok::period) &&
 1740     case tok::period: {
 1780             OpKind == tok::arrow ? tok::period : tok::arrow;
 1821       if (getLangOpts().ObjC && OpKind == tok::period &&
 2170       if (Tok.is(tok::period)) {
 2601             GetLookAheadToken(1).isNot(tok::period)) {
tools/clang/lib/Parse/ParseInit.cpp
   30   case tok::period:      // designator: '.' identifier
  191   while (Tok.is(tok::period) || Tok.is(tok::l_square)) {
  192     if (Tok.is(tok::period)) {
  242           NextToken().isNot(tok::period) &&
  281           NextToken().is(tok::period), ReceiverType)) {
tools/clang/lib/Parse/ParseObjc.cpp
 3030         NextToken().isNot(tok::period) && getCurScope()->isInObjcMethodScope())
 3057                                        NextToken().is(tok::period),
tools/clang/lib/Parse/ParsePragma.cpp
 3181       if (!Tok.is(tok::period)) {
tools/clang/lib/Parse/ParseStmt.cpp
  125         nextTok.isOneOf(tok::l_paren, tok::identifier, tok::arrow, tok::period);
  136     if (NextToken.is(tok::period) &&
tools/clang/lib/Parse/ParseStmtAsm.cpp
  249   while (Result.isUsable() && Tok.is(tok::period)) {
tools/clang/lib/Parse/Parser.cpp
 1885             false, NextToken().is(tok::period), nullptr,
 2394     if (Tok.isNot(tok::period))
tools/clang/lib/Sema/SemaDecl.cpp
 1142     if (NextToken.is(tok::period)) {
tools/clang/lib/Sema/SemaExprCXX.cpp
 6770             OpKind = tok::period;
 6871       OpKind = tok::period;
 6933         if (OpKind == tok::period && ObjectType->isPointerType() &&
tools/clang/lib/Sema/SemaPseudoObject.cpp
 1485                               RefExpr->isArrow() ? tok::arrow : tok::period, SS,
 1514                               RefExpr->isArrow() ? tok::arrow : tok::period, SS,
tools/clang/lib/Sema/TreeTransform.h
10780                                         E->isArrow()? tok::arrow : tok::period,
11795                                       E->isArrow()? tok::arrow : tok::period,
13330         Base, OperatorLoc, isArrow ? tok::arrow : tok::period, SS, ScopeType,
tools/clang/tools/extra/clang-tidy/bugprone/MacroParenthesesCheck.cpp
  199     if (Prev.isOneOf(tok::period, tok::arrow, tok::coloncolon, tok::arrowstar,