Home
last modified time | relevance | path

Searched refs:right_it (Results 1 – 6 of 6) sorted by relevance

/third_party/boost/boost/polygon/
Dvoronoi_builder.hpp287 beach_line_iterator right_it = beach_line_.lower_bound(new_key); in process_site_event() local
291 beach_line_iterator left_it = right_it; in process_site_event()
296 if (right_it == beach_line_.end()) { in process_site_event()
305 right_it = insert_new_arc( in process_site_event()
306 site_arc, site_arc, site_event, right_it, output); in process_site_event()
313 site_event, right_it); in process_site_event()
314 } else if (right_it == beach_line_.begin()) { in process_site_event()
316 const site_event_type& site_arc = right_it->first.left_site(); in process_site_event()
320 site_arc, site_arc, site_event, right_it, output); in process_site_event()
330 activate_circle_event(site_event, right_it->first.left_site(), in process_site_event()
[all …]
/third_party/boost/boost/log/utility/functional/
Dbegins_with.hpp41 right_iterator right_it = right.begin(), right_end = right.end(); in operator ()() local
42 for (; left_it != left_end && right_it != right_end; ++left_it, ++right_it) in operator ()()
44 if (*left_it != *right_it) in operator ()()
47 return right_it == right_end; in operator ()()
Dends_with.hpp41 right_iterator right_it = right.rbegin(), right_end = right.rend(); in operator ()() local
42 for (; left_it != left_end && right_it != right_end; ++left_it, ++right_it) in operator ()()
44 if (*left_it != *right_it) in operator ()()
47 return right_it == right_end; in operator ()()
Dcontains.hpp48 right_iterator right_it = right.begin(); in operator ()() local
49 for (; right_it != right_end; ++left_it, ++right_it) in operator ()()
51 if (*left_it != *right_it) in operator ()()
54 if (right_it == right_end) in operator ()()
/third_party/boost/boost/geometry/strategies/agnostic/
Dhull_graham_andrew.hpp85 RangeIterator right_it = boost::begin(range); in apply() local
96 if (greater(*it, *right_it)) in apply()
98 right_it = it; in apply()
107 right = *right_it; in apply()
119 if (greater(*right_it, right)) in apply()
121 right = *right_it; in apply()
/third_party/boost/libs/range/test/
Diterator_range.cpp195 for (value_const_iterator right_it = first_val; right_it != last_val; ++right_it) in check_iterator_range_operators_impl() local
197 const std::string& rightValue = *right_it; in check_iterator_range_operators_impl()