Home | History | Annotate | Download | only in Parse

Lines Matching full:identifier

39 ///           'namespace' identifier = qualified-namespace-specifier ';'
126 // or an identifier which doesn't resolve as anything. We need tentative
438 /// identifier
439 /// identifier '::' identifier
519 // requirements of an identifier is contained in an attribute-token,
520 // it is considered an identifier.
617 /// identifier
630 if (Tok.is(tok::coloncolon) || Tok.is(tok::identifier))
653 if ((Tok.is(tok::identifier) ||
654 (Tok.is(tok::annot_cxxscope) && NextToken().is(tok::identifier))) &&
916 /// identifier
953 /// class-key '::'[opt] nested-name-specifier[opt] identifier
956 /// 'enum' '::'[opt] nested-name-specifier[opt] identifier
959 /// identifier
962 /// 'enum' identifier[opt] '{' enumerator-list[opt] '}'
963 /// 'enum' identifier[opt] '{' enumerator-list ',' '}'
969 /// class-key identifier[opt] base-clause[opt]
970 /// class-key nested-name-specifier identifier base-clause[opt]
988 case tok::identifier: {
990 // for "vector" identifier.
996 if (!getLangOpts().ObjC1 && Next.is(tok::identifier))
1022 assert(Tok.isNot(tok::identifier) &&
1032 // FIXME: If this happens due to an undeclared identifier, treat it as
1034 if (Tok.is(tok::identifier))
1156 // If the next token is an identifier or a type qualifier, then this
1158 if (Tok.is(tok::annot_cxxscope) && NextToken().is(tok::identifier)) {
1167 bool isIdentifier = Tok.is(tok::identifier);
1202 NextToken().isNot(tok::identifier));
1346 //// '<' identifier-list '>'
1351 if (Tok.isNot(tok::identifier))