• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/llvm-project/clang/lib/Parse/

Lines Matching refs:identifier

38 ///           'namespace' identifier = qualified-namespace-specifier ';'
76 /// decl-specifier-seq ref-qualifier[opt] '[' identifier-list ']'
84 /// decl-specifier-seq ref-qualifier[opt] '[' identifier-list ']'
132 // or an identifier which doesn't resolve as anything. We need tentative
181 // nested-name-specifier[opt] identifier
183 // enum nested-name-specifier[opt] identifier
196 if (Tok.is(tok::identifier))
447 // identifier.
655 /// identifier
656 /// identifier '::' identifier
755 // requirements of an identifier is contained in an attribute-token,
756 // it is considered an identifier.
869 /// 'operator' string-literal identifier
921 if (Tok.is(tok::identifier))
992 /// identifier
1014 if ((Tok.isOneOf(tok::identifier, tok::kw_operator) ||
1015 (Tok.is(tok::annot_cxxscope) && (NextToken().is(tok::identifier) ||
1026 } else if (Tok.is(tok::identifier)) {
1115 tok::identifier, tok::comma);
1177 /// identifier
1215 /// class-key '::'[opt] nested-name-specifier[opt] identifier
1218 /// 'enum' '::'[opt] nested-name-specifier[opt] identifier
1221 /// identifier
1224 /// 'enum' identifier[opt] '{' enumerator-list[opt] '}'
1225 /// 'enum' identifier[opt] '{' enumerator-list ',' '}'
1231 /// class-key identifier[opt] base-clause[opt]
1232 /// class-key nested-name-specifier identifier base-clause[opt]
1255 // If we have an identifier here, the user probably forgot the
1259 tok::identifier);
1262 case tok::identifier: {
1264 // for "vector" identifier.
1270 if (!getLangOpts().ObjC && Next.is(tok::identifier))
1301 if (Tok.isNot(tok::identifier))
1313 assert(Tok.isNot(tok::identifier) &&
1323 // FIXME: If this happens due to an undeclared identifier, treat it as
1325 if (Tok.is(tok::identifier))
1506 // If the next token is an identifier or a type qualifier, then this
1508 if (Tok.is(tok::annot_cxxscope) && NextToken().is(tok::identifier)) {
1517 bool isIdentifier = Tok.is(tok::identifier);
1558 if (Tok.isNot(tok::identifier))
1576 NextToken().isNot(tok::identifier));
1798 //// '<' identifier-list '>'
1803 if (Tok.isNot(tok::identifier))
1940 if (SeenType && Tok.is(tok::identifier))
2165 if (Tok.isNot(tok::identifier) && Tok.isNot(tok::annot_template_id))
2167 if (!Actions.isCurrentClassName(Tok.is(tok::identifier)