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

/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/Coverage/
H A DCoverageMapping.cpp419 return L->endLoc() < R->endLoc();
426 assert((!Loc || CompletedRegion->endLoc() <= *Loc) &&
430 auto CompletedSegmentLoc = PrevCompletedRegion->endLoc();
438 if (CompletedSegmentLoc == CompletedRegion->endLoc())
443 if (CompletedRegion->endLoc() == ActiveRegions[J]->endLoc())
450 if (FirstCompletedRegion && Last->endLoc() != *Loc) {
453 startSegment(*ActiveRegions[FirstCompletedRegion - 1], Last->endLoc(),
455 } else if (!FirstCompletedRegion && (!Loc || *Loc != Last->endLoc())) {
[all...]
H A DCoverageMappingWriter.cpp131 return CMR.startLoc() <= CMR.endLoc();
H A DCoverageMappingReader.cpp245 if (CMR.startLoc() > CMR.endLoc())
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/
H A DCodeRegion.cpp37 !Regions[0]->endLoc().isValid()) {
84 !Regions[0]->startLoc().isValid() && !Regions[0]->endLoc().isValid()) {
H A DCodeRegion.h71 llvm::SMLoc endLoc() const { return RangeEnd; } function in class:llvm::mca::CodeRegion
H A Dllvm-mca.cpp455 if (Region->startLoc().isValid() || Region->endLoc().isValid()) {
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h1614 SourceLocation &endLoc);
2531 SourceLocation endLoc; local
2532 ParseGNUAttributes(attrs, &endLoc, LateAttrs, &D);
2533 D.takeAttributes(attrs, endLoc);
2537 SourceLocation *endLoc = nullptr,
2540 ParseGNUAttributes(attrs, endLoc, LateAttrs);
2543 SourceLocation *endLoc = nullptr,
2562 SourceLocation endLoc; local
2563 ParseCXX11Attributes(attrs, &endLoc);
2564 D.takeAttributes(attrs, endLoc);
[all...]
/freebsd-11-stable/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-11-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseDeclCXX.cpp4108 SourceLocation *endLoc) {
4111 ParseAlignmentSpecifier(attrs, endLoc);
4188 AttrParsed = ParseCXX11AttributeArgs(AttrName, AttrLoc, attrs, endLoc,
4205 if (endLoc)
4206 *endLoc = Tok.getLocation();
4216 SourceLocation *endLoc) {
4220 if (!endLoc)
4221 endLoc = &Loc;
4224 ParseCXX11AttributeSpecifier(attrs, endLoc);
4227 attrs.Range = SourceRange(StartLoc, *endLoc);
4107 ParseCXX11AttributeSpecifier(ParsedAttributes &attrs, SourceLocation *endLoc) argument
4215 ParseCXX11Attributes(ParsedAttributesWithRange &attrs, SourceLocation *endLoc) argument
4360 ParseMicrosoftAttributes(ParsedAttributes &attrs, SourceLocation *endLoc) argument
[all...]
H A DParseDecl.cpp147 SourceLocation *endLoc,
189 ParseGNUAttributeArgs(AttrName, AttrNameLoc, attrs, endLoc, nullptr,
222 if (endLoc)
223 *endLoc = Loc;
994 SourceLocation *endLoc,
1179 if (endLoc)
1180 *endLoc = T.getCloseLocation();
1340 SourceLocation *endLoc,
1399 if (endLoc)
1400 *endLoc
146 ParseGNUAttributes(ParsedAttributes &attrs, SourceLocation *endLoc, LateParsedAttrList *LateAttrs, Declarator *D) argument
991 ParseAvailabilityAttribute(IdentifierInfo &Availability, SourceLocation AvailabilityLoc, ParsedAttributes &attrs, SourceLocation *endLoc, IdentifierInfo *ScopeName, SourceLocation ScopeLoc, ParsedAttr::Syntax Syntax) argument
1337 ParseObjCBridgeRelatedAttribute(IdentifierInfo &ObjCBridgeRelated, SourceLocation ObjCBridgeRelatedLoc, ParsedAttributes &attrs, SourceLocation *endLoc, IdentifierInfo *ScopeName, SourceLocation ScopeLoc, ParsedAttr::Syntax Syntax) argument
1495 SourceLocation endLoc; local
[all...]
H A DParseObjc.cpp1827 SourceLocation &endLoc) {
1848 endLoc = PrevTokLocation;
1850 endLoc = Tok.getLocation();
1823 parseObjCTypeArgsAndProtocolQualifiers( SourceLocation loc, ParsedType type, bool consumeLastToken, SourceLocation &endLoc) argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp1663 SourceLocation endLoc = S->getSynchBody()->getBeginLoc(); local
1664 const char *endBuf = SM->getCharacterData(endLoc);
1917 SourceLocation endLoc = body->getEndLoc(); local
1920 assert(*SM->getCharacterData(endLoc) == '}' &&
1925 endLoc = endLoc.getLocWithOffset(-1);
1926 InsertText(endLoc, " if (_rethrow) objc_exception_throw(_rethrow);\n");
4634 SourceLocation endLoc = MessExpr->getEndLoc();
4637 const char *endBuf = SM->getCharacterData(endLoc);
H A DRewriteModernObjC.cpp2056 SourceLocation endLoc = S->getEndLoc(); local
2057 const char *endBuf = SM->getCharacterData(endLoc);
5523 SourceLocation endLoc = MessExpr->getEndLoc();
5526 const char *endBuf = SM->getCharacterData(endLoc);
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DDeclObjC.cpp779 SourceLocation beginLoc, SourceLocation endLoc, Selector SelInfo,
786 DeclEndLoc(endLoc) {
809 ASTContext &C, SourceLocation beginLoc, SourceLocation endLoc,
816 beginLoc, endLoc, SelInfo, T, ReturnTInfo, contextDecl, isInstance,
778 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, ImplementationControl impControl, bool HasRelatedResultType) argument
808 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, ImplementationControl impControl, bool HasRelatedResultType) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/AsmParser/
H A DSystemZAsmParser.cpp152 SystemZOperand(OperandKind kind, SMLoc startLoc, SMLoc endLoc) argument
153 : Kind(kind), StartLoc(startLoc), EndLoc(endLoc) {}
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMapping.h268 inline LineColPair endLoc() const { return LineColPair(LineEnd, ColumnEnd); } function in struct:llvm::coverage::CounterMappingRegion
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DStmt.h1245 DeclStmt(DeclGroupRef dg, SourceLocation startLoc, SourceLocation endLoc) argument
1246 : Stmt(DeclStmtClass), DG(dg), StartLoc(startLoc), EndLoc(endLoc) {}
H A DDeclObjC.h171 ObjCMethodDecl(SourceLocation beginLoc, SourceLocation endLoc,
232 Create(ASTContext &C, SourceLocation beginLoc, SourceLocation endLoc,
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaObjCProperty.cpp1171 SourceLocation endLoc = local
1173 SourceRange ReadonlySourceRange(readonlyLoc, endLoc);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp3814 SMLoc endLoc; local
3815 if (ParseRegister(RegNo, startLoc, endLoc))

Completed in 411 milliseconds