HomeSort by: relevance | last modified time | path
    Searched refs:LCS (Results 1 - 12 of 12) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/llvm-cov/
CoverageSummaryInfo.cpp 63 for (const auto &LCS : getLineCoverageStats(CD)) {
64 if (!LCS.isMapped())
67 if (LCS.getExecutionCount())
SourceCoverageViewText.h 52 void renderLine(raw_ostream &OS, LineRef L, const LineCoverageStats &LCS,
56 const LineCoverageStats &LCS, unsigned ExpansionCol,
SourceCoverageViewHTML.h 61 void renderLine(raw_ostream &OS, LineRef L, const LineCoverageStats &LCS,
65 const LineCoverageStats &LCS, unsigned ExpansionCol,
CoverageExporterLcov.cpp 71 const coverage::LineCoverageStats &LCS = *LCI;
72 if (LCS.isMapped()) {
73 OS << "DA:" << LCS.getLine() << ',' << LCS.getExecutionCount() << '\n';
SourceCoverageViewText.cpp 97 const LineCoverageStats &LCS,
102 auto *WrappedSegment = LCS.getWrappedSegment();
103 CoverageSegmentArray Segments = LCS.getLineSegments();
207 const LineCoverageStats &LCS,
212 renderLine(OS, L, LCS, ExpansionCol, ViewDepth);
SourceCoverageView.h 203 const LineCoverageStats &LCS, unsigned ExpansionCol,
220 const LineCoverageStats &LCS,
251 bool shouldRenderRegionMarkers(const LineCoverageStats &LCS) const;
SourceCoverageViewHTML.cpp 498 const LineCoverageStats &LCS,
511 CoverageSegmentArray Segments = LCS.getLineSegments();
549 if (CheckIfUncovered(LCS.getWrappedSegment())) {
586 if (shouldRenderRegionMarkers(LCS)) {
592 if (CurSeg->Count == LCS.getExecutionCount())
643 const LineCoverageStats &LCS,
647 renderLine(OS, L, LCS, ExpansionCol, ViewDepth);
SourceCoverageView.cpp 118 const LineCoverageStats &LCS) const {
122 CoverageSegmentArray Segments = LCS.getLineSegments();
127 if (!CurSeg->IsRegionEntry || CurSeg->Count == LCS.getExecutionCount())
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
FunctionComparator.h 335 int cmpOperandBundlesSchema(const CallBase &LCS, const CallBase &RCS) const;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
FunctionComparator.cpp 179 int FunctionComparator::cmpOperandBundlesSchema(const CallBase &LCS,
181 assert(LCS.getOpcode() == RCS.getOpcode() && "Can't compare otherwise!");
184 cmpNumbers(LCS.getNumOperandBundles(), RCS.getNumOperandBundles()))
187 for (unsigned I = 0, E = LCS.getNumOperandBundles(); I != E; ++I) {
188 auto OBL = LCS.getOperandBundleAt(I);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
SampleProfile.cpp 325 const FunctionSamples *LCS = LHS.CalleeSamples;
327 assert(LCS && RCS && "Expect non-null FunctionSamples");
330 if (LCS->getBodySamples().size() != RCS->getBodySamples().size())
331 return LCS->getBodySamples().size() > RCS->getBodySamples().size();
334 return LCS->getGUID(LCS->getName()) < RCS->getGUID(RCS->getName());
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
RegionStore.cpp 1043 if (Optional<nonloc::LazyCompoundVal> LCS =
1046 const RegionStoreManager::SValListTy &Vals = RM.getInterestingValues(*LCS);
1301 if (Optional<nonloc::LazyCompoundVal> LCS =
1304 const SValListTy &Vals = getInterestingValues(*LCS);
2548 if (Optional<nonloc::LazyCompoundVal> LCS =
2551 const RegionStoreManager::SValListTy &Vals = RM.getInterestingValues(*LCS);

Completed in 66 milliseconds