| /minix3/external/bsd/llvm/dist/clang/lib/ARCMigrate/ |
| H A D | TransProperties.cpp | 130 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 …]
|
| H A D | Transforms.h | 116 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);
|
| H A D | Transforms.cpp | 390 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()
|
| /minix3/external/bsd/llvm/dist/clang/lib/Parse/ |
| H A D | ParseObjc.cpp | 101 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 …]
|
| /minix3/external/bsd/llvm/dist/clang/include/clang/Parse/ |
| H A D | Parser.h | 1231 DeclGroupPtrTy ParseObjCAtClassDeclaration(SourceLocation atLoc); 1234 void HelperActionsForIvarDeclarations(Decl *interfaceDecl, SourceLocation atLoc, 1240 SourceLocation atLoc); 1249 DeclGroupPtrTy ParseObjCAtProtocolDeclaration(SourceLocation atLoc, 1277 Decl *ParseObjCAtAliasDeclaration(SourceLocation atLoc); 1278 Decl *ParseObjCPropertySynthesize(SourceLocation atLoc); 1279 Decl *ParseObjCPropertyDynamic(SourceLocation atLoc); 1672 StmtResult ParseObjCAtStatement(SourceLocation atLoc); 1673 StmtResult ParseObjCTryStmt(SourceLocation atLoc); 1674 StmtResult ParseObjCThrowStmt(SourceLocation atLoc); [all …]
|
| /minix3/external/bsd/llvm/dist/clang/include/clang/AST/ |
| H A D | StmtObjC.h | 347 ObjCAutoreleasePoolStmt(SourceLocation atLoc, in ObjCAutoreleasePoolStmt() argument 350 SubStmt(subStmt), AtLoc(atLoc) {} in ObjCAutoreleasePoolStmt()
|
| H A D | DeclObjC.h | 772 SourceLocation atLoc, 2399 ObjCPropertyImplDecl(DeclContext *DC, SourceLocation atLoc, SourceLocation L, in ObjCPropertyImplDecl() argument 2404 : Decl(ObjCPropertyImpl, DC, L), AtLoc(atLoc), in ObjCPropertyImplDecl() 2412 SourceLocation atLoc, SourceLocation L,
|
| /minix3/external/bsd/llvm/dist/clang/lib/AST/ |
| H A D | DeclObjC.cpp | 1147 SourceLocation atLoc, in Create() argument 1153 ObjCInterfaceDecl(C, DC, atLoc, Id, ClassLoc, PrevDecl, isInternal); in Create() 1880 SourceLocation atLoc, in Create() argument 1886 return new (C, DC) ObjCPropertyImplDecl(DC, atLoc, L, property, PK, ivar, in Create()
|
| /minix3/external/bsd/llvm/dist/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 3194 Sema::ActOnObjCAtSynchronizedOperand(SourceLocation atLoc, Expr *operand) { in ActOnObjCAtSynchronizedOperand() argument 3207 if (RequireCompleteType(atLoc, type, in ActOnObjCAtSynchronizedOperand() 3209 return Diag(atLoc, diag::error_objc_synchronized_expects_object) in ActOnObjCAtSynchronizedOperand() 3214 return Diag(atLoc, diag::error_objc_synchronized_expects_object) in ActOnObjCAtSynchronizedOperand() 3219 return Diag(atLoc, diag::error_objc_synchronized_expects_object) in ActOnObjCAtSynchronizedOperand()
|
| H A D | TreeTransform.h | 1563 ExprResult RebuildObjCAtSynchronizedOperand(SourceLocation atLoc, in RebuildObjCAtSynchronizedOperand() argument 1565 return getSema().ActOnObjCAtSynchronizedOperand(atLoc, object); in RebuildObjCAtSynchronizedOperand()
|
| /minix3/external/bsd/llvm/dist/clang/lib/Frontend/Rewrite/ |
| H A D | RewriteObjC.cpp | 3189 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()
|
| /minix3/external/bsd/llvm/dist/clang/include/clang/Sema/ |
| H A D | Sema.h | 3272 ExprResult ActOnObjCAtSynchronizedOperand(SourceLocation atLoc,
|