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

  /external/chromium_org/third_party/webrtc/modules/desktop_capture/
desktop_region.h 45 typedef std::vector<RowSpan> RowSpanSet;
56 RowSpanSet spans;
86 RowSpanSet::const_iterator row_span_;
146 static void IntersectRows(const RowSpanSet& set1,
147 const RowSpanSet& set2,
148 RowSpanSet* output);
150 static void SubtractRows(const RowSpanSet& set_a,
151 const RowSpanSet& set_b,
152 RowSpanSet* output);
desktop_region.cc 226 void DesktopRegion::IntersectRows(const RowSpanSet& set1,
227 const RowSpanSet& set2,
228 RowSpanSet* output) {
229 RowSpanSet::const_iterator it1 = set1.begin();
230 RowSpanSet::const_iterator end1 = set1.end();
231 RowSpanSet::const_iterator it2 = set2.begin();
232 RowSpanSet::const_iterator end2 = set2.end();
336 RowSpanSet new_spans;
381 for (RowSpanSet::iterator span = row->spans.begin();
421 RowSpanSet::iterator start
    [all...]

Completed in 59 milliseconds