Home
last modified time | relevance | path

Searched refs:getEndLoc (Results 1 – 25 of 129) sorted by relevance

123456

/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DStmtObjC.h59 SourceLocation getEndLoc() const LLVM_READONLY { in getEndLoc() function
60 return SubExprs[BODY]->getEndLoc(); in getEndLoc()
108 SourceLocation getEndLoc() const LLVM_READONLY { return Body->getEndLoc(); } in getEndLoc() function
137 SourceLocation getEndLoc() const LLVM_READONLY { in getEndLoc() function
138 return AtFinallyStmt->getEndLoc(); in getEndLoc()
242 SourceLocation getEndLoc() const LLVM_READONLY;
299 SourceLocation getEndLoc() const LLVM_READONLY { in getEndLoc() function
300 return getSynchBody()->getEndLoc(); in getEndLoc()
333 SourceLocation getEndLoc() const LLVM_READONLY { in getEndLoc() function
361 SourceLocation getEndLoc() const LLVM_READONLY { in getEndLoc() function
[all …]
H A DStmtCXX.h45 SourceLocation getEndLoc() const LLVM_READONLY { in getEndLoc() function
46 return HandlerBlock->getEndLoc(); in getEndLoc()
92 SourceLocation getEndLoc() const { in getEndLoc() function
93 return getStmts()[NumHandlers]->getEndLoc(); in getEndLoc()
200 SourceLocation getEndLoc() const LLVM_READONLY { in getEndLoc() function
201 return SubExprs[BODY]->getEndLoc(); in getEndLoc()
286 SourceLocation getEndLoc() const LLVM_READONLY { in getEndLoc() function
287 return SubStmt->getEndLoc(); in getEndLoc()
410 SourceLocation getEndLoc() const LLVM_READONLY { in getEndLoc() function
411 return getBody() ? getBody()->getEndLoc() : getPromiseDecl()->getEndLoc(); in getEndLoc()
[all …]
H A DStmt.h1564 return SubStmt->getEndLoc(); in getEndLoc()
1577 return CS->getEndLoc(); in getEndLoc()
1579 return DS->getEndLoc(); in getEndLoc()
1620 SourceLocation getEndLoc() const LLVM_READONLY { return SubStmt->getEndLoc();} in getEndLoc() function
1677 SourceLocation getEndLoc() const LLVM_READONLY { return SubStmt->getEndLoc();} in getEndLoc() function
1869 return getThen()->getEndLoc(); in getEndLoc()
2291 SourceLocation getEndLoc() const { return getBody()->getEndLoc(); } in getEndLoc() function
2373 SourceLocation getEndLoc() const LLVM_READONLY { return Target->getEndLoc(); } in getEndLoc() function
2971 SourceLocation getEndLoc() const { return getBlock()->getEndLoc(); } in getEndLoc() function
3008 SourceLocation getEndLoc() const { return Block->getEndLoc(); } in getEndLoc() function
[all …]
H A DExprCXX.h649 return SubExpr->getEndLoc(); in getEndLoc()
1055 return getSubExpr()->getEndLoc(); in getEndLoc()
1249 return SubExpr->getEndLoc(); in getEndLoc()
2223 return Argument->getEndLoc(); in getEndLoc()
2916 return getNameInfo().getEndLoc(); in getEndLoc()
3136 return SubExpr->getEndLoc(); in getEndLoc()
3508 return MemberNameInfo.getEndLoc(); in getEndLoc()
3671 return getMemberNameInfo().getEndLoc(); in getEndLoc()
4241 return getTemporary()->getEndLoc(); in getEndLoc()
4405 return getCommonExpr()->getEndLoc(); in getEndLoc()
[all …]
H A DExprObjC.h71 SourceLocation getEndLoc() const LLVM_READONLY { return String->getEndLoc(); } in getEndLoc() function
98 SourceLocation getEndLoc() const LLVM_READONLY { return Loc; } in getEndLoc() function
416 SourceLocation getEndLoc() const LLVM_READONLY { return RParenLoc; }
562 SourceLocation getEndLoc() const LLVM_READONLY { return Loc; }
750 SourceLocation getEndLoc() const LLVM_READONLY { return IdLoc; }
1481 return getBase()->getEndLoc();
1556 SourceLocation getEndLoc() const LLVM_READONLY {
1557 return Operand->getEndLoc();
1614 SourceLocation getEndLoc() const LLVM_READONLY {
1615 return getSubExpr()->getEndLoc();
[all …]
H A DExpr.h922 return SubExpr->getEndLoc(); in getEndLoc()
1536 SourceLocation getEndLoc() const LLVM_READONLY { return Val->getEndLoc(); } in getEndLoc() function
2985 return Init->getEndLoc(); in getEndLoc()
3156 return getSubExpr()->getEndLoc(); in getEndLoc()
3263 return getSubExpr()->getEndLoc(); in getEndLoc()
3341 return getRHS()->getEndLoc(); in getEndLoc()
3639 return getRHS()->getEndLoc(); in getEndLoc()
3727 return getFalseExpr()->getEndLoc(); in getEndLoc()
4845 return getCommonExpr()->getEndLoc(); in getEndLoc()
5209 return getBody()->getEndLoc(); in getEndLoc()
[all …]
H A DComment.h220 SourceLocation getEndLoc() const LLVM_READONLY { return Range.getEnd(); } in getEndLoc() function
350 return SourceRange(getBeginLoc().getLocWithOffset(-1), getEndLoc()); in getCommandNameRange()
565 Content.back()->getEndLoc())); in ParagraphComment()
700 SourceLocation NewLocEnd = PC->getEndLoc(); in setParagraph()
976 return SourceRange(TextBegin, getEndLoc()); in getTextRange()
1104 SourceRange(Blocks.front()->getBeginLoc(), Blocks.back()->getEndLoc())); in FullComment()
H A DDeclFriend.h161 return SourceRange(getFriendLoc(), ND->getEndLoc()); in getSourceRange()
168 return SourceRange(StartL, TInfo->getTypeLoc().getEndLoc()); in getSourceRange()
H A DAvailability.h55 SourceLocation getEndLoc() const { return EndLoc; } in getEndLoc() function
H A DLexicallyOrderedRecursiveASTVisitor.h103 Child->getEndLoc())) in TraverseDeclContextHelper()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DStmtObjC.cpp67 SourceLocation ObjCAtTryStmt::getEndLoc() const { in getEndLoc() function in ObjCAtTryStmt
69 return getFinallyStmt()->getEndLoc(); in getEndLoc()
71 return getCatchStmt(NumCatchStmts - 1)->getEndLoc(); in getEndLoc()
72 return getTryBody()->getEndLoc(); in getEndLoc()
H A DExprCXX.cpp297 SourceLocation CXXPseudoDestructorExpr::getEndLoc() const { in getEndLoc() function in CXXPseudoDestructorExpr
514 SourceLocation CXXConstructExpr::getEndLoc() const { in getEndLoc() function in CXXConstructExpr
516 return cast<CXXTemporaryObjectExpr>(this)->getEndLoc(); in getEndLoc()
525 SourceLocation NewEnd = Arg->getEndLoc(); in getEndLoc()
587 return SourceRange(getOperatorLoc(), getArg(0)->getEndLoc()); in getSourceRangeImpl()
598 return SourceRange(getOperatorLoc(), getArg(0)->getEndLoc()); in getSourceRangeImpl()
600 return SourceRange(getArg(0)->getBeginLoc(), getArg(1)->getEndLoc()); in getSourceRangeImpl()
833 SourceLocation CXXFunctionalCastExpr::getEndLoc() const { in getEndLoc() function in CXXFunctionalCastExpr
834 return RParenLoc.isValid() ? RParenLoc : getSubExpr()->getEndLoc(); in getEndLoc()
977 SourceLocation CXXTemporaryObjectExpr::getEndLoc() const { in getEndLoc() function in CXXTemporaryObjectExpr
[all …]
H A DExpr.cpp470 SourceLocation DeclRefExpr::getEndLoc() const { in getEndLoc() function in DeclRefExpr
473 return getNameInfo().getEndLoc(); in getEndLoc()
1437 SourceLocation CallExpr::getEndLoc() const { in getEndLoc() function in CallExpr
1443 end = getArg(getNumArgs() - 1)->getEndLoc(); in getEndLoc()
1614 SourceLocation MemberExpr::getEndLoc() const { in getEndLoc() function in MemberExpr
1619 EndLoc = getBase()->getEndLoc(); in getEndLoc()
2111 SourceLocation InitListExpr::getEndLoc() const { in getEndLoc() function in InitListExpr
2113 return SyntacticForm->getEndLoc(); in getEndLoc()
2121 End = S->getEndLoc(); in getEndLoc()
3959 return getInit()->getEndLoc(); in getEndLoc()
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/lib/Analysis/
H A DCloneDetection.cpp54 SM.isBeforeInTranslationUnit(Other.getEndLoc(), getEndLoc()) || in contains()
55 Other.getEndLoc() == getEndLoc(); in contains()
84 SourceLocation StmtSequence::getEndLoc() const { return back()->getEndLoc(); } in getEndLoc() function in StmtSequence
87 return SourceRange(getBeginLoc(), getEndLoc()); in getSourceRange()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Format/
H A DUsingDeclarationsSorter.cpp145 auto End = (*UsingDeclarations)[I].Line->Last->Tok.getEndLoc(); in endUsingDeclarationBlock()
157 auto End = (*UsingDeclarations)[I].Line->Last->Tok.getEndLoc(); in endUsingDeclarationBlock()
160 auto SortedEnd = SortedUsingDeclarations[I].Line->Last->Tok.getEndLoc(); in endUsingDeclarationBlock()
H A DNamespaceEndCommentsFixer.cpp88 auto EndLoc = RBraceTok->Tok.getEndLoc(); in addEndComment()
103 Comment->Tok.getEndLoc()); in updateEndComment()
/freebsd-12.1/contrib/llvm/lib/Target/WebAssembly/AsmParser/
H A DWebAssemblyAsmParser.cpp108 SMLoc getEndLoc() const override { return EndLoc; } in getEndLoc() function
335 WebAssemblyOperand::Integer, Int.getLoc(), Int.getEndLoc(), in parseSingleInteger()
359 WebAssemblyOperand::Integer, Offset.getLoc(), Offset.getEndLoc(), in parseOperandStartingWithInteger()
470 WebAssemblyOperand::Symbol, Id.getLoc(), Id.getEndLoc(), in ParseInstruction()
491 WebAssemblyOperand::Float, Tok.getLoc(), Tok.getEndLoc(), in ParseInstruction()
499 WebAssemblyOperand::BrList, Tok.getLoc(), Tok.getEndLoc()); in ParseInstruction()
/freebsd-12.1/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DObjCMT.cpp264 ReceiverIsSuper ? Msg->getSuperLoc() : receiver->getEndLoc(); in rewriteToPropertyDotSyntax()
725 SourceLocation EndOfEnumDclLoc = EnumDcl->getEndLoc(); in rewriteToNSEnumDecl()
735 SourceLocation EndTypedefDclLoc = TypedefDcl->getEndLoc(); in rewriteToNSEnumDecl()
783 SourceLocation StartTypedefLoc = EnumDcl->getEndLoc(); in rewriteToNSMacroDecl()
785 SourceLocation EndTypedefLoc = TypedefDcl->getEndLoc(); in rewriteToNSMacroDecl()
816 SourceLocation EndLoc = Enumerator->getEndLoc(); in UseNSOptionsMacro()
965 R = SourceRange(TL.getBeginLoc(), TL.getEndLoc()); in ReplaceWithInstancetype()
985 R = SourceRange(TL.getBeginLoc(), TL.getEndLoc()); { in ReplaceWithClasstype()
1262 commit.insertBefore(OM->getEndLoc(), " NS_RETURNS_INNER_POINTER"); in migrateNsReturnsInnerPointer()
1274 commit.insertBefore(P->getEndLoc(), " NS_RETURNS_INNER_POINTER "); in migratePropertyNsReturnsInnerPointer()
[all …]
H A DTransAutoreleasePool.cpp132 findLocationAfterSemi((*retI)->getEndLoc(), Pass.Ctx); in ~AutoreleasePoolRewriter()
139 (*retI)->getEndLoc()), in ~AutoreleasePoolRewriter()
244 return SourceRange((*rangeS)->getBeginLoc(), (*rangeE)->getEndLoc()); in getIndentedRange()
310 findLocationAfterSemi(retS->getEndLoc(), Pass.Ctx).isValid()) { in handlePoolScope()
/freebsd-12.1/contrib/llvm/lib/MC/MCParser/
H A DMCAsmLexer.cpp32 SMLoc AsmToken::getEndLoc() const { in getEndLoc() function in AsmToken
37 return SMRange(getLoc(), getEndLoc()); in getLocRange()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Tooling/Refactoring/Rename/
H A DUSRLocFinder.cpp137 return TL.getEndLoc(); in EndLocationForType()
263 : Expr->getEndLoc(); in VisitDeclRefExpr()
306 EndLoc = Expr->getQualifierLoc().getEndLoc().getLocWithOffset(-1); in VisitDeclRefExpr()
579 Replace(Using->getBeginLoc(), Using->getEndLoc(), "using " + NewName.str()); in createRenameAtomicChanges()
/freebsd-12.1/contrib/llvm/include/llvm/MC/MCParser/
H A DMCParsedAsmOperand.h69 virtual SMLoc getEndLoc() const = 0;
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DTreeTransform.h8348 C->getLParenLoc(), C->getEndLoc()); in TransformOMPDefaultClause()
8356 C->getLParenLoc(), C->getEndLoc()); in TransformOMPProcBindClause()
8724 C->getColonLoc(), C->getEndLoc()); in TransformOMPAlignedClause()
9905 static_cast<Expr *>(Object.get())->getEndLoc()); in TransformCXXOperatorCallExpr()
9914 E->getEndLoc()); in TransformCXXOperatorCallExpr()
10717 E->getEndLoc()); in TransformTypeTraitExpr()
10974 T, LParenLoc, Args, E->getEndLoc(), in TransformCXXTemporaryObjectExpr()
11058 E->getCallOperator()->getEndLoc(), in TransformLambdaExpr()
11688 RHS.get(), E->getEndLoc()); in TransformCXXFoldExpr()
11709 Result.get(), E->getEndLoc()); in TransformCXXFoldExpr()
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DCheckerHelpers.cpp27 if (S->getEndLoc().isMacroID()) in containsMacro()
/freebsd-12.1/contrib/llvm/lib/Target/MSP430/AsmParser/
H A DMSP430AsmParser.cpp224 SMLoc getEndLoc() const { return End; } in getEndLoc() function in __anonebdbea530111::MSP430Operand
302 EndLoc = T.getEndLoc(); in ParseRegister()
465 EndLoc = getParser().getTok().getEndLoc(); in ParseOperand()

123456