Home
last modified time | relevance | path

Searched refs:RBraceLoc (Results 1 – 17 of 17) sorted by relevance

/external/clang/lib/Parse/
DParseDeclCXX.cpp164 SourceLocation RBraceLoc; in ParseNamespace() local
168 InlineLoc, LBrace, attrs, RBraceLoc); in ParseNamespace()
173 Actions.ActOnFinishNamespaceDef(NamespcDecl, RBraceLoc); in ParseNamespace()
175 DeclEnd = RBraceLoc; in ParseNamespace()
186 SourceLocation& RBraceLoc) { in ParseInnerNamespace() argument
194 RBraceLoc = MatchRHSPunctuation(tok::r_brace, LBrace); in ParseInnerNamespace()
207 LBrace, attrs, RBraceLoc); in ParseInnerNamespace()
211 Actions.ActOnFinishNamespaceDef(NamespcDecl, RBraceLoc); in ParseInnerNamespace()
2086 SourceLocation RBraceLoc; in ParseCXXMemberSpecification() local
2127 RBraceLoc = MatchRHSPunctuation(tok::r_brace, LBraceLoc); in ParseCXXMemberSpecification()
[all …]
DParseDecl.cpp2403 SourceLocation RBraceLoc = MatchRHSPunctuation(tok::r_brace, LBraceLoc); in ParseStructUnionBody() local
2411 LBraceLoc, RBraceLoc, in ParseStructUnionBody()
2414 Actions.ActOnTagFinishDefinition(getCurScope(), TagDecl, RBraceLoc); in ParseStructUnionBody()
2741 SourceLocation RBraceLoc = MatchRHSPunctuation(tok::r_brace, LBraceLoc); in ParseEnumBody() local
2747 Actions.ActOnEnumBody(StartLoc, LBraceLoc, RBraceLoc, EnumDecl, in ParseEnumBody()
2752 Actions.ActOnTagFinishDefinition(getCurScope(), EnumDecl, RBraceLoc); in ParseEnumBody()
DParseObjc.cpp1201 SourceLocation RBraceLoc = MatchRHSPunctuation(tok::r_brace, LBraceLoc); in ParseObjCClassInstanceVariables() local
1202 Actions.ActOnLastBitfield(RBraceLoc, interfaceDecl, AllIvarDecls); in ParseObjCClassInstanceVariables()
1207 LBraceLoc, RBraceLoc, 0); in ParseObjCClassInstanceVariables()
DParseStmt.cpp810 SourceLocation RBraceLoc = ConsumeBrace(); in ParseCompoundStatementBody() local
811 return Actions.ActOnCompoundStmt(LBraceLoc, RBraceLoc, move_arg(Stmts), in ParseCompoundStatementBody()
/external/clang/include/clang/AST/
DDeclCXX.h1981 SourceLocation RBraceLoc;
1987 Language(lang), ExternLoc(ExternLoc), RBraceLoc(RBLoc) { }
1993 SourceLocation RBraceLoc = SourceLocation());
2002 bool hasBraces() const { return RBraceLoc.isValid(); }
2005 SourceLocation getRBraceLoc() const { return RBraceLoc; }
2007 void setRBraceLoc(SourceLocation L) { RBraceLoc = L; }
DDecl.h350 SourceLocation RBraceLoc; variable
380 IsInline(false), LocStart(StartLoc), RBraceLoc(), in NamespaceDecl()
460 return SourceRange(LocStart, RBraceLoc); in getSourceRange()
464 SourceLocation getRBraceLoc() const { return RBraceLoc; } in getRBraceLoc()
466 void setRBraceLoc(SourceLocation L) { RBraceLoc = L; } in setRBraceLoc()
2344 SourceLocation RBraceLoc;
2395 SourceLocation getRBraceLoc() const { return RBraceLoc; } in getRBraceLoc()
2396 void setRBraceLoc(SourceLocation L) { RBraceLoc = L; } in setRBraceLoc()
DExpr.h3338 SourceLocation LBraceLoc, RBraceLoc; variable
3436 return LBraceLoc.isValid() && RBraceLoc.isValid(); in isExplicit()
3441 SourceLocation getRBraceLoc() const { return RBraceLoc; } in getRBraceLoc()
3442 void setRBraceLoc(SourceLocation Loc) { RBraceLoc = Loc; } in setRBraceLoc()
/external/clang/lib/AST/
DDeclCXX.cpp1583 SourceLocation RBraceLoc) { in Create() argument
1584 return new (C) LinkageSpecDecl(DC, ExternLoc, LangLoc, Lang, RBraceLoc); in Create()
DDecl.cpp2216 SourceLocation E = RBraceLoc.isValid() ? RBraceLoc : getLocation(); in getSourceRange()
DExpr.cpp1311 LBraceLoc(lbraceloc), RBraceLoc(rbraceloc), SyntacticForm(0), in InitListExpr()
1361 SourceLocation Beg = LBraceLoc, End = RBraceLoc; in getSourceRange()
/external/clang/include/clang/Parse/
DParser.h1762 SourceLocation& RBraceLoc);
/external/clang/include/clang/Sema/
DSema.h1176 SourceLocation RBraceLoc);
1193 SourceLocation RBraceLoc, Decl *EnumDecl,
3266 SourceLocation RBraceLoc);
/external/clang/lib/Sema/
DTreeTransform.h961 SourceLocation RBraceLoc, in RebuildCompoundStmt() argument
963 return getSema().ActOnCompoundStmt(LBraceLoc, RBraceLoc, Statements, in RebuildCompoundStmt()
1551 SourceLocation RBraceLoc, in RebuildInitList() argument
1554 = SemaRef.ActOnInitList(LBraceLoc, move(Inits), RBraceLoc); in RebuildInitList()
DSemaDeclCXX.cpp7971 SourceLocation RBraceLoc) { in ActOnFinishLinkageSpecification() argument
7973 if (RBraceLoc.isValid()) { in ActOnFinishLinkageSpecification()
7975 LSDecl->setRBraceLoc(RBraceLoc); in ActOnFinishLinkageSpecification()
DSemaDecl.cpp7569 SourceLocation RBraceLoc) { in ActOnTagFinishDefinition() argument
7572 Tag->setRBraceLoc(RBraceLoc); in ActOnTagFinishDefinition()
8872 SourceLocation RBraceLoc, Decl *EnumDeclX, in ActOnEnumBody() argument
DSemaExpr.cpp3733 SourceLocation RBraceLoc) { in ActOnInitList() argument
3741 NumInit, RBraceLoc); in ActOnInitList()
/external/clang/lib/Serialization/
DASTReaderDecl.cpp799 D->RBraceLoc = ReadSourceLocation(Record, Idx); in VisitNamespaceDecl()