Home | History | Annotate | Download | only in llvm-cov

Lines Matching refs:Region

28   coverage::CounterMappingRegion Region;
31 ExpansionView(const coverage::CounterMappingRegion &Region,
33 : Region(Region), View(std::move(View)) {}
35 : Region(std::move(RHS.Region)), View(std::move(RHS.View)) {}
37 Region = std::move(RHS.Region);
42 unsigned getLine() const { return Region.LineStart; }
43 unsigned getStartCol() const { return Region.ColumnStart; }
44 unsigned getEndCol() const { return Region.ColumnEnd; }
47 return LHS.Region.startLoc() < RHS.Region.startLoc();
93 // The max of all region starts is the most interesting value.
126 /// \brief Render all the region's execution counts on a line.
143 void addExpansion(const coverage::CounterMappingRegion &Region,
145 ExpansionSubViews.emplace_back(Region, std::move(View));