Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/ProfileData/Coverage/
H A DCoverageMapping.cpp465 return L->endLoc() < R->endLoc(); in completeRegionsUntil()
472 assert((!Loc || CompletedRegion->endLoc() <= *Loc) && in completeRegionsUntil()
476 auto CompletedSegmentLoc = PrevCompletedRegion->endLoc(); in completeRegionsUntil()
484 if (CompletedSegmentLoc == CompletedRegion->endLoc()) in completeRegionsUntil()
489 if (CompletedRegion->endLoc() == ActiveRegions[J]->endLoc()) in completeRegionsUntil()
496 if (FirstCompletedRegion && Last->endLoc() != *Loc) { in completeRegionsUntil()
504 startSegment(*Last, Last->endLoc(), false, true); in completeRegionsUntil()
530 if (CurStartLoc == CR.value().endLoc()) { in buildSegmentsImpl()
565 if (LHS.endLoc() != RHS.endLoc()) in sortNestedRegions()
567 return RHS.endLoc() < LHS.endLoc(); in sortNestedRegions()
[all …]
H A DCoverageMappingWriter.cpp159 return CMR.startLoc() <= CMR.endLoc(); in write()
H A DCoverageMappingReader.cpp342 if (CMR.startLoc() > CMR.endLoc()) in readMappingRegionsSubArray()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-mca/
H A DCodeRegion.cpp37 !Regions[0]->endLoc().isValid()) { in beginRegion()
83 !Regions[0]->startLoc().isValid() && !Regions[0]->endLoc().isValid()) { in endRegion()
H A DCodeRegion.h73 llvm::SMLoc endLoc() const { return RangeEnd; } in endLoc() function
H A DPipelinePrinter.cpp122 if (Region.startLoc().isValid() || Region.endLoc().isValid()) in printReport()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h2711 SourceLocation endLoc; variable
2712 ParseGNUAttributes(attrs, &endLoc, LateAttrs, &D);
2713 D.takeAttributes(attrs, endLoc);
2788 SourceLocation endLoc; in MaybeParseCXX11Attributes() local
2789 ParseCXX11Attributes(attrs, &endLoc); in MaybeParseCXX11Attributes()
2790 D.takeAttributes(attrs, endLoc); in MaybeParseCXX11Attributes()
2797 ParseCXX11Attributes(attrsWithRange, endLoc);
2808 ParseCXX11Attributes(attrs, endLoc);
2842 ParseMicrosoftAttributes(attrs, endLoc);
2874 SourceLocation *endLoc,
[all …]
/freebsd-13.1/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-13.1/contrib/llvm-project/clang/lib/Parse/
H A DParseCXXInlineMethods.cpp708 SourceLocation endLoc; in ParseLexedAttribute() local
731 ParseGNUAttributeArgs(&LA.AttrName, LA.AttrNameLoc, Attrs, &endLoc, in ParseLexedAttribute()
740 ParseGNUAttributeArgs(&LA.AttrName, LA.AttrNameLoc, Attrs, &endLoc, in ParseLexedAttribute()
H A DParseDeclCXX.cpp4474 SourceLocation *endLoc) { in ParseCXX11Attributes() argument
4478 if (!endLoc) in ParseCXX11Attributes()
4479 endLoc = &Loc; in ParseCXX11Attributes()
4482 ParseCXX11AttributeSpecifier(attrs, endLoc); in ParseCXX11Attributes()
4485 attrs.Range = SourceRange(StartLoc, *endLoc); in ParseCXX11Attributes()
4619 SourceLocation *endLoc) { in ParseMicrosoftAttributes() argument
4639 if (endLoc) in ParseMicrosoftAttributes()
4640 *endLoc = T.getCloseLocation(); in ParseMicrosoftAttributes()
H A DParseDecl.cpp1028 SourceLocation *endLoc, in ParseAvailabilityAttribute() argument
1213 if (endLoc) in ParseAvailabilityAttribute()
1214 *endLoc = T.getCloseLocation(); in ParseAvailabilityAttribute()
1374 SourceLocation *endLoc, in ParseObjCBridgeRelatedAttribute() argument
1433 if (endLoc) in ParseObjCBridgeRelatedAttribute()
1434 *endLoc = T.getCloseLocation(); in ParseObjCBridgeRelatedAttribute()
H A DParseObjc.cpp1829 SourceLocation &endLoc) { in parseObjCTypeArgsAndProtocolQualifiers() argument
1850 endLoc = PrevTokLocation; in parseObjCTypeArgsAndProtocolQualifiers()
1852 endLoc = Tok.getLocation(); in parseObjCTypeArgsAndProtocolQualifiers()
/freebsd-13.1/contrib/llvm-project/clang/lib/Lex/
H A DPPDirectives.cpp467 SourceLocation endLoc; in SkipExcludedConditionalBlock() local
574 endLoc = CheckEndOfDirective("endif"); in SkipExcludedConditionalBlock()
602 endLoc = CheckEndOfDirective("else"); in SkipExcludedConditionalBlock()
715 SourceRange(HashTokenLoc, endLoc.isValid() in SkipExcludedConditionalBlock()
716 ? endLoc in SkipExcludedConditionalBlock()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DDeclObjC.cpp781 SourceLocation beginLoc, SourceLocation endLoc, Selector SelInfo, in ObjCMethodDecl() argument
788 DeclEndLoc(endLoc) { in ObjCMethodDecl()
811 ASTContext &C, SourceLocation beginLoc, SourceLocation endLoc, in Create() argument
818 beginLoc, endLoc, SelInfo, T, ReturnTInfo, contextDecl, isInstance, in Create()
/freebsd-13.1/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.cpp2058 SourceLocation endLoc = S->getEndLoc(); in RewriteObjCThrowStmt() local
2059 const char *endBuf = SM->getCharacterData(endLoc); in RewriteObjCThrowStmt()
5523 SourceLocation endLoc = MessExpr->getEndLoc(); in RewriteFunctionBodyOrGlobalInitializer()
5526 const char *endBuf = SM->getCharacterData(endLoc); in RewriteFunctionBodyOrGlobalInitializer()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/SystemZ/AsmParser/
H A DSystemZAsmParser.cpp152 SystemZOperand(OperandKind kind, SMLoc startLoc, SMLoc endLoc) in SystemZOperand() argument
153 : Kind(kind), StartLoc(startLoc), EndLoc(endLoc) {} in SystemZOperand()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DDeclObjC.h172 ObjCMethodDecl(SourceLocation beginLoc, SourceLocation endLoc,
233 Create(ASTContext &C, SourceLocation beginLoc, SourceLocation endLoc,
H A DStmt.h1296 DeclStmt(DeclGroupRef dg, SourceLocation startLoc, SourceLocation endLoc) in DeclStmt() argument
1297 : Stmt(DeclStmtClass), DG(dg), StartLoc(startLoc), EndLoc(endLoc) {} in DeclStmt()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMapping.h299 inline LineColPair endLoc() const { return LineColPair(LineEnd, ColumnEnd); } in endLoc() function
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaObjCProperty.cpp1160 SourceLocation endLoc = in ActOnPropertyImplDecl() local
1162 SourceRange ReadonlySourceRange(readonlyLoc, endLoc); in ActOnPropertyImplDecl()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp4845 SMLoc endLoc; in parseSEHRegisterNumber() local
4846 if (ParseRegister(RegNo, startLoc, endLoc)) in parseSEHRegisterNumber()