Home
last modified time | relevance | path

Searched refs:atLoc (Results 1 – 13 of 13) sorted by relevance

/external/clang/lib/ARCMigrate/
DTransProperties.cpp130 SourceLocation atLoc = SourceLocation::getFromRawEncoding(I->first); in doTransform() local
138 rewriteProperty(props, atLoc); in doTransform()
148 SourceLocation atLoc = SourceLocation::getFromRawEncoding(I->first); in doTransform() local
151 doActionForExtensionProp(props, atLoc); in doTransform()
157 PropsTy &props, SourceLocation atLoc, in doPropAction() argument
168 MigrateCtx.rewritePropertyAttribute("retain", toAttr, atLoc); in doPropAction()
172 return removeAssignForDefaultStrong(props, atLoc); in doPropAction()
174 return rewriteAssign(props, atLoc); in doPropAction()
176 return maybeAddWeakOrUnsafeUnretainedAttr(props, atLoc); in doPropAction()
180 void doActionForExtensionProp(PropsTy &props, SourceLocation atLoc) { in doActionForExtensionProp() argument
[all …]
DTransforms.h116 bool removePropertyAttribute(StringRef fromAttr, SourceLocation atLoc) { in removePropertyAttribute() argument
117 return rewritePropertyAttribute(fromAttr, StringRef(), atLoc); in removePropertyAttribute()
120 SourceLocation atLoc);
121 bool addPropertyAttribute(StringRef attr, SourceLocation atLoc);
DTransforms.cpp390 SourceLocation atLoc) { in rewritePropertyAttribute() argument
391 if (atLoc.isMacroID()) in rewritePropertyAttribute()
397 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(atLoc); in rewritePropertyAttribute()
471 SourceLocation atLoc) { in addPropertyAttribute() argument
472 if (atLoc.isMacroID()) in addPropertyAttribute()
478 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(atLoc); in addPropertyAttribute()
/external/clang/lib/Parse/
DParseObjc.cpp101 Parser::ParseObjCAtClassDeclaration(SourceLocation atLoc) { in ParseObjCAtClassDeclaration() argument
126 return Actions.ActOnForwardClassDeclaration(atLoc, ClassNames.data(), in ParseObjCAtClassDeclaration()
1212 void Parser::HelperActionsForIvarDeclarations(Decl *interfaceDecl, SourceLocation atLoc, in HelperActionsForIvarDeclarations() argument
1224 Actions.ActOnFields(getCurScope(), atLoc, interfaceDecl, in HelperActionsForIvarDeclarations()
1251 SourceLocation atLoc) { in ParseObjCClassInstanceVariables() argument
1292 HelperActionsForIvarDeclarations(interfaceDecl, atLoc, in ParseObjCClassInstanceVariables()
1332 HelperActionsForIvarDeclarations(interfaceDecl, atLoc, in ParseObjCClassInstanceVariables()
1608 Decl *Parser::ParseObjCAtAliasDeclaration(SourceLocation atLoc) { in ParseObjCAtAliasDeclaration() argument
1625 return Actions.ActOnCompatibilityAlias(atLoc, aliasId, aliasLoc, in ParseObjCAtAliasDeclaration()
1640 Decl *Parser::ParseObjCPropertySynthesize(SourceLocation atLoc) { in ParseObjCPropertySynthesize() argument
[all …]
/external/clang/include/clang/Parse/
DParser.h1230 DeclGroupPtrTy ParseObjCAtClassDeclaration(SourceLocation atLoc);
1233 void HelperActionsForIvarDeclarations(Decl *interfaceDecl, SourceLocation atLoc,
1239 SourceLocation atLoc);
1248 DeclGroupPtrTy ParseObjCAtProtocolDeclaration(SourceLocation atLoc,
1276 Decl *ParseObjCAtAliasDeclaration(SourceLocation atLoc);
1277 Decl *ParseObjCPropertySynthesize(SourceLocation atLoc);
1278 Decl *ParseObjCPropertyDynamic(SourceLocation atLoc);
1667 StmtResult ParseObjCAtStatement(SourceLocation atLoc);
1668 StmtResult ParseObjCTryStmt(SourceLocation atLoc);
1669 StmtResult ParseObjCThrowStmt(SourceLocation atLoc);
[all …]
/external/clang/include/clang/AST/
DStmtObjC.h350 ObjCAutoreleasePoolStmt(SourceLocation atLoc, Stmt *subStmt) in ObjCAutoreleasePoolStmt() argument
351 : Stmt(ObjCAutoreleasePoolStmtClass), AtLoc(atLoc), SubStmt(subStmt) {} in ObjCAutoreleasePoolStmt()
DDeclObjC.h772 SourceLocation atLoc,
2402 ObjCPropertyImplDecl(DeclContext *DC, SourceLocation atLoc, SourceLocation L, in ObjCPropertyImplDecl() argument
2407 : Decl(ObjCPropertyImpl, DC, L), AtLoc(atLoc), in ObjCPropertyImplDecl()
2415 SourceLocation atLoc, SourceLocation L,
/external/clang/lib/AST/
DDeclObjC.cpp1145 SourceLocation atLoc, in Create() argument
1151 ObjCInterfaceDecl(C, DC, atLoc, Id, ClassLoc, PrevDecl, isInternal); in Create()
1883 SourceLocation atLoc, in Create() argument
1889 return new (C, DC) ObjCPropertyImplDecl(DC, atLoc, L, property, PK, ivar, in Create()
/external/clang/lib/Sema/
DSemaStmt.cpp3354 Sema::ActOnObjCAtSynchronizedOperand(SourceLocation atLoc, Expr *operand) { in ActOnObjCAtSynchronizedOperand() argument
3367 if (RequireCompleteType(atLoc, type, in ActOnObjCAtSynchronizedOperand()
3369 return Diag(atLoc, diag::error_objc_synchronized_expects_object) in ActOnObjCAtSynchronizedOperand()
3374 return Diag(atLoc, diag::error_objc_synchronized_expects_object) in ActOnObjCAtSynchronizedOperand()
3379 return Diag(atLoc, diag::error_objc_synchronized_expects_object) in ActOnObjCAtSynchronizedOperand()
DTreeTransform.h1563 ExprResult RebuildObjCAtSynchronizedOperand(SourceLocation atLoc, in RebuildObjCAtSynchronizedOperand() argument
1565 return getSema().ActOnObjCAtSynchronizedOperand(atLoc, object); in RebuildObjCAtSynchronizedOperand()
/external/clang/lib/Frontend/Rewrite/
DRewriteObjC.cpp3189 SourceLocation atLoc = LocStart.getLocWithOffset(cursor-startBuf); in RewriteObjCInternalStruct() local
3200 InsertText(atLoc, "// "); in RewriteObjCInternalStruct()
3206 SourceLocation atLoc = LocStart.getLocWithOffset(cursor-startBuf); in RewriteObjCInternalStruct() local
3207 InsertText(atLoc, "/* "); in RewriteObjCInternalStruct()
3210 atLoc = LocStart.getLocWithOffset(cursor-startBuf); in RewriteObjCInternalStruct()
3211 InsertText(atLoc, " */"); in RewriteObjCInternalStruct()
/external/clang/include/clang/Sema/
DSema.h3216 ExprResult ActOnObjCAtSynchronizedOperand(SourceLocation atLoc,
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
Dorg.eclipse.pde.core_3.6.1.v20100902_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...