/external/clang/include/clang/AST/ |
D | TypeLoc.h | 946 SourceLocation getRParenLoc() const { in getRParenLoc() function 957 return SourceRange(getLParenLoc(), getRParenLoc()); in getLocalSourceRange() 1199 SourceLocation getRParenLoc() const { in getRParenLoc() function 1207 return SourceRange(getLParenLoc(), getRParenLoc()); in getParensRange() 1519 SourceLocation getRParenLoc() const { in getRParenLoc() function 1527 return SourceRange(getLParenLoc(), getRParenLoc()); in getParensRange() 1535 return SourceRange(getTypeofLoc(), getRParenLoc()); in getLocalSourceRange() 1600 SourceLocation getRParenLoc() const { return getLocalData()->RParenLoc; } in getRParenLoc() function 1611 return SourceRange(getKWLoc(), getRParenLoc()); in getLocalSourceRange() 1615 return SourceRange(getLParenLoc(), getRParenLoc()); in getParensRange() [all …]
|
D | StmtObjC.h | 55 SourceLocation getRParenLoc() const { return RParenLoc; } in getRParenLoc() function 104 SourceLocation getRParenLoc() const { return RParenLoc; } in getRParenLoc() function
|
D | Expr.h | 1913 SourceLocation getRParenLoc() const { return RParenLoc; } in getRParenLoc() function 2045 SourceLocation getRParenLoc() const { return RParenLoc; } in getRParenLoc() function 2281 SourceLocation getRParenLoc() const { return RParenLoc; } in getRParenLoc() function 2885 SourceLocation getRParenLoc() const { return RPLoc; } in getRParenLoc() function 3419 SourceLocation getRParenLoc() const { return RParenLoc; } in getRParenLoc() function 3458 SourceLocation getRParenLoc() const { return RParenLoc; } in getRParenLoc() function 3540 SourceLocation getRParenLoc() const { return RParenLoc; } in getRParenLoc() function 3617 SourceLocation getRParenLoc() const { return RParenLoc; } in getRParenLoc() function 3698 SourceLocation getRParenLoc() const { return RParenLoc; } in getRParenLoc() function 4325 SourceLocation getRParenLoc() const { return RParenLoc; } in getRParenLoc() function [all …]
|
D | ExprCXX.h | 87 SourceLocation getOperatorLoc() const { return getRParenLoc(); } in getOperatorLoc() 215 SourceLocation getRParenLoc() const { return RParenLoc; } in getRParenLoc() function 409 return getRParenLoc(); in getLocStart() 412 SourceLocation getLocEnd() const { return getRParenLoc(); } in getLocEnd() 1269 SourceLocation getRParenLoc() const { return RParenLoc; } in getRParenLoc() function 1605 SourceLocation getRParenLoc() const { return RParenLoc; } in getRParenLoc() function 2893 SourceLocation getRParenLoc() const { return RParenLoc; } in getRParenLoc() function 3527 SourceLocation getRParenLoc() const { return RParenLoc; } in getRParenLoc() function
|
D | StmtCXX.h | 189 SourceLocation getRParenLoc() const { return RParenLoc; } in getRParenLoc() function
|
D | ExprObjC.h | 374 SourceLocation getRParenLoc() const { return RParenLoc; } 412 SourceLocation getRParenLoc() const { return RParenLoc; } 455 SourceLocation getRParenLoc() const { return RParenLoc; }
|
D | DeclCXX.h | 2101 SourceLocation getRParenLoc() const { return RParenLoc; } in getRParenLoc() function 3183 SourceLocation getRParenLoc() const { return RParenLoc; } in getRParenLoc() function 3186 return SourceRange(getLocation(), getRParenLoc()); in getSourceRange()
|
D | Stmt.h | 1118 SourceLocation getRParenLoc() const { return RParenLoc; } in getRParenLoc() function 1190 SourceLocation getRParenLoc() const { return RParenLoc; } in getRParenLoc() function 1567 SourceLocation getRParenLoc() const { return RParenLoc; } in getRParenLoc() function
|
D | Decl.h | 3359 SourceLocation getRParenLoc() const { return RParenLoc; } in getRParenLoc() function 3362 return SourceRange(getAsmLoc(), getRParenLoc()); in getSourceRange()
|
/external/clang/lib/Serialization/ |
D | ASTWriterStmt.cpp | 159 Writer.AddSourceLocation(S->getRParenLoc(), Record); in VisitDoStmt() 172 Writer.AddSourceLocation(S->getRParenLoc(), Record); in VisitForStmt() 234 Writer.AddSourceLocation(S->getRParenLoc(), Record); in VisitGCCAsmStmt() 462 Writer.AddSourceLocation(E->getRParenLoc(), Record); in VisitOffsetOfExpr() 502 Writer.AddSourceLocation(E->getRParenLoc(), Record); in VisitUnaryExprOrTypeTraitExpr() 517 Writer.AddSourceLocation(E->getRParenLoc(), Record); in VisitCallExpr() 655 Writer.AddSourceLocation(E->getRParenLoc(), Record); in VisitCStyleCastExpr() 751 Writer.AddSourceLocation(E->getRParenLoc(), Record); in VisitVAArgExpr() 767 Writer.AddSourceLocation(E->getRParenLoc(), Record); in VisitStmtExpr() 777 Writer.AddSourceLocation(E->getRParenLoc(), Record); in VisitChooseExpr() [all …]
|
D | ASTWriter.cpp | 533 Writer.AddSourceLocation(TL.getRParenLoc(), Record); in VisitFunctionTypeLoc() 553 Writer.AddSourceLocation(TL.getRParenLoc(), Record); in VisitTypeOfExprTypeLoc() 558 Writer.AddSourceLocation(TL.getRParenLoc(), Record); in VisitTypeOfTypeLoc() 567 Writer.AddSourceLocation(TL.getRParenLoc(), Record); in VisitUnaryTransformTypeLoc() 617 Writer.AddSourceLocation(TL.getRParenLoc(), Record); in VisitParenTypeLoc() 662 Writer.AddSourceLocation(TL.getRParenLoc(), Record); in VisitAtomicTypeLoc() 5603 AddSourceLocation(Init->getRParenLoc(), Record); in AddCXXCtorInitializers()
|
D | ASTWriterDecl.cpp | 904 Writer.AddSourceLocation(D->getRParenLoc(), Record); in VisitFileScopeAsmDecl() 1455 Writer.AddSourceLocation(D->getRParenLoc(), Record); in VisitStaticAssertDecl()
|
/external/clang/lib/AST/ |
D | TypeLoc.cpp | 239 if (getRParenLoc().isValid()) in getLocalSourceRange() 240 return SourceRange(getTypeofLoc(), getRParenLoc()); in getLocalSourceRange()
|
D | ExprCXX.cpp | 518 return SourceRange(getArg(0)->getLocStart(), getRParenLoc()); in getSourceRangeImpl() 520 return SourceRange(getArg(0)->getLocStart(), getRParenLoc()); in getSourceRangeImpl()
|
D | ASTImporter.cpp | 4499 Importer.Import(E->getRParenLoc())); in VisitUnaryExprOrTypeTraitExpr() 4509 Importer.Import(E->getRParenLoc())); in VisitUnaryExprOrTypeTraitExpr() 4607 Importer.Import(E->getRParenLoc())); in VisitCStyleCastExpr()
|
D | DeclCXX.cpp | 1715 return SourceRange(getSourceLocation(), getRParenLoc()); in getSourceRange()
|
/external/clang/lib/Sema/ |
D | TreeTransform.h | 4684 NewTL.setRParenLoc(TL.getRParenLoc()); in TransformFunctionProtoType() 4809 NewTL.setRParenLoc(TL.getRParenLoc()); in TransformFunctionNoProtoType() 4889 NewTL.setRParenLoc(TL.getRParenLoc()); in TransformTypeOfExprType() 4912 NewTL.setRParenLoc(TL.getRParenLoc()); in TransformTypeOfType() 5138 NewTL.setRParenLoc(TL.getRParenLoc()); in TransformAtomicType() 5429 NewTL.setRParenLoc(TL.getRParenLoc()); in TransformParenType() 5935 S->getRParenLoc()); in TransformDoStmt() 6002 FullInc, S->getRParenLoc(), Body.get()); in TransformForStmt() 6143 Clobbers, S->getRParenLoc()); in TransformGCCAsmStmt() 6250 S->getRParenLoc(), in TransformObjCAtCatchStmt() [all …]
|
D | SemaChecking.cpp | 1250 IsMemberFunction, TheCall->getRParenLoc(), in CheckFunctionCall() 1312 NumParams, /*IsMemberFunction=*/false, TheCall->getRParenLoc(), in CheckPointerCall() 1327 NumParams, /*IsMemberFunction=*/false, TheCall->getRParenLoc(), in CheckOtherCall() 1666 TheCall->getRParenLoc()); in SemaAtomicOpsOverloaded() 2398 TheCall->getRParenLoc()); in SemaBuiltinShuffleVector() 3901 SourceRange CastRange(CCast->getLParenLoc(), CCast->getRParenLoc()); in checkFormatExpr() 4763 Call->getLocStart(), Call->getRParenLoc())) in CheckMemaccessArguments() 4960 Call->getLocStart(), Call->getRParenLoc())) in CheckStrlcpycatArguments() 5045 CE->getRParenLoc())) in CheckStrncatArguments() 8779 StmtLoc = FS->getRParenLoc(); in DiagnoseEmptyLoopBody()
|
D | SemaPseudoObject.cpp | 100 gse->getRParenLoc(), in rebuild() 118 ce->getRParenLoc(), in rebuild()
|
D | SemaExprObjC.cpp | 3833 castRange = SourceRange(cast->getLParenLoc(), cast->getRParenLoc()); in diagnoseARCUnbridgedCast() 3887 gse->getRParenLoc(), in stripARCUnbridgedCast()
|
D | SemaStmt.cpp | 2531 DiagnoseEmptyStmtBody(ForStmt->getRParenLoc(), B, in FinishCXXForRangeStmt()
|
/external/clang/unittests/AST/ |
D | SourceLocationTest.cpp | 233 return SourceRange(T.getLParenLoc(), T.getRParenLoc()); in getRange()
|
/external/clang/lib/Frontend/Rewrite/ |
D | RewriteObjC.cpp | 1534 SourceLocation rightParenLoc = S->getRParenLoc(); in RewriteObjCForCollectionStmt() 1847 assert(*SM->getCharacterData(Catch->getRParenLoc()) == ')' && in RewriteObjCTryStmt() 1871 SourceLocation rParenLoc = Catch->getRParenLoc(); in RewriteObjCTryStmt() 2085 EndLoc = ECE->getRParenLoc(); in RewriteObjCQualifiedInterfaceTypes() 3914 SourceLocation LocEnd = CE->getRParenLoc(); in RewriteCastExpr()
|
D | RewriteModernObjC.cpp | 1770 SourceLocation rightParenLoc = S->getRParenLoc(); in RewriteObjCForCollectionStmt() 1997 SourceLocation rParenLoc = Catch->getRParenLoc(); in RewriteObjCTryStmt() 2193 EndLoc = ECE->getRParenLoc(); in RewriteObjCQualifiedInterfaceTypes() 4819 SourceLocation LocEnd = CE->getRParenLoc(); in RewriteCastExpr()
|
/external/clang/include/clang/Sema/ |
D | DeclSpec.h | 1299 SourceLocation getRParenLoc() const { in getRParenLoc() function
|