Lines Matching defs:AtLoc
1210 SourceLocation AtLoc = ConsumeToken(); // the "@"
1224 if (DS.SetTypeSpecType(DeclSpec::TST_unspecified, AtLoc, PrevSpec, DiagID,
1226 Diag(AtLoc, DiagID) << PrevSpec;
1229 return ParseObjCAtProtocolDeclaration(AtLoc, DS.getAttributes());
1232 return ParseObjCAtImplementationDeclaration(AtLoc, DS.getAttributes());
1235 ParseObjCAtInterfaceDeclaration(AtLoc, DS.getAttributes()));
2558 Decl *Parser::ParseModuleImport(SourceLocation AtLoc,
2560 SourceLocation StartLoc = AtLoc.isInvalid() ? Tok.getLocation() : AtLoc;
2565 assert((AtLoc.isInvalid() ? Tok.isOneOf(tok::kw_import, tok::identifier)
2673 if (IsObjCAtImport && AtLoc.isValid()) {
2675 auto FE = SrcMgr.getFileEntryRefForID(SrcMgr.getFileID(AtLoc));
2678 Diags.Report(AtLoc, diag::warn_atimport_in_framework_header);