Searched refs:endLoc (Results 1 - 19 of 19) sorted by relevance

/freebsd-current/contrib/llvm-project/llvm/tools/llvm-mca/
H A DCodeRegion.cpp44 !Regions[0]->endLoc().isValid()) {
90 !Regions[0]->startLoc().isValid() && !Regions[0]->endLoc().isValid()) {
H A DPipelinePrinter.cpp121 if (Region.startLoc().isValid() || Region.endLoc().isValid())
H A DCodeRegion.h101 llvm::SMLoc endLoc() const { return RangeEnd; } function in class:llvm::mca::CodeRegion
/freebsd-current/contrib/llvm-project/llvm/lib/ProfileData/Coverage/
H A DCoverageMapping.cpp619 DecisionEndLoc(Decision.endLoc()) {
627 R.startLoc() >= DecisionStartLoc && R.endLoc() <= DecisionEndLoc)
1105 return L->endLoc() < R->endLoc();
1112 assert((!Loc || CompletedRegion->endLoc() <= *Loc) &&
1116 auto CompletedSegmentLoc = PrevCompletedRegion->endLoc();
1124 if (CompletedSegmentLoc == CompletedRegion->endLoc())
1129 if (CompletedRegion->endLoc() == ActiveRegions[J]->endLoc())
1136 if (FirstCompletedRegion && Last->endLoc() !
[all...]
H A DCoverageMappingWriter.cpp158 return CMR.startLoc() <= CMR.endLoc();
H A DCoverageMappingReader.cpp380 if (CMR.startLoc() > CMR.endLoc())
/freebsd-current/contrib/llvm-project/clang/lib/ARCMigrate/
H A DTransformActions.cpp68 SourceLocation beginLoc = range.getBegin(), endLoc = range.getEnd(); local
69 assert(beginLoc.isValid() && endLoc.isValid());
72 End = FullSourceLoc(getLocForEndOfToken(endLoc, srcMgr, PP), srcMgr);
75 End = FullSourceLoc(srcMgr.getExpansionLoc(endLoc), srcMgr);
/freebsd-current/contrib/llvm-project/clang/lib/Lex/
H A DPPDirectives.cpp511 SourceLocation endLoc; local
678 endLoc = CheckEndOfDirective("endif");
709 endLoc = CheckEndOfDirective("else");
853 SourceRange(HashTokenLoc, endLoc.isValid()
854 ? endLoc
/freebsd-current/contrib/llvm-project/clang/lib/AST/
H A DDeclObjC.cpp824 SourceLocation beginLoc, SourceLocation endLoc, Selector SelInfo,
831 DeclEndLoc(endLoc) {
854 ASTContext &C, SourceLocation beginLoc, SourceLocation endLoc,
861 beginLoc, endLoc, SelInfo, T, ReturnTInfo, contextDecl, isInstance,
823 ObjCMethodDecl( SourceLocation beginLoc, SourceLocation endLoc, Selector SelInfo, QualType T, TypeSourceInfo *ReturnTInfo, DeclContext *contextDecl, bool isInstance, bool isVariadic, bool isPropertyAccessor, bool isSynthesizedAccessorStub, bool isImplicitlyDeclared, bool isDefined, ObjCImplementationControl impControl, bool HasRelatedResultType) argument
853 Create( ASTContext &C, SourceLocation beginLoc, SourceLocation endLoc, Selector SelInfo, QualType T, TypeSourceInfo *ReturnTInfo, DeclContext *contextDecl, bool isInstance, bool isVariadic, bool isPropertyAccessor, bool isSynthesizedAccessorStub, bool isImplicitlyDeclared, bool isDefined, ObjCImplementationControl impControl, bool HasRelatedResultType) argument
/freebsd-current/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp1665 SourceLocation endLoc = S->getSynchBody()->getBeginLoc(); local
1666 const char *endBuf = SM->getCharacterData(endLoc);
1919 SourceLocation endLoc = body->getEndLoc(); local
1922 assert(*SM->getCharacterData(endLoc) == '}' &&
1927 endLoc = endLoc.getLocWithOffset(-1);
1928 InsertText(endLoc, " if (_rethrow) objc_exception_throw(_rethrow);\n");
4633 SourceLocation endLoc = MessExpr->getEndLoc();
4636 const char *endBuf = SM->getCharacterData(endLoc);
H A DRewriteModernObjC.cpp2059 SourceLocation endLoc = S->getEndLoc(); local
2060 const char *endBuf = SM->getCharacterData(endLoc);
5522 SourceLocation endLoc = MessExpr->getEndLoc();
5525 const char *endBuf = SM->getCharacterData(endLoc);
/freebsd-current/contrib/llvm-project/clang/include/clang/AST/
H A DDeclObjC.h170 SourceLocation beginLoc, SourceLocation endLoc, Selector SelInfo,
230 Create(ASTContext &C, SourceLocation beginLoc, SourceLocation endLoc,
H A DStmt.h1500 DeclStmt(DeclGroupRef dg, SourceLocation startLoc, SourceLocation endLoc) argument
1501 : Stmt(DeclStmtClass), DG(dg), StartLoc(startLoc), EndLoc(endLoc) {}
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMapping.h364 inline LineColPair endLoc() const { return LineColPair(LineEnd, ColumnEnd); } function in struct:llvm::coverage::CounterMappingRegion
/freebsd-current/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h1721 SourceLocation &endLoc);
3010 SourceLocation *endLoc,
3068 SourceLocation *endLoc = nullptr);
/freebsd-current/contrib/llvm-project/clang/lib/Parse/
H A DParseObjc.cpp1882 SourceLocation &endLoc) {
1903 endLoc = PrevTokLocation;
1905 endLoc = Tok.getLocation();
1878 parseObjCTypeArgsAndProtocolQualifiers( SourceLocation loc, ParsedType type, bool consumeLastToken, SourceLocation &endLoc) argument
H A DParseDecl.cpp1216 ParsedAttributes &attrs, SourceLocation *endLoc, IdentifierInfo *ScopeName,
1387 if (endLoc)
1388 *endLoc = T.getCloseLocation();
1214 ParseAvailabilityAttribute( IdentifierInfo &Availability, SourceLocation AvailabilityLoc, ParsedAttributes &attrs, SourceLocation *endLoc, IdentifierInfo *ScopeName, SourceLocation ScopeLoc, ParsedAttr::Form Form) argument
/freebsd-current/contrib/llvm-project/clang/lib/Sema/
H A DSemaObjCProperty.cpp1160 SourceLocation endLoc = local
1162 SourceRange ReadonlySourceRange(readonlyLoc, endLoc);
/freebsd-current/contrib/llvm-project/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp4745 SMLoc endLoc; local
4746 if (parseRegister(RegNo, startLoc, endLoc))

Completed in 521 milliseconds