HomeSort by relevance Sort by last modified time
    Searched refs:IsRegionEntry (Results 1 - 4 of 4) sorted by null

  /external/llvm/include/llvm/ProfileData/
CoverageMapping.h 339 bool IsRegionEntry;
341 CoverageSegment(unsigned Line, unsigned Col, bool IsRegionEntry)
343 IsRegionEntry(IsRegionEntry) {}
346 bool IsRegionEntry)
348 IsRegionEntry(IsRegionEntry) {}
351 return std::tie(L.Line, L.Col, L.Count, L.HasCount, L.IsRegionEntry) ==
352 std::tie(R.Line, R.Col, R.Count, R.HasCount, R.IsRegionEntry);
  /external/llvm/tools/llvm-cov/
SourceCoverageView.cpp 119 if (!S->IsRegionEntry)
138 << (S->IsRegionEntry ? "\n" : " (pop)\n");
189 if (S->HasCount && S->IsRegionEntry)
  /external/llvm/lib/ProfileData/
CoverageMapping.cpp 270 Segments.emplace_back(Line, Col, /*IsRegionEntry=*/false);
274 void startSegment(unsigned Line, unsigned Col, bool IsRegionEntry,
277 Segments.emplace_back(Line, Col, IsRegionEntry);
281 Segments.emplace_back(Line, Col, IsRegionEntry);
  /external/llvm/unittests/ProfileData/
CoverageMappingTest.cpp 45 *os << (S.IsRegionEntry ? "true" : "false") << ")";

Completed in 79 milliseconds