Searched refs:atLoc (Results 1 - 12 of 12) sorted by relevance

/netbsd-current/external/apache2/llvm/dist/clang/lib/ARCMigrate/
H A DTransProperties.cpp132 SourceLocation atLoc = I->first; local
140 rewriteProperty(props, atLoc);
146 PropsTy &props, SourceLocation atLoc,
157 MigrateCtx.rewritePropertyAttribute("retain", toAttr, atLoc);
161 return removeAssignForDefaultStrong(props, atLoc);
163 return rewriteAssign(props, atLoc);
165 return maybeAddWeakOrUnsafeUnretainedAttr(props, atLoc);
169 void rewriteProperty(PropsTy &props, SourceLocation atLoc) { argument
180 return doPropAction(PropAction_RetainReplacedWithStrong, props, atLoc);
187 return doPropAction(PropAction_AssignRemoved, props, atLoc);
145 doPropAction(PropActionKind kind, PropsTy &props, SourceLocation atLoc, bool markAction = true) argument
[all...]
H A DTransforms.h115 bool removePropertyAttribute(StringRef fromAttr, SourceLocation atLoc) { argument
116 return rewritePropertyAttribute(fromAttr, StringRef(), atLoc);
119 SourceLocation atLoc);
120 bool addPropertyAttribute(StringRef attr, SourceLocation atLoc);
H A DTransforms.cpp382 SourceLocation atLoc) {
383 if (atLoc.isMacroID())
389 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(atLoc);
463 SourceLocation atLoc) {
464 if (atLoc.isMacroID())
470 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(atLoc);
380 rewritePropertyAttribute(StringRef fromAttr, StringRef toAttr, SourceLocation atLoc) argument
462 addPropertyAttribute(StringRef attr, SourceLocation atLoc) argument
/netbsd-current/external/apache2/llvm/dist/clang/lib/Parse/
H A DParseObjc.cpp131 Parser::ParseObjCAtClassDeclaration(SourceLocation atLoc) { argument
160 return Actions.ActOnForwardClassDeclaration(atLoc, ClassNames.data(),
1867 void Parser::HelperActionsForIvarDeclarations(Decl *interfaceDecl, SourceLocation atLoc, argument
1879 Actions.ActOnFields(getCurScope(), atLoc, interfaceDecl, AllIvarDecls, local
1907 SourceLocation atLoc) {
1949 HelperActionsForIvarDeclarations(interfaceDecl, atLoc,
2000 HelperActionsForIvarDeclarations(interfaceDecl, atLoc,
2285 Decl *Parser::ParseObjCAtAliasDeclaration(SourceLocation atLoc) { argument
2298 return Actions.ActOnCompatibilityAlias(atLoc, aliasId, aliasLoc,
2313 Decl *Parser::ParseObjCPropertySynthesize(SourceLocation atLoc) { argument
1905 ParseObjCClassInstanceVariables(Decl *interfaceDecl, tok::ObjCKeywordKind visibility, SourceLocation atLoc) argument
2349 getCurScope(), atLoc, propertyLoc, true, local
2367 ParseObjCPropertyDynamic(SourceLocation atLoc) argument
2411 getCurScope(), atLoc, propertyLoc, false, local
2427 ParseObjCThrowStmt(SourceLocation atLoc) argument
2446 ParseObjCSynchronizedStmt(SourceLocation atLoc) argument
2505 ParseObjCTryStmt(SourceLocation atLoc) argument
2625 ParseObjCAutoreleasePoolStmt(SourceLocation atLoc) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Parse/
H A DParser.h1602 DeclGroupPtrTy ParseObjCAtClassDeclaration(SourceLocation atLoc);
1612 void HelperActionsForIvarDeclarations(Decl *interfaceDecl, SourceLocation atLoc,
1618 SourceLocation atLoc);
1668 DeclGroupPtrTy ParseObjCAtProtocolDeclaration(SourceLocation atLoc,
1697 Decl *ParseObjCAtAliasDeclaration(SourceLocation atLoc);
1698 Decl *ParseObjCPropertySynthesize(SourceLocation atLoc);
1699 Decl *ParseObjCPropertyDynamic(SourceLocation atLoc);
2157 StmtResult ParseObjCAtStatement(SourceLocation atLoc,
2159 StmtResult ParseObjCTryStmt(SourceLocation atLoc);
2160 StmtResult ParseObjCThrowStmt(SourceLocation atLoc);
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/AST/
H A DStmtObjC.h373 ObjCAutoreleasePoolStmt(SourceLocation atLoc, Stmt *subStmt) argument
374 : Stmt(ObjCAutoreleasePoolStmtClass), AtLoc(atLoc), SubStmt(subStmt) {}
H A DDeclObjC.h1262 SourceLocation atLoc,
2778 ObjCPropertyImplDecl(DeclContext *DC, SourceLocation atLoc, SourceLocation L, argument
2783 : Decl(ObjCPropertyImpl, DC, L), AtLoc(atLoc),
2792 SourceLocation atLoc, SourceLocation L,
/netbsd-current/external/apache2/llvm/dist/clang/lib/AST/
H A DDeclObjC.cpp1493 SourceLocation atLoc,
1500 ObjCInterfaceDecl(C, DC, atLoc, Id, typeParamList, ClassLoc, PrevDecl,
2310 SourceLocation atLoc,
2316 return new (C, DC) ObjCPropertyImplDecl(DC, atLoc, L, property, PK, ivar,
1491 Create(const ASTContext &C, DeclContext *DC, SourceLocation atLoc, IdentifierInfo *Id, ObjCTypeParamList *typeParamList, ObjCInterfaceDecl *PrevDecl, SourceLocation ClassLoc, bool isInternal) argument
2308 Create(ASTContext &C, DeclContext *DC, SourceLocation atLoc, SourceLocation L, ObjCPropertyDecl *property, Kind PK, ObjCIvarDecl *ivar, SourceLocation ivarLoc) argument
/netbsd-current/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaStmt.cpp4262 Sema::ActOnObjCAtSynchronizedOperand(SourceLocation atLoc, Expr *operand) { argument
4275 if (RequireCompleteType(atLoc, type,
4277 return Diag(atLoc, diag::err_objc_synchronized_expects_object)
4284 return Diag(atLoc, diag::err_objc_synchronized_expects_object)
4289 return Diag(atLoc, diag::err_objc_synchronized_expects_object)
H A DTreeTransform.h2249 ExprResult RebuildObjCAtSynchronizedOperand(SourceLocation atLoc, argument
2251 return getSema().ActOnObjCAtSynchronizedOperand(atLoc, object);
/netbsd-current/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp3183 SourceLocation atLoc = LocStart.getLocWithOffset(cursor-startBuf); local
3194 InsertText(atLoc, "// ");
3200 SourceLocation atLoc = LocStart.getLocWithOffset(cursor-startBuf); local
3201 InsertText(atLoc, "/* ");
3204 atLoc = LocStart.getLocWithOffset(cursor-startBuf);
3205 InsertText(atLoc, " */");
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DSema.h4819 ExprResult ActOnObjCAtSynchronizedOperand(SourceLocation atLoc,

Completed in 511 milliseconds