Searched refs:getLocEnd (Results 26 - 50 of 58) sorted by relevance

123

/freebsd-10.3-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DPathDiagnostic.cpp501 SourceLocation L = UseEnd ? S->getLocEnd() : S->getLocStart();
530 L = ADC->getDecl()->getLocEnd();
534 L = UseEnd ? Parent->getLocEnd() : Parent->getLocStart();
/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/AST/
H A DDeclCXX.h204 SourceLocation getLocEnd() const LLVM_READONLY { return Range.getEnd(); }
2435 SourceLocation getLocEnd() const LLVM_READONLY {
2440 return decls_empty() ? getLocation() : decls_begin()->getLocEnd();
2444 return SourceRange(ExternLoc, getLocEnd());
H A DDeclObjC.h302 SourceLocation getLocEnd() const LLVM_READONLY;
304 return SourceRange(getLocation(), getLocEnd());
H A DDeclBase.h369 SourceLocation getLocEnd() const LLVM_READONLY {
H A DTypeLoc.h131 SourceLocation getLocEnd() const LLVM_READONLY { return getEndLoc(); }
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DTreeTransform.h2786 Construct->getLocEnd(),
6317 D->getLocEnd());
6329 C->getLocEnd());
6348 C->getLocEnd());
6368 C->getLocEnd());
6387 C->getLocEnd());
6970 /*FIXME:*/E->getInitializer()->getLocEnd(),
6987 = SemaRef.PP.getLocForEndOfToken(E->getBase()->getLocEnd());
7225 static_cast<Expr *>(Object.get())->getLocEnd());
7235 E->getLocEnd());
[all...]
H A DSemaInit.cpp669 StructuredSubobjectInitList->getLocEnd()),
756 << FixItHint::CreateRemoval(IList->getLocEnd());
1744 DIE->getLocEnd()));
1929 DIE->getLocEnd());
6341 << SourceRange(Args.front()->getLocStart(), Args.back()->getLocEnd());
6503 R = SourceRange(InitList->getInit(0)->getLocEnd(),
6504 InitList->getLocEnd());
6506 R = SourceRange(Args.front()->getLocEnd(), Args.back()->getLocEnd());
6533 Args.back()->getLocEnd());
[all...]
H A DSemaExpr.cpp408 = PP.getLocForEndOfToken(sentinelExpr->getLocEnd());
516 SourceLocation RHSLocEnd = S.PP.getLocForEndOfToken(RHS->getLocEnd());
535 OIRE->getLocEnd()), ")");
866 E->getLocEnd());
4116 Args.back()->getLocEnd());
4126 Args.back()->getLocEnd());
4409 ArgExprs.back()->getLocEnd()));
5888 SourceRange(Condition->getLocStart(), Condition->getLocEnd()));
5892 SourceRange(CondRHS->getLocStart(), RHSExpr->getLocEnd()));
6972 SourceRange DiagRange(LHSExpr->getLocStart(), RHSExpr->getLocEnd());
[all...]
H A DSemaCast.cpp2338 Op.OpRange = SourceRange(LPLoc, CastExpr->getLocEnd());
2362 Op.OpRange = SourceRange(Op.DestRange.getBegin(), CastExpr->getLocEnd());
H A DSemaExprCXX.cpp1080 return BuildCXXNew(SourceRange(StartLoc, D.getLocEnd()), UseGlobal,
1422 Inits[NumInits - 1]->getLocEnd());
1787 PlaceArgs.back()->getLocEnd());
5686 Exp.get()->getLocEnd());
H A DSemaStmt.cpp455 DiagnoseEmptyStmtBody(ConditionExpr->getLocEnd(), thenStmt,
907 Hi->getLocEnd());
1103 DiagnoseEmptyStmtBody(CondExpr->getLocEnd(), BodyStmt,
H A DSemaType.cpp2797 FixitLoc = S.PP.getLocForEndOfToken(TInfo->getTypeLoc().getLocEnd());
2800 FixitLoc = S.PP.getLocForEndOfToken(D.getDeclSpec().getLocEnd());
3513 TL.setNameEndLoc(DS.getLocEnd());
H A DSemaExprObjC.cpp916 Elements[I].Value->getLocEnd());
1370 Args.back()->getLocEnd());
H A DSemaTemplateInstantiateDecl.cpp1606 Conversion->getLocEnd());
1612 D->isConstexpr(), D->getLocEnd());
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Rewrite/Frontend/
H A DRewriteObjC.cpp949 SourceLocation LocEnd = Method->getLocEnd();
1218 InsertText(IMD ? IMD->getLocEnd() : CID->getLocEnd(), "// ");
1683 // We can't use S->getSynchExpr()->getLocEnd() to find the end location, since
1699 startLoc = S->getSynchBody()->getLocEnd();
1834 startLoc = S->getTryBody()->getLocEnd();
1917 SourceLocation bodyLoc = lastCatchBody->getLocEnd();
1933 lastCurlyLoc = lastCatchBody->getLocEnd();
1944 SourceLocation endLoc = body->getLocEnd();
1956 lastCurlyLoc = body->getLocEnd();
[all...]
H A DRewriteModernObjC.cpp947 startGetterSetterLoc = IMD ? IMD->getLocEnd() : CID->getLocEnd();
1123 SourceLocation LocEnd = Method->getLocEnd();
1424 InsertText(IMD ? IMD->getLocEnd() : CID->getLocEnd(), "// ");
1937 // We can't use S->getSynchExpr()->getLocEnd() to find the end location, since
1950 SourceLocation startRBraceLoc = S->getSynchBody()->getLocEnd();
2079 SourceLocation endFinalBodyLoc = body->getLocEnd();
2110 SourceLocation endLoc = S->getLocEnd();
2235 EndLoc = E->getLocEnd();
[all...]
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/AST/
H A DCommentSema.cpp676 Diag(FD->getLocEnd(),
678 << FixItHint::CreateInsertion(FD->getLocEnd().getLocWithOffset(1),
H A DDecl.cpp1654 SourceLocation InitEnd = Init->getLocEnd();
2248 EndRangeLoc = B->getLocEnd();
3150 return SourceRange(getInnerLocStart(), E->getLocEnd());
3482 return SourceRange(getLocation(), Body? Body->getLocEnd() : getLocation());
3625 End = Init->getLocEnd();
H A DDeclObjC.cpp699 SourceLocation ObjCMethodDecl::getLocEnd() const { function in class:ObjCMethodDecl
701 return Body->getLocEnd();
H A DASTImporter.cpp2768 Importer.Import(D->getLocEnd()));
2777 Importer.Import(D->getLocEnd()));
3282 Importer.Import(D->getLocEnd()),
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Serialization/
H A DASTWriterDecl.cpp349 Writer.AddSourceLocation(D->getLocEnd(), Record);
456 Writer.AddSourceLocation(D->getLocEnd(), Record);
1051 Writer.AddSourceLocation(D->getLocEnd(), Record);
H A DASTWriterStmt.cpp1697 Writer->Writer.AddSourceLocation(C->getLocEnd(), Record);
1740 Writer.AddSourceLocation(E->getLocEnd(), Record);
/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCallEvent.h670 Location = Trigger->getLocEnd();
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGClass.cpp707 DI->EmitLocation(Builder, Ctor->getLocEnd());
708 EmitDelegateCXXConstructorCall(Ctor, Ctor_Base, Args, Ctor->getLocEnd());
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Analysis/
H A DConsumed.cpp1471 SourceLocation Loc = DTor.getTriggerStmt()->getLocEnd();

Completed in 511 milliseconds

123