Searched refs:getRParenLoc (Results 1 - 25 of 29) sorted by relevance

12

/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/AST/
H A DTypeLoc.h946 SourceLocation getRParenLoc() const {
957 return SourceRange(getLParenLoc(), getRParenLoc());
1196 SourceLocation getRParenLoc() const {
1204 return SourceRange(getLParenLoc(), getRParenLoc());
1516 SourceLocation getRParenLoc() const {
1524 return SourceRange(getLParenLoc(), getRParenLoc());
1532 return SourceRange(getTypeofLoc(), getRParenLoc());
1595 SourceLocation getRParenLoc() const { return getLocalData()->RParenLoc; }
1606 return SourceRange(getKWLoc(), getRParenLoc());
1610 return SourceRange(getLParenLoc(), getRParenLoc());
[all...]
H A DStmtObjC.h55 SourceLocation getRParenLoc() const { return RParenLoc; } function in class:clang::ObjCForCollectionStmt
104 SourceLocation getRParenLoc() const { return RParenLoc; } function in class:clang::ObjCAtCatchStmt
H A DStmtCXX.h189 SourceLocation getRParenLoc() const { return RParenLoc; } function in class:clang::CXXForRangeStmt
H A DExpr.h1882 SourceLocation getRParenLoc() const { return RParenLoc; } function in class:clang::StringLiteral::OffsetOfExpr
2025 SourceLocation getRParenLoc() const { return RParenLoc; } function
2254 SourceLocation getRParenLoc() const { return RParenLoc; }
2857 SourceLocation getRParenLoc() const { return RPLoc; } function in class:clang::StringLiteral::OffsetOfExpr::CStyleCastExpr
3391 SourceLocation getRParenLoc() const { return RParenLoc; } function in class:clang::StringLiteral::OffsetOfExpr::StmtExpr
3430 SourceLocation getRParenLoc() const { return RParenLoc; } function in class:clang::StringLiteral::OffsetOfExpr::ShuffleVectorExpr
3511 /// getRParenLoc - Return the location of final right parenthesis.
3512 SourceLocation getRParenLoc() const { return RParenLoc; } function in class:clang::StringLiteral::OffsetOfExpr::ConvertVectorExpr
3589 SourceLocation getRParenLoc() const { return RParenLoc; } function in class:clang::StringLiteral::OffsetOfExpr::ChooseExpr
3670 SourceLocation getRParenLoc() cons function in class:clang::StringLiteral::OffsetOfExpr::VAArgExpr
[all...]
H A DExprObjC.h365 SourceLocation getRParenLoc() const { return RParenLoc; } function in class:clang::ObjCEncodeExpr
403 SourceLocation getRParenLoc() const { return RParenLoc; } function in class:clang::ObjCSelectorExpr
446 SourceLocation getRParenLoc() const { return RParenLoc; } function in class:clang::ObjCProtocolExpr
H A DExprCXX.h87 SourceLocation getOperatorLoc() const { return getRParenLoc(); }
208 SourceLocation getRParenLoc() const { return RParenLoc; } function in class:clang::CXXNamedCastExpr
402 return getRParenLoc();
405 SourceLocation getLocEnd() const { return getRParenLoc(); }
1236 SourceLocation getRParenLoc() const { return RParenLoc; }
1651 SourceLocation getRParenLoc() const { return RParenLoc; } function in class:clang::CXXScalarValueInitExpr
3057 SourceLocation getRParenLoc() const { return RParenLoc; }
3690 SourceLocation getRParenLoc() const { return RParenLoc; }
H A DDeclCXX.h2026 SourceLocation getRParenLoc() const { return RParenLoc; } function in class:clang::CXXCtorInitializer
3044 SourceLocation getRParenLoc() const { return RParenLoc; } function in class:clang::StaticAssertDecl
3047 return SourceRange(getLocation(), getRParenLoc());
H A DStmt.h1092 SourceLocation getRParenLoc() const { return RParenLoc; } function in class:clang::DoStmt
1164 SourceLocation getRParenLoc() const { return RParenLoc; } function in class:clang::ForStmt
1522 SourceLocation getRParenLoc() const { return RParenLoc; } function in class:clang::GCCAsmStmt
H A DDecl.h3156 SourceLocation getRParenLoc() const { return RParenLoc; }
3159 return SourceRange(getAsmLoc(), getRParenLoc());
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Serialization/
H A DASTWriterStmt.cpp160 Writer.AddSourceLocation(S->getRParenLoc(), Record);
173 Writer.AddSourceLocation(S->getRParenLoc(), Record);
235 Writer.AddSourceLocation(S->getRParenLoc(), Record);
466 Writer.AddSourceLocation(E->getRParenLoc(), Record);
506 Writer.AddSourceLocation(E->getRParenLoc(), Record);
521 Writer.AddSourceLocation(E->getRParenLoc(), Record);
654 Writer.AddSourceLocation(E->getRParenLoc(), Record);
750 Writer.AddSourceLocation(E->getRParenLoc(), Record);
766 Writer.AddSourceLocation(E->getRParenLoc(), Record);
776 Writer.AddSourceLocation(E->getRParenLoc(), Recor
[all...]
H A DASTWriter.cpp504 Writer.AddSourceLocation(TL.getRParenLoc(), Record);
524 Writer.AddSourceLocation(TL.getRParenLoc(), Record);
529 Writer.AddSourceLocation(TL.getRParenLoc(), Record);
538 Writer.AddSourceLocation(TL.getRParenLoc(), Record);
588 Writer.AddSourceLocation(TL.getRParenLoc(), Record);
633 Writer.AddSourceLocation(TL.getRParenLoc(), Record);
5058 AddSourceLocation(Init->getRParenLoc(), Record);
H A DASTWriterDecl.cpp814 Writer.AddSourceLocation(D->getRParenLoc(), Record);
1384 Writer.AddSourceLocation(D->getRParenLoc(), Record);
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/AST/
H A DTypeLoc.cpp239 if (getRParenLoc().isValid())
240 return SourceRange(getTypeofLoc(), getRParenLoc());
H A DExprCXX.cpp526 return SourceRange(getArg(0)->getLocStart(), getRParenLoc());
528 return SourceRange(getArg(0)->getLocStart(), getRParenLoc());
H A DASTImporter.cpp4463 Importer.Import(E->getRParenLoc()));
4473 Importer.Import(E->getRParenLoc()));
4571 Importer.Import(E->getRParenLoc()));
H A DDeclCXX.cpp1673 return SourceRange(getSourceLocation(), getRParenLoc());
H A DExpr.cpp1275 SourceLocation end = getRParenLoc();
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DTreeTransform.h4446 NewTL.setRParenLoc(TL.getRParenLoc());
4471 NewTL.setRParenLoc(TL.getRParenLoc());
4551 NewTL.setRParenLoc(TL.getRParenLoc());
4574 NewTL.setRParenLoc(TL.getRParenLoc());
4800 NewTL.setRParenLoc(TL.getRParenLoc());
5091 NewTL.setRParenLoc(TL.getRParenLoc());
5573 S->getRParenLoc());
5639 FullInc, S->getRParenLoc(), Body.get());
5781 Clobbers, S->getRParenLoc());
5888 S->getRParenLoc(),
[all...]
H A DSemaChecking.cpp802 IsMemberFunction, TheCall->getRParenLoc(),
862 TheCall->getRParenLoc(),
879 TheCall->getRParenLoc(),
1176 TheCall->getRParenLoc());
1828 TheCall->getRParenLoc()));
3272 SourceRange CastRange(CCast->getLParenLoc(), CCast->getRParenLoc());
6947 StmtLoc = FS->getRParenLoc();
H A DSemaPseudoObject.cpp99 gse->getRParenLoc(),
117 ce->getRParenLoc(),
H A DSemaExprObjC.cpp3388 castRange = SourceRange(cast->getLParenLoc(), cast->getRParenLoc());
3442 gse->getRParenLoc(),
H A DSemaStmt.cpp2293 DiagnoseEmptyStmtBody(ForStmt->getRParenLoc(), B,
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DDeclSpec.h1269 SourceLocation getRParenLoc() const { function in struct:clang::DeclaratorChunk::FunctionTypeInfo
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Rewrite/Frontend/
H A DRewriteObjC.cpp1565 SourceLocation rightParenLoc = S->getRParenLoc();
1877 assert(*SM->getCharacterData(Catch->getRParenLoc()) == ')' &&
1901 SourceLocation rParenLoc = Catch->getRParenLoc();
2122 EndLoc = ECE->getRParenLoc();
3981 SourceLocation LocEnd = CE->getRParenLoc();
H A DRewriteModernObjC.cpp1802 SourceLocation rightParenLoc = S->getRParenLoc();
2029 SourceLocation rParenLoc = Catch->getRParenLoc();
2232 EndLoc = ECE->getRParenLoc();
4926 SourceLocation LocEnd = CE->getRParenLoc();

Completed in 531 milliseconds

12