HomeSort by: relevance | last modified time | path
    Searched refs:AtLoc (Results 1 - 20 of 20) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
TransGCAttrs.cpp 220 SourceLocation AtLoc,
265 MigrateCtx.AtPropsWeak.insert(AtLoc);
277 MigrateCtx.rewritePropertyAttribute("assign", toAttr, AtLoc);
279 MigrateCtx.addPropertyAttribute(toAttr, AtLoc);
289 TA.clearDiagnostic(diag::err_objc_property_attr_mutually_exclusive, AtLoc);
306 SourceLocation AtLoc = PD->getAtLoc();
307 if (AtLoc.isInvalid())
309 AtProps[AtLoc].push_back(PD);
314 SourceLocation AtLoc = I->first;
316 checkAllAtProps(MigrateCtx, AtLoc, IndProps)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseObjc.cpp 50 SourceLocation AtLoc = ConsumeToken(); // the "@"
61 return ParseObjCAtClassDeclaration(AtLoc);
63 SingleDecl = ParseObjCAtInterfaceDeclaration(AtLoc, Attrs);
66 return ParseObjCAtProtocolDeclaration(AtLoc, Attrs);
68 return ParseObjCAtImplementationDeclaration(AtLoc, Attrs);
70 return ParseObjCAtEndDeclaration(AtLoc);
72 SingleDecl = ParseObjCAtAliasDeclaration(AtLoc);
75 SingleDecl = ParseObjCPropertySynthesize(AtLoc);
78 SingleDecl = ParseObjCPropertyDynamic(AtLoc);
82 SingleDecl = ParseModuleImport(AtLoc);
    [all...]
Parser.cpp 1097 SourceLocation AtLoc = ConsumeToken(); // the "@"
1110 if (DS.SetTypeSpecType(DeclSpec::TST_unspecified, AtLoc, PrevSpec, DiagID,
1112 Diag(AtLoc, DiagID) << PrevSpec;
1115 return ParseObjCAtProtocolDeclaration(AtLoc, DS.getAttributes());
1118 return ParseObjCAtImplementationDeclaration(AtLoc, DS.getAttributes());
1121 ParseObjCAtInterfaceDeclaration(AtLoc, DS.getAttributes()));
2378 Decl *Parser::ParseModuleImport(SourceLocation AtLoc) {
2379 SourceLocation StartLoc = AtLoc.isInvalid() ? Tok.getLocation() : AtLoc;
2384 assert((AtLoc.isInvalid() ? Tok.isOneOf(tok::kw_import, tok::identifier
    [all...]
ParseStmt.cpp 171 SourceLocation AtLoc;
175 AtLoc = ConsumeToken(); // consume @
176 return ParseObjCAtStatement(AtLoc, StmtCtx);
ParseExpr.cpp 134 Parser::ParseExpressionWithLeadingAt(SourceLocation AtLoc) {
135 ExprResult LHS(ParseObjCAtExpression(AtLoc));
1720 SourceLocation AtLoc = ConsumeToken();
1721 return ParseObjCAtExpression(AtLoc);
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ExprObjC.h 54 SourceLocation AtLoc;
59 AtLoc(L) {
69 SourceLocation getAtLoc() const { return AtLoc; }
70 void setAtLoc(SourceLocation L) { AtLoc = L; }
72 SourceLocation getBeginLoc() const LLVM_READONLY { return AtLoc; }
411 SourceLocation AtLoc, RParenLoc;
417 EncodedType(EncodedType), AtLoc(at), RParenLoc(rp) {
423 SourceLocation getAtLoc() const { return AtLoc; }
424 void setAtLoc(SourceLocation L) { AtLoc = L; }
436 SourceLocation getBeginLoc() const LLVM_READONLY { return AtLoc; }
    [all...]
StmtObjC.h 369 SourceLocation AtLoc;
373 ObjCAutoreleasePoolStmt(SourceLocation atLoc, Stmt *subStmt)
374 : Stmt(ObjCAutoreleasePoolStmtClass), AtLoc(atLoc), SubStmt(subStmt) {}
383 SourceLocation getBeginLoc() const LLVM_READONLY { return AtLoc; }
388 SourceLocation getAtLoc() const { return AtLoc; }
389 void setAtLoc(SourceLocation Loc) { AtLoc = Loc; }
DeclObjC.h 738 SourceLocation AtLoc;
775 : NamedDecl(ObjCProperty, DC, L, Id), AtLoc(AtLocation),
793 SourceLocation getAtLoc() const { return AtLoc; }
794 void setAtLoc(SourceLocation L) { AtLoc = L; }
926 return SourceRange(AtLoc, getLocation());
1229 ObjCInterfaceDecl(const ASTContext &C, DeclContext *DC, SourceLocation AtLoc,
1262 SourceLocation atLoc,
2285 ObjCCategoryDecl(DeclContext *DC, SourceLocation AtLoc,
2299 SourceLocation AtLoc,
2749 SourceLocation AtLoc; // location of \@synthesize or \@dynami
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaObjCProperty.cpp 172 Decl *Sema::ActOnProperty(Scope *S, SourceLocation AtLoc,
197 Res = HandlePropertyInClassExtension(S, AtLoc, LParenLoc,
210 Res = CreatePropertyDecl(S, ClassDecl, AtLoc, LParenLoc, FD,
220 CheckObjCPropertyAttributes(Res, AtLoc, Attributes,
406 SourceLocation AtLoc,
443 Diag(AtLoc, diag::err_duplicate_property);
464 Diag(AtLoc, diag)
474 Diag(AtLoc, diag::warn_property_redecl_getter_mismatch)
491 Diag(AtLoc, diag::warn_property_attr_mismatch);
505 Diag(AtLoc, diag::warn_property_implicitly_mismatched)
    [all...]
SemaExprObjC.cpp 81 ExprResult Sema::BuildObjCStringLiteral(SourceLocation AtLoc, StringLiteral *S){
102 NamedDecl *IF = LookupSingleName(TUScope, NSIdent, AtLoc,
117 NamedDecl *IF = LookupSingleName(TUScope, NSIdent, AtLoc,
142 return new (Context) ObjCStringLiteral(S, Ty, AtLoc);
316 ExprResult Sema::BuildObjCNumericLiteral(SourceLocation AtLoc, Expr *Number) {
345 ObjCMethodDecl *Method = getNSNumberFactoryMethod(*this, AtLoc, NumberType,
364 SourceRange(AtLoc, NR.getEnd())));
367 ExprResult Sema::ActOnObjCBoolLiteral(SourceLocation AtLoc,
381 return BuildObjCNumericLiteral(AtLoc, Inner.get());
1130 ExprResult Sema::BuildObjCEncodeExpression(SourceLocation AtLoc,
    [all...]
SemaStmt.cpp 4191 Sema::ActOnObjCAtCatchStmt(SourceLocation AtLoc,
4198 return new (Context) ObjCAtCatchStmt(AtLoc, RParen, Var, Body);
4202 Sema::ActOnObjCAtFinallyStmt(SourceLocation AtLoc, Stmt *Body) {
4203 return new (Context) ObjCAtFinallyStmt(AtLoc, Body);
4207 Sema::ActOnObjCAtTryStmt(SourceLocation AtLoc, Stmt *Try,
4210 Diag(AtLoc, diag::err_objc_exceptions_disabled) << "@try";
4214 return ObjCAtTryStmt::Create(Context, AtLoc, Try, CatchStmts.data(),
4218 StmtResult Sema::BuildObjCAtThrowStmt(SourceLocation AtLoc, Expr *Throw) {
4235 return StmtError(Diag(AtLoc, diag::err_objc_throw_expects_object)
4240 return new (Context) ObjCAtThrowStmt(AtLoc, Throw)
    [all...]
TreeTransform.h 1499 StmtResult RebuildObjCAtTryStmt(SourceLocation AtLoc,
1503 return getSema().ActOnObjCAtTryStmt(AtLoc, TryBody, CatchStmts,
1523 StmtResult RebuildObjCAtCatchStmt(SourceLocation AtLoc,
1527 return getSema().ActOnObjCAtCatchStmt(AtLoc, RParenLoc,
1535 StmtResult RebuildObjCAtFinallyStmt(SourceLocation AtLoc,
1537 return getSema().ActOnObjCAtFinallyStmt(AtLoc, Body);
1544 StmtResult RebuildObjCAtThrowStmt(SourceLocation AtLoc,
1546 return getSema().BuildObjCAtThrowStmt(AtLoc, Operand);
2249 ExprResult RebuildObjCAtSynchronizedOperand(SourceLocation atLoc,
2251 return getSema().ActOnObjCAtSynchronizedOperand(atLoc, object)
    [all...]
SemaDeclObjC.cpp 1136 Decl *Sema::ActOnCompatibilityAlias(SourceLocation AtLoc,
1176 ObjCCompatibleAliasDecl::Create(Context, CurContext, AtLoc, AliasName, CDecl);
SemaExpr.cpp 19640 llvm::ArrayRef<AvailabilitySpec> AvailSpecs, SourceLocation AtLoc,
19661 ObjCAvailabilityCheckExpr(Version, AtLoc, RParen, Context.BoolTy);
  /src/external/apache2/llvm/dist/clang/include/clang/Parse/
Parser.h 1176 void CheckNestedObjCContexts(SourceLocation AtLoc);
1602 DeclGroupPtrTy ParseObjCAtClassDeclaration(SourceLocation atLoc);
1603 Decl *ParseObjCAtInterfaceDeclaration(SourceLocation AtLoc,
1612 void HelperActionsForIvarDeclarations(Decl *interfaceDecl, SourceLocation atLoc,
1618 SourceLocation atLoc);
1668 DeclGroupPtrTy ParseObjCAtProtocolDeclaration(SourceLocation atLoc,
1694 DeclGroupPtrTy ParseObjCAtImplementationDeclaration(SourceLocation AtLoc,
1697 Decl *ParseObjCAtAliasDeclaration(SourceLocation atLoc);
1698 Decl *ParseObjCPropertySynthesize(SourceLocation atLoc);
1699 Decl *ParseObjCPropertyDynamic(SourceLocation atLoc);
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
DeclObjC.cpp 1493 SourceLocation atLoc,
1500 ObjCInterfaceDecl(C, DC, atLoc, Id, typeParamList, ClassLoc, PrevDecl,
1517 SourceLocation AtLoc, IdentifierInfo *Id,
1522 : ObjCContainerDecl(ObjCInterface, DC, Id, CLoc, AtLoc),
2030 ObjCCategoryDecl::ObjCCategoryDecl(DeclContext *DC, SourceLocation AtLoc,
2037 : ObjCContainerDecl(ObjCCategory, DC, Id, ClassNameLoc, AtLoc),
2044 SourceLocation AtLoc,
2053 new (C, DC) ObjCCategoryDecl(DC, AtLoc, ClassNameLoc, CategoryNameLoc, Id,
2278 SourceLocation AtLoc,
2283 return new (C, DC) ObjCPropertyDecl(DC, L, Id, AtLoc, LParenLoc, T, TSI
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h 4383 SourceLocation AtLoc,
4401 SourceLocation AtLoc,
4808 StmtResult ActOnObjCAtCatchStmt(SourceLocation AtLoc, SourceLocation RParen,
4811 StmtResult ActOnObjCAtFinallyStmt(SourceLocation AtLoc, Stmt *Body);
4813 StmtResult ActOnObjCAtTryStmt(SourceLocation AtLoc, Stmt *Try,
4816 StmtResult BuildObjCAtThrowStmt(SourceLocation AtLoc, Expr *Throw);
4817 StmtResult ActOnObjCAtThrowStmt(SourceLocation AtLoc, Expr *Throw,
4819 ExprResult ActOnObjCAtSynchronizedOperand(SourceLocation atLoc,
4821 StmtResult ActOnObjCAtSynchronizedStmt(SourceLocation AtLoc,
4825 StmtResult ActOnObjCAutoreleasePoolStmt(SourceLocation AtLoc, Stmt *Body)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
AsmParser.cpp 1187 SMLoc AtLoc = getLexer().getLoc();
1190 return Error(AtLoc, "expected symbol variant after '@'");
MasmParser.cpp 1489 SMLoc AtLoc = getLexer().getLoc();
1492 return Error(AtLoc, "expected symbol variant after '@'");
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderStmt.cpp 1626 E->AtLoc = R.getBegin();

Completed in 99 milliseconds