Home
last modified time | relevance | path

Searched refs:getRanges (Results 1 – 25 of 57) sorted by relevance

123

/src/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DTextDiagnostics.cpp97 PD->path.back()->getRanges(), PD->path.back()->getFixits()); in FlushDiagnosticsImpl()
105 Piece->getString(), Piece->getRanges(), in FlushDiagnosticsImpl()
119 Piece->getString(), Piece->getRanges(), in FlushDiagnosticsImpl()
H A DPlistDiagnostics.cpp320 ArrayRef<SourceRange> Ranges = P.getRanges(); in ReportEvent()
404 ArrayRef<SourceRange> Ranges = P->getRanges(); in ReportMacroExpansions()
437 ArrayRef<SourceRange> Ranges = P.getRanges(); in ReportNote()
468 ArrayRef<SourceRange> Ranges = P.getRanges(); in ReportPopUp()
624 ArrayRef<SourceRange> Ranges = Piece.getRanges(); in FlushDiagnosticsImpl()
/src/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountDiagnostics.h63 ArrayRef<SourceRange> getRanges() const override { in getRanges() function
65 return PathSensitiveBugReport::getRanges(); in getRanges()
/src/contrib/llvm-project/clang/lib/ARCMigrate/
H A DPlistReporter.cpp105 if (!D.getRanges().empty()) { in writeARCDiagsToPlist()
108 for (auto &R : D.getRanges()) { in writeARCDiagsToPlist()
/src/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineMemOperand.h268 const MDNode *getRanges() const { return Ranges; } in getRanges() function
352 LHS.getRanges() == RHS.getRanges() &&
H A DLexicalScopes.h66 SmallVectorImpl<InsnRange> &getRanges() { return Ranges; } in getRanges() function
/src/contrib/llvm-project/clang/lib/Analysis/
H A DPathDiagnostic.cpp178 ArrayRef<SourceRange> Ranges = piece->getRanges(); in HandlePathDiagnostic()
278 if (X.getRanges().size() != Y.getRanges().size()) in comparePiece()
279 return X.getRanges().size() < Y.getRanges().size(); in comparePiece()
283 for (unsigned i = 0, n = X.getRanges().size(); i < n; ++i) { in comparePiece()
284 SourceRange XR = X.getRanges()[i]; in comparePiece()
285 SourceRange YR = Y.getRanges()[i]; in comparePiece()
1098 ArrayRef<SourceRange> Ranges = getRanges(); in Profile()
/src/contrib/llvm-project/clang/lib/Frontend/
H A DSARIFDiagnosticPrinter.cpp81 DiagMessageStream.str(), Info.getRanges(), Info.getFixItHints(), &Info); in HandleDiagnostic()
H A DTextDiagnosticPrinter.cpp153 DiagMessageStream.str(), Info.getRanges(), Info.getFixItHints()); in HandleDiagnostic()
/src/contrib/llvm-project/clang/lib/Basic/
H A DSourceMgrAdapter.cpp125 for (auto Range : Diag.getRanges()) { in handleDiag()
H A DDiagnostic.cpp1167 this->Ranges.assign(Info.getRanges().begin(), Info.getRanges().end()); in StoredDiagnostic()
/src/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVRange.cpp72 if (const LVLocations *Locations = Scope->getRanges()) in addEntry()
H A DLVScope.cpp768 void LVScope::getRanges(LVLocations &LocationList, in getRanges() function in LVScope
789 Scope->getRanges(LocationList, ValidLocation, RecordInvalid); in getRanges()
793 void LVScope::getRanges(LVRange &RangeList) { in getRanges() function in LVScope
802 Scope->getRanges(RangeList); in getRanges()
808 const LVLocations *ParentRanges = Parent->getRanges(); in outermostParent()
1222 getRanges(Locations, ValidLocation, RecordInvalid); in processRangeLocationCoverage()
H A DLVSymbol.cpp131 const LVLocations *Ranges = getParentScope()->getRanges(); in fillLocationGaps()
/src/contrib/llvm-project/llvm/lib/MC/
H A DMCCodeView.cpp633 for (std::pair<const MCSymbol *, const MCSymbol *> Range : Frag.getRanges()) { in encodeDefRange()
642 for (size_t I = 0, E = Frag.getRanges().size(); I != E;) { in encodeDefRange()
645 const MCSymbol *RangeBegin = Frag.getRanges()[I].first; in encodeDefRange()
H A DMCFragment.cpp255 F->getRanges()) { in dump()
/src/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVScope.h206 const LVLocations *getRanges() const { return Ranges.get(); } in getRanges() function
243 void getRanges(LVLocations &LocationList, LVValidLocation ValidLocation,
245 void getRanges(LVRange &RangeList);
/src/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DGISelKnownBits.cpp411 if (const MDNode *Ranges = MMO->getRanges()) in computeKnownBitsImpl()
422 if (const MDNode *Ranges = MMO->getRanges()) in computeKnownBitsImpl()
634 const MDNode *Ranges = Ld->getRanges(); in computeNumSignBitsFromRangeMetadata()
/src/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporter.h229 virtual ArrayRef<SourceRange> getRanges() const { in getRanges() function
423 ArrayRef<SourceRange> getRanges() const override;
/src/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DGenericMachineInstrs.h188 const MDNode *getRanges() const { in getRanges() function
189 return getMMO().getRanges(); in getRanges()
/src/contrib/llvm-project/llvm/include/llvm/Support/
H A DSourceMgr.h313 ArrayRef<std::pair<unsigned, unsigned>> getRanges() const { return Ranges; } in getRanges() function
/src/contrib/llvm-project/llvm/lib/CodeGen/
H A DLexicalScopes.cpp298 SmallVectorImpl<InsnRange> &InsnRanges = Scope->getRanges(); in getMachineBasicBlocks()
/src/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.h380 const SmallVectorImpl<RangeSpan> &getRanges() const { return CURanges; } in getRanges() function
H A DDebugHandlerBase.cpp127 for (const InsnRange &R : S->getRanges()) { in identifyScopeMarkers()
/src/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnostic.h1662 ArrayRef<CharSourceRange> getRanges() const { in getRanges() function
1729 ArrayRef<CharSourceRange> getRanges() const { return llvm::ArrayRef(Ranges); } in getRanges() function

123