Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseObjc.cpp134 Parser::ParseObjCAtClassDeclaration(SourceLocation atLoc) { in ParseObjCAtClassDeclaration() argument
169 atLoc, ClassNames.data(), ClassLocs.data(), ClassTypeParams, in ParseObjCAtClassDeclaration()
1682 ObjCContainerDecl *interfaceDecl, SourceLocation atLoc, in HelperActionsForIvarDeclarations() argument
1693 Actions.ActOnFields(getCurScope(), atLoc, interfaceDecl, AllIvarDecls, in HelperActionsForIvarDeclarations()
1700 SourceLocation atLoc) { in ParseObjCClassInstanceVariables() argument
1741 HelperActionsForIvarDeclarations(interfaceDecl, atLoc, in ParseObjCClassInstanceVariables()
1793 HelperActionsForIvarDeclarations(interfaceDecl, atLoc, in ParseObjCClassInstanceVariables()
2067 Decl *Parser::ParseObjCAtAliasDeclaration(SourceLocation atLoc) { in ParseObjCAtAliasDeclaration() argument
2080 return Actions.ObjC().ActOnCompatibilityAlias(atLoc, aliasId, aliasLoc, in ParseObjCAtAliasDeclaration()
2084 Decl *Parser::ParseObjCPropertySynthesize(SourceLocation atLoc) { in ParseObjCPropertySynthesize() argument
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmtObjC.h399 ObjCAutoreleasePoolStmt(SourceLocation atLoc, Stmt *subStmt) in ObjCAutoreleasePoolStmt() argument
400 : Stmt(ObjCAutoreleasePoolStmtClass), AtLoc(atLoc), SubStmt(subStmt) {} in ObjCAutoreleasePoolStmt()
H A DDeclObjC.h1276 Create(const ASTContext &C, DeclContext *DC, SourceLocation atLoc,
2839 ObjCPropertyImplDecl(DeclContext *DC, SourceLocation atLoc, SourceLocation L, in ObjCPropertyImplDecl() argument
2844 : Decl(ObjCPropertyImpl, DC, L), AtLoc(atLoc), in ObjCPropertyImplDecl()
2853 SourceLocation atLoc, SourceLocation L,
/freebsd/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h5421 DeclGroupPtrTy ParseObjCAtClassDeclaration(SourceLocation atLoc);
5495 SourceLocation atLoc,
5525 SourceLocation atLoc);
5608 DeclGroupPtrTy ParseObjCAtProtocolDeclaration(SourceLocation atLoc,
5658 Decl *ParseObjCAtAliasDeclaration(SourceLocation atLoc);
5673 Decl *ParseObjCPropertySynthesize(SourceLocation atLoc);
5684 Decl *ParseObjCPropertyDynamic(SourceLocation atLoc);
5956 StmtResult ParseObjCAtStatement(SourceLocation atLoc,
5972 StmtResult ParseObjCTryStmt(SourceLocation atLoc);
5979 StmtResult ParseObjCThrowStmt(SourceLocation atLoc);
[all …]
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaObjC.cpp282 ExprResult SemaObjC::ActOnObjCAtSynchronizedOperand(SourceLocation atLoc, in ActOnObjCAtSynchronizedOperand() argument
295 if (SemaRef.RequireCompleteType(atLoc, type, in ActOnObjCAtSynchronizedOperand()
297 return Diag(atLoc, diag::err_objc_synchronized_expects_object) in ActOnObjCAtSynchronizedOperand()
305 return Diag(atLoc, diag::err_objc_synchronized_expects_object) in ActOnObjCAtSynchronizedOperand()
310 return Diag(atLoc, diag::err_objc_synchronized_expects_object) in ActOnObjCAtSynchronizedOperand()
H A DTreeTransform.h2526 ExprResult RebuildObjCAtSynchronizedOperand(SourceLocation atLoc, in RebuildObjCAtSynchronizedOperand() argument
2528 return getSema().ObjC().ActOnObjCAtSynchronizedOperand(atLoc, object); in RebuildObjCAtSynchronizedOperand()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclObjC.cpp1540 const ASTContext &C, DeclContext *DC, SourceLocation atLoc, in Create() argument
1544 ObjCInterfaceDecl(C, DC, atLoc, Id, typeParamList, ClassLoc, PrevDecl, in Create()
2383 SourceLocation atLoc, in Create() argument
2389 return new (C, DC) ObjCPropertyImplDecl(DC, atLoc, L, property, PK, ivar, in Create()
/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp3169 SourceLocation atLoc = LocStart.getLocWithOffset(cursor-startBuf); in RewriteObjCInternalStruct() local
3180 InsertText(atLoc, "// "); in RewriteObjCInternalStruct()
3186 SourceLocation atLoc = LocStart.getLocWithOffset(cursor-startBuf); in RewriteObjCInternalStruct() local
3187 InsertText(atLoc, "/* "); in RewriteObjCInternalStruct()
3190 atLoc = LocStart.getLocWithOffset(cursor-startBuf); in RewriteObjCInternalStruct()
3191 InsertText(atLoc, " */"); in RewriteObjCInternalStruct()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaObjC.h76 ExprResult ActOnObjCAtSynchronizedOperand(SourceLocation atLoc,