Lines Matching defs:AtLoc
1205 SourceLocation AtLoc = ConsumeToken(); // the "@"
1219 if (DS.SetTypeSpecType(DeclSpec::TST_unspecified, AtLoc, PrevSpec, DiagID,
1221 Diag(AtLoc, DiagID) << PrevSpec;
1224 return ParseObjCAtProtocolDeclaration(AtLoc, DS.getAttributes());
1227 return ParseObjCAtImplementationDeclaration(AtLoc, DS.getAttributes());
1230 ParseObjCAtInterfaceDeclaration(AtLoc, DS.getAttributes()));
2560 Decl *Parser::ParseModuleImport(SourceLocation AtLoc,
2562 SourceLocation StartLoc = AtLoc.isInvalid() ? Tok.getLocation() : AtLoc;
2567 assert((AtLoc.isInvalid() ? Tok.isOneOf(tok::kw_import, tok::identifier)
2674 if (IsObjCAtImport && AtLoc.isValid()) {
2676 auto FE = SrcMgr.getFileEntryRefForID(SrcMgr.getFileID(AtLoc));
2679 Diags.Report(AtLoc, diag::warn_atimport_in_framework_header);