Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/ProfileData/Coverage/
H A DCoverageMapping.cpp619 DecisionEndLoc(Decision.endLoc()) { in DecisionRecord()
1105 return L->endLoc() < R->endLoc(); in completeRegionsUntil()
1112 assert((!Loc || CompletedRegion->endLoc() <= *Loc) && in completeRegionsUntil()
1124 if (CompletedSegmentLoc == CompletedRegion->endLoc()) in completeRegionsUntil()
1129 if (CompletedRegion->endLoc() == ActiveRegions[J]->endLoc()) in completeRegionsUntil()
1136 if (FirstCompletedRegion && Last->endLoc() != *Loc) { in completeRegionsUntil()
1144 startSegment(*Last, Last->endLoc(), false, true); in completeRegionsUntil()
1170 if (CurStartLoc == CR.value().endLoc()) { in buildSegmentsImpl()
1205 if (LHS.endLoc() != RHS.endLoc()) in sortNestedRegions()
1207 return RHS.endLoc() < LHS.endLoc(); in sortNestedRegions()
[all …]
H A DCoverageMappingWriter.cpp158 return CMR.startLoc() <= CMR.endLoc(); in write()
H A DCoverageMappingReader.cpp380 if (CMR.startLoc() > CMR.endLoc()) in readMappingRegionsSubArray()
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-mca/
H A DCodeRegion.cpp44 !Regions[0]->endLoc().isValid()) { in beginRegion()
90 !Regions[0]->startLoc().isValid() && !Regions[0]->endLoc().isValid()) { in endRegion()
H A DPipelinePrinter.cpp121 if (Region.startLoc().isValid() || Region.endLoc().isValid()) in printReport()
H A DCodeRegion.h101 llvm::SMLoc endLoc() const { return RangeEnd; } in endLoc() function
/freebsd-14.2/contrib/llvm-project/clang/lib/ARCMigrate/
H A DTransformActions.cpp68 SourceLocation beginLoc = range.getBegin(), endLoc = range.getEnd(); in CharRange() local
69 assert(beginLoc.isValid() && endLoc.isValid()); in CharRange()
72 End = FullSourceLoc(getLocForEndOfToken(endLoc, srcMgr, PP), srcMgr); in CharRange()
75 End = FullSourceLoc(srcMgr.getExpansionLoc(endLoc), srcMgr); in CharRange()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DDeclObjC.cpp824 SourceLocation beginLoc, SourceLocation endLoc, Selector SelInfo, in ObjCMethodDecl() argument
831 DeclEndLoc(endLoc) { in ObjCMethodDecl()
854 ASTContext &C, SourceLocation beginLoc, SourceLocation endLoc, in Create() argument
861 beginLoc, endLoc, SelInfo, T, ReturnTInfo, contextDecl, isInstance, in Create()
/freebsd-14.2/contrib/llvm-project/clang/lib/Lex/
H A DPPDirectives.cpp511 SourceLocation endLoc; in SkipExcludedConditionalBlock() local
678 endLoc = CheckEndOfDirective("endif"); in SkipExcludedConditionalBlock()
709 endLoc = CheckEndOfDirective("else"); in SkipExcludedConditionalBlock()
853 SourceRange(HashTokenLoc, endLoc.isValid() in SkipExcludedConditionalBlock()
854 ? endLoc in SkipExcludedConditionalBlock()
/freebsd-14.2/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp1665 SourceLocation endLoc = S->getSynchBody()->getBeginLoc(); in RewriteObjCSynchronizedStmt() local
1666 const char *endBuf = SM->getCharacterData(endLoc); in RewriteObjCSynchronizedStmt()
1919 SourceLocation endLoc = body->getEndLoc(); in RewriteObjCTryStmt() local
1922 assert(*SM->getCharacterData(endLoc) == '}' && in RewriteObjCTryStmt()
1927 endLoc = endLoc.getLocWithOffset(-1); in RewriteObjCTryStmt()
1928 InsertText(endLoc, " if (_rethrow) objc_exception_throw(_rethrow);\n"); in RewriteObjCTryStmt()
4633 SourceLocation endLoc = MessExpr->getEndLoc(); in RewriteFunctionBodyOrGlobalInitializer()
4636 const char *endBuf = SM->getCharacterData(endLoc); in RewriteFunctionBodyOrGlobalInitializer()
H A DRewriteModernObjC.cpp2059 SourceLocation endLoc = S->getEndLoc(); in RewriteObjCThrowStmt() local
2060 const char *endBuf = SM->getCharacterData(endLoc); in RewriteObjCThrowStmt()
5522 SourceLocation endLoc = MessExpr->getEndLoc(); in RewriteFunctionBodyOrGlobalInitializer()
5525 const char *endBuf = SM->getCharacterData(endLoc); in RewriteFunctionBodyOrGlobalInitializer()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h1721 SourceLocation &endLoc);
3010 SourceLocation *endLoc,
3068 SourceLocation *endLoc = nullptr);
/freebsd-14.2/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) in DeclStmt() argument
1501 : Stmt(DeclStmtClass), DG(dg), StartLoc(startLoc), EndLoc(endLoc) {} in DeclStmt()
/freebsd-14.2/contrib/llvm-project/clang/lib/Parse/
H A DParseObjc.cpp1882 SourceLocation &endLoc) { in parseObjCTypeArgsAndProtocolQualifiers() argument
1903 endLoc = PrevTokLocation; in parseObjCTypeArgsAndProtocolQualifiers()
1905 endLoc = Tok.getLocation(); in parseObjCTypeArgsAndProtocolQualifiers()
H A DParseDecl.cpp1216 ParsedAttributes &attrs, SourceLocation *endLoc, IdentifierInfo *ScopeName, in ParseAvailabilityAttribute() argument
1387 if (endLoc) in ParseAvailabilityAttribute()
1388 *endLoc = T.getCloseLocation(); in ParseAvailabilityAttribute()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMapping.h364 inline LineColPair endLoc() const { return LineColPair(LineEnd, ColumnEnd); } in endLoc() function
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaObjCProperty.cpp1160 SourceLocation endLoc = in ActOnPropertyImplDecl() local
1162 SourceRange ReadonlySourceRange(readonlyLoc, endLoc); in ActOnPropertyImplDecl()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp4745 SMLoc endLoc; in parseSEHRegisterNumber() local
4746 if (parseRegister(RegNo, startLoc, endLoc)) in parseSEHRegisterNumber()