Searched defs:RBraceLoc (Results 1 - 9 of 9) sorted by relevance

/external/clang/include/clang/AST/
H A DDecl.h399 /// RBraceLoc - The ending location of the source range.
400 SourceLocation RBraceLoc; member in class:clang::NamespaceDecl
502 return SourceRange(LocStart, RBraceLoc);
506 SourceLocation getRBraceLoc() const { return RBraceLoc; }
508 void setRBraceLoc(SourceLocation L) { RBraceLoc = L; }
2490 SourceLocation RBraceLoc;
2546 SourceLocation getRBraceLoc() const { return RBraceLoc; }
2547 void setRBraceLoc(SourceLocation L) { RBraceLoc = L; }
H A DDeclCXX.h2312 /// RBraceLoc - The source location for the right brace (if valid).
2313 SourceLocation RBraceLoc; member in class:clang::LinkageSpecDecl
2319 Language(lang), ExternLoc(ExternLoc), RBraceLoc(RBLoc) { }
2325 SourceLocation RBraceLoc = SourceLocation());
2335 bool hasBraces() const { return RBraceLoc.isValid(); }
2338 SourceLocation getRBraceLoc() const { return RBraceLoc; }
2340 void setRBraceLoc(SourceLocation L) { RBraceLoc = L; }
H A DExpr.h3511 SourceLocation LBraceLoc, RBraceLoc; member in class:clang::StringLiteral::OffsetOfExpr::InitListExpr
3608 return LBraceLoc.isValid() && RBraceLoc.isValid();
3617 SourceLocation getRBraceLoc() const { return RBraceLoc; }
3618 void setRBraceLoc(SourceLocation Loc) { RBraceLoc = Loc; }
/external/clang/lib/AST/
H A DDeclCXX.cpp1817 SourceLocation RBraceLoc) {
1818 return new (C) LinkageSpecDecl(DC, ExternLoc, LangLoc, Lang, RBraceLoc);
1864 LocStart(StartLoc), RBraceLoc(), AnonOrFirstNamespaceAndInline(0, Inline)
1812 Create(ASTContext &C, DeclContext *DC, SourceLocation ExternLoc, SourceLocation LangLoc, LanguageIDs Lang, SourceLocation RBraceLoc) argument
H A DExpr.cpp1679 LBraceLoc(lbraceloc), RBraceLoc(rbraceloc), SyntacticForm(0)
1741 SourceLocation Beg = LBraceLoc, End = RBraceLoc;
3299 SourceLocation RBraceLoc,
3303 SelLocsK = hasStandardSelectorLocs(Sel, SelLocs, Args, RBraceLoc);
3297 alloc(ASTContext &C, ArrayRef<Expr *> Args, SourceLocation RBraceLoc, ArrayRef<SourceLocation> SelLocs, Selector Sel, SelectorLocationsKind &SelLocsK) argument
/external/clang/lib/Sema/
H A DSemaDecl.cpp9113 SourceLocation RBraceLoc) {
9116 Tag->setRBraceLoc(RBraceLoc);
10783 SourceLocation RBraceLoc, Decl *EnumDeclX,
9112 ActOnTagFinishDefinition(Scope *S, Decl *TagD, SourceLocation RBraceLoc) argument
10782 ActOnEnumBody(SourceLocation EnumLoc, SourceLocation LBraceLoc, SourceLocation RBraceLoc, Decl *EnumDeclX, Decl **Elements, unsigned NumElements, Scope *S, AttributeList *Attr) argument
H A DSemaDeclCXX.cpp9603 /// the C++ linkage specification LinkageSpec. If RBraceLoc is
9608 SourceLocation RBraceLoc) {
9610 if (RBraceLoc.isValid()) {
9612 LSDecl->setRBraceLoc(RBraceLoc);
9606 ActOnFinishLinkageSpecification(Scope *S, Decl *LinkageSpec, SourceLocation RBraceLoc) argument
H A DSemaExpr.cpp4188 SourceLocation RBraceLoc) {
4207 RBraceLoc);
4187 ActOnInitList(SourceLocation LBraceLoc, MultiExprArg InitArgList, SourceLocation RBraceLoc) argument
H A DTreeTransform.h1004 SourceLocation RBraceLoc,
1006 return getSema().ActOnCompoundStmt(LBraceLoc, RBraceLoc, Statements,
1629 SourceLocation RBraceLoc,
1632 = SemaRef.ActOnInitList(LBraceLoc, Inits, RBraceLoc);
1002 RebuildCompoundStmt(SourceLocation LBraceLoc, MultiStmtArg Statements, SourceLocation RBraceLoc, bool IsStmtExpr) argument
1627 RebuildInitList(SourceLocation LBraceLoc, MultiExprArg Inits, SourceLocation RBraceLoc, QualType ResultTy) argument

Completed in 290 milliseconds