Searched refs:RBraceLoc (Results 1 - 13 of 13) sorted by relevance

/external/clang/include/clang/AST/
H A DDeclCXX.h2365 /// RBraceLoc - The source location for the right brace (if valid).
2366 SourceLocation RBraceLoc; member in class:clang::LinkageSpecDecl
2372 Language(lang), ExternLoc(ExternLoc), RBraceLoc(RBLoc) { }
2378 SourceLocation RBraceLoc = SourceLocation());
2388 bool hasBraces() const { return RBraceLoc.isValid(); }
2391 SourceLocation getRBraceLoc() const { return RBraceLoc; }
2393 void setRBraceLoc(SourceLocation L) { RBraceLoc = L; }
H A DDecl.h317 /// RBraceLoc - The ending location of the source range.
318 SourceLocation RBraceLoc; member in class:clang::NamespaceDecl
420 return SourceRange(LocStart, RBraceLoc);
424 SourceLocation getRBraceLoc() const { return RBraceLoc; }
426 void setRBraceLoc(SourceLocation L) { RBraceLoc = L; }
2425 SourceLocation RBraceLoc;
2481 SourceLocation getRBraceLoc() const { return RBraceLoc; }
2482 void setRBraceLoc(SourceLocation L) { RBraceLoc = L; }
H A DExpr.h3624 SourceLocation LBraceLoc, RBraceLoc; member in class:clang::StringLiteral::OffsetOfExpr::InitListExpr
3724 return LBraceLoc.isValid() && RBraceLoc.isValid();
3733 SourceLocation getRBraceLoc() const { return RBraceLoc; }
3734 void setRBraceLoc(SourceLocation Loc) { RBraceLoc = Loc; }
H A DExprObjC.h995 SourceLocation RBraceLoc,
/external/clang/lib/AST/
H A DDeclCXX.cpp1787 SourceLocation RBraceLoc) {
1788 return new (C) LinkageSpecDecl(DC, ExternLoc, LangLoc, Lang, RBraceLoc);
1834 LocStart(StartLoc), RBraceLoc(), AnonOrFirstNamespaceAndInline(0, Inline)
1782 Create(ASTContext &C, DeclContext *DC, SourceLocation ExternLoc, SourceLocation LangLoc, LanguageIDs Lang, SourceLocation RBraceLoc) argument
H A DExpr.cpp1773 LBraceLoc(lbraceloc), RBraceLoc(rbraceloc), AltForm(0, true)
1853 SourceLocation End = RBraceLoc;
3425 SourceLocation RBraceLoc,
3429 SelLocsK = hasStandardSelectorLocs(Sel, SelLocs, Args, RBraceLoc);
3423 alloc(ASTContext &C, ArrayRef<Expr *> Args, SourceLocation RBraceLoc, ArrayRef<SourceLocation> SelLocs, Selector Sel, SelectorLocationsKind &SelLocsK) argument
H A DDecl.cpp2845 SourceLocation E = RBraceLoc.isValid() ? RBraceLoc : getLocation();
/external/clang/include/clang/Sema/
H A DSema.h1620 SourceLocation RBraceLoc);
1649 SourceLocation RBraceLoc, Decl *EnumDecl,
3247 SourceLocation RBraceLoc);
4372 SourceLocation RBraceLoc);
/external/clang/lib/Sema/
H A DTreeTransform.h1013 SourceLocation RBraceLoc,
1015 return getSema().ActOnCompoundStmt(LBraceLoc, RBraceLoc, Statements,
1639 SourceLocation RBraceLoc,
1642 = SemaRef.ActOnInitList(LBraceLoc, Inits, RBraceLoc);
1011 RebuildCompoundStmt(SourceLocation LBraceLoc, MultiStmtArg Statements, SourceLocation RBraceLoc, bool IsStmtExpr) argument
1637 RebuildInitList(SourceLocation LBraceLoc, MultiExprArg Inits, SourceLocation RBraceLoc, QualType ResultTy) argument
H A DSemaDecl.cpp10082 SourceLocation RBraceLoc) {
10085 Tag->setRBraceLoc(RBraceLoc);
11527 SourceLocation RBraceLoc, Decl *EnumDeclX,
10081 ActOnTagFinishDefinition(Scope *S, Decl *TagD, SourceLocation RBraceLoc) argument
11526 ActOnEnumBody(SourceLocation EnumLoc, SourceLocation LBraceLoc, SourceLocation RBraceLoc, Decl *EnumDeclX, Decl **Elements, unsigned NumElements, Scope *S, AttributeList *Attr) argument
H A DSemaDeclCXX.cpp10186 /// the C++ linkage specification LinkageSpec. If RBraceLoc is
10191 SourceLocation RBraceLoc) {
10193 if (RBraceLoc.isValid()) {
10195 LSDecl->setRBraceLoc(RBraceLoc);
10189 ActOnFinishLinkageSpecification(Scope *S, Decl *LinkageSpec, SourceLocation RBraceLoc) argument
H A DSemaExpr.cpp4322 SourceLocation RBraceLoc) {
4341 RBraceLoc);
4321 ActOnInitList(SourceLocation LBraceLoc, MultiExprArg InitArgList, SourceLocation RBraceLoc) argument
/external/clang/lib/Serialization/
H A DASTReaderDecl.cpp1009 D->RBraceLoc = ReadSourceLocation(Record, Idx);

Completed in 668 milliseconds