/external/swiftshader/third_party/llvm-7.0/llvm/lib/ProfileData/Coverage/ |
D | CoverageMapping.cpp | 371 return L->endLoc() < R->endLoc(); in completeRegionsUntil() 378 assert((!Loc || CompletedRegion->endLoc() <= *Loc) && in completeRegionsUntil() 382 auto CompletedSegmentLoc = PrevCompletedRegion->endLoc(); in completeRegionsUntil() 390 if (CompletedSegmentLoc == CompletedRegion->endLoc()) in completeRegionsUntil() 395 if (CompletedRegion->endLoc() == ActiveRegions[J]->endLoc()) in completeRegionsUntil() 402 if (FirstCompletedRegion && Last->endLoc() != *Loc) { in completeRegionsUntil() 405 startSegment(*ActiveRegions[FirstCompletedRegion - 1], Last->endLoc(), in completeRegionsUntil() 407 } else if (!FirstCompletedRegion && (!Loc || *Loc != Last->endLoc())) { in completeRegionsUntil() 410 startSegment(*Last, Last->endLoc(), false, true); in completeRegionsUntil() 425 return !(Region->endLoc() <= CurStartLoc); in buildSegmentsImpl() [all …]
|
D | CoverageMappingWriter.cpp | 122 return CMR.startLoc() <= CMR.endLoc(); in write()
|
D | CoverageMappingReader.cpp | 245 if (CMR.startLoc() > CMR.endLoc()) in readMappingRegionsSubArray()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-mca/ |
D | CodeRegion.cpp | 32 if (CurrentRegion.startLoc().isValid() && !CurrentRegion.endLoc().isValid()) { in beginRegion() 47 if (CurrentRegion.endLoc().isValid()) { in endRegion()
|
D | CodeRegion.h | 69 llvm::SMLoc endLoc() const { return RangeEnd; } in endLoc() function
|
D | llvm-mca.cpp | 481 if (Region->startLoc().isValid() || Region->endLoc().isValid()) { in main()
|
/external/clang/include/clang/Parse/ |
D | Parser.h | 1337 SourceLocation &endLoc); 2137 SourceLocation endLoc; variable 2138 ParseGNUAttributes(attrs, &endLoc, LateAttrs, &D); 2139 D.takeAttributes(attrs, endLoc); 2143 SourceLocation *endLoc = nullptr, 2146 ParseGNUAttributes(attrs, endLoc, LateAttrs); 2149 SourceLocation *endLoc = nullptr, 2165 SourceLocation endLoc; in MaybeParseCXX11Attributes() local 2166 ParseCXX11Attributes(attrs, &endLoc); in MaybeParseCXX11Attributes() 2167 D.takeAttributes(attrs, endLoc); in MaybeParseCXX11Attributes() [all …]
|
/external/llvm/lib/ProfileData/Coverage/ |
D | CoverageMapping.cpp | 329 ActiveRegions.back()->endLoc() <= Region.startLoc()) in buildSegmentsImpl() 346 if (LHS.endLoc() != RHS.endLoc()) in sortNestedRegions() 348 return RHS.endLoc() < LHS.endLoc(); in sortNestedRegions() 372 Active->endLoc() != I->endLoc()) { in combineRegions()
|
/external/clang/lib/ARCMigrate/ |
D | TransformActions.cpp | 69 SourceLocation beginLoc = range.getBegin(), endLoc = range.getEnd(); in CharRange() local 70 assert(beginLoc.isValid() && endLoc.isValid()); in CharRange() 73 End = FullSourceLoc(getLocForEndOfToken(endLoc, srcMgr, PP), srcMgr); in CharRange() 76 End = FullSourceLoc(srcMgr.getExpansionLoc(endLoc), srcMgr); in CharRange()
|
/external/llvm/include/llvm/ProfileData/Coverage/ |
D | CoverageMapping.h | 244 inline std::pair<unsigned, unsigned> endLoc() const { in endLoc() function 259 if (endLoc() < Other.endLoc()) in contains()
|
/external/swiftshader/third_party/LLVM/lib/MC/MCParser/ |
D | COFFAsmParser.cpp | 439 SMLoc endLoc; in ParseSEHRegisterNumber() local 441 if (getParser().getTargetParser().ParseRegister(LLVMRegNo,startLoc,endLoc)) in ParseSEHRegisterNumber()
|
/external/clang/tools/libclang/ |
D | CXLoadedDiagnostic.cpp | 306 CXSourceLocation endLoc = makeLocation(End); in readRange() local 307 SR = clang_getRange(startLoc, endLoc); in readRange()
|
/external/clang/lib/Parse/ |
D | ParseDeclCXX.cpp | 3759 SourceLocation *endLoc) { in ParseCXX11AttributeSpecifier() argument 3762 ParseAlignmentSpecifier(attrs, endLoc); in ParseCXX11AttributeSpecifier() 3839 AttrParsed = ParseCXX11AttributeArgs(AttrName, AttrLoc, attrs, endLoc, in ParseCXX11AttributeSpecifier() 3855 if (endLoc) in ParseCXX11AttributeSpecifier() 3856 *endLoc = Tok.getLocation(); in ParseCXX11AttributeSpecifier() 3866 SourceLocation *endLoc) { in ParseCXX11Attributes() argument 3870 if (!endLoc) in ParseCXX11Attributes() 3871 endLoc = &Loc; in ParseCXX11Attributes() 3874 ParseCXX11AttributeSpecifier(attrs, endLoc); in ParseCXX11Attributes() 3877 attrs.Range = SourceRange(StartLoc, *endLoc); in ParseCXX11Attributes() [all …]
|
D | ParseDecl.cpp | 125 SourceLocation *endLoc, in ParseGNUAttributes() argument 164 ParseGNUAttributeArgs(AttrName, AttrNameLoc, attrs, endLoc, nullptr, in ParseGNUAttributes() 193 if (endLoc) in ParseGNUAttributes() 194 *endLoc = Loc; in ParseGNUAttributes() 861 SourceLocation *endLoc, in ParseAvailabilityAttribute() argument 1026 if (endLoc) in ParseAvailabilityAttribute() 1027 *endLoc = T.getCloseLocation(); in ParseAvailabilityAttribute() 1074 SourceLocation *endLoc, in ParseObjCBridgeRelatedAttribute() argument 1130 if (endLoc) in ParseObjCBridgeRelatedAttribute() 1131 *endLoc = T.getCloseLocation(); in ParseObjCBridgeRelatedAttribute() [all …]
|
/external/llvm/unittests/ProfileData/ |
D | CoverageMappingTest.cpp | 237 ASSERT_EQ(Input.Regions[I].endLoc(), Output.Regions[I].endLoc()); in TEST_P()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/MCParser/ |
D | COFFAsmParser.cpp | 824 SMLoc endLoc; in ParseSEHRegisterNumber() local 826 if (getParser().getTargetParser().ParseRegister(LLVMRegNo,startLoc,endLoc)) in ParseSEHRegisterNumber()
|
/external/llvm/lib/MC/MCParser/ |
D | COFFAsmParser.cpp | 754 SMLoc endLoc; in ParseSEHRegisterNumber() local 756 if (getParser().getTargetParser().ParseRegister(LLVMRegNo,startLoc,endLoc)) in ParseSEHRegisterNumber()
|
/external/llvm/lib/Target/SystemZ/AsmParser/ |
D | SystemZAsmParser.cpp | 131 SystemZOperand(OperandKind kind, SMLoc startLoc, SMLoc endLoc) in SystemZOperand() argument 132 : Kind(kind), StartLoc(startLoc), EndLoc(endLoc) {} in SystemZOperand()
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ProfileData/ |
D | CoverageMappingTest.cpp | 279 ASSERT_EQ(Input.Regions[I].endLoc(), Output.Regions[I].endLoc()); in TEST_P()
|
/external/clang/lib/Frontend/Rewrite/ |
D | RewriteObjC.cpp | 1656 SourceLocation endLoc = S->getSynchBody()->getLocStart(); in RewriteObjCSynchronizedStmt() local 1657 const char *endBuf = SM->getCharacterData(endLoc); in RewriteObjCSynchronizedStmt() 1910 SourceLocation endLoc = body->getLocEnd(); in RewriteObjCTryStmt() local 1913 assert(*SM->getCharacterData(endLoc) == '}' && in RewriteObjCTryStmt() 1918 endLoc = endLoc.getLocWithOffset(-1); in RewriteObjCTryStmt() 1919 InsertText(endLoc, " if (_rethrow) objc_exception_throw(_rethrow);\n"); in RewriteObjCTryStmt() 4635 SourceLocation endLoc = MessExpr->getLocEnd(); in RewriteFunctionBodyOrGlobalInitializer() 4638 const char *endBuf = SM->getCharacterData(endLoc); in RewriteFunctionBodyOrGlobalInitializer()
|
/external/clang/include/clang/AST/ |
D | DeclObjC.h | 226 ObjCMethodDecl(SourceLocation beginLoc, SourceLocation endLoc, 242 NumParams(0), DeclEndLoc(endLoc), Body(), SelfDecl(nullptr), in NamedDecl() 254 Create(ASTContext &C, SourceLocation beginLoc, SourceLocation endLoc,
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/SystemZ/AsmParser/ |
D | SystemZAsmParser.cpp | 151 SystemZOperand(OperandKind kind, SMLoc startLoc, SMLoc endLoc) in SystemZOperand() argument 152 : Kind(kind), StartLoc(startLoc), EndLoc(endLoc) {} in SystemZOperand()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ProfileData/Coverage/ |
D | CoverageMapping.h | 269 inline LineColPair endLoc() const { return LineColPair(LineEnd, ColumnEnd); } in endLoc() function
|
/external/clang/tools/c-index-test/ |
D | c-index-test.c | 3589 CXSourceLocation startLoc, endLoc; in perform_token_annotation() local 3661 endLoc = clang_getLocation(TU, file, second_line, second_column); in perform_token_annotation() 3662 if (clang_equalLocations(clang_getNullLocation(), endLoc)) { in perform_token_annotation() 3669 range = clang_getRange(startLoc, endLoc); in perform_token_annotation()
|
/external/clang/lib/AST/ |
D | DeclObjC.cpp | 751 ASTContext &C, SourceLocation beginLoc, SourceLocation endLoc, in Create() argument 757 beginLoc, endLoc, SelInfo, T, ReturnTInfo, contextDecl, isInstance, in Create()
|