Home
last modified time | relevance | path

Searched refs:Range (Results 1 – 25 of 277) sorted by relevance

12345678910>>...12

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/iterators/detail/segment_iterator/
H A Drange_segment_iterator.hpp32 template <typename Range, closure_selector Closure = closure<Range>::value>
35 typedef typename boost::range_iterator<Range>::type type;
38 template <typename Range>
39 struct range_iterator_type<Range, open>
41 typedef closing_iterator<Range> type;
46 template <typename Range, closure_selector Closure = closure<Range>::value>
49 static inline typename range_iterator_type<Range, Closure>::type
50 apply(Range& range) in apply()
56 template <typename Range>
57 struct range_iterator_begin<Range, open>
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/util/
H A Drange.hpp116 template <typename Range>
117 inline typename boost::range_reference<Range const>::type
118 front(Range const& rng) in front()
128 template <typename Range>
129 inline typename boost::range_reference<Range>::type
130 front(Range & rng) in front()
170 template <typename Range>
171 inline void clear(Range & rng) in clear()
174 geometry::traits::clear<Range>::apply(rng); in clear()
182 template <typename Range>
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/support/char_set/
H A Drange_functions.hpp18 template <typename Range>
20 is_valid(Range const& range) in is_valid()
26 template <typename Range>
28 includes(Range const& range, Range const& other) in includes()
34 template <typename Range>
36 includes(Range const& range, typename Range::value_type val) in includes()
42 template <typename Range>
44 can_merge(Range const& range, Range const& other) in can_merge()
49 typedef typename Range::value_type value_type; in can_merge()
63 template <typename Range>
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/views/
H A Dcloseable_view.hpp42 template <typename Range>
46 explicit inline closing_view(Range& r) in closing_view()
50 typedef closing_iterator<Range> iterator;
51 typedef closing_iterator<Range const> const_iterator;
59 Range& m_range;
80 template <typename Range, closure_selector Close>
86 template <typename Range>
87 struct closeable_view<Range, closed>
89 typedef identity_view<Range> type;
93 template <typename Range>
[all …]
H A Dreversible_view.hpp43 template <typename Range, iterate_direction Direction>
50 template <typename Range>
51 struct reversible_view<Range, iterate_forward>
53 typedef identity_view<Range> type;
57 template <typename Range>
58 struct reversible_view<Range, iterate_reverse>
61 typedef boost::reversed_range<Range> type;
64 typedef boost::range_detail::reverse_range<Range> type;
H A Didentity_view.hpp35 template <typename Range>
38 typedef typename boost::range_iterator<Range const>::type const_iterator;
39 typedef typename boost::range_iterator<Range>::type iterator;
41 explicit inline identity_view(Range& r) in identity_view()
51 Range& m_range;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/
H A Dappend.hpp71 template <typename Geometry, typename Range>
74 typedef typename boost::range_value<Range>::type point_type;
76 static inline void apply(Geometry& geometry, Range const& range, in apply()
79 for (typename boost::range_iterator<Range const>::type in apply()
112 template <typename Polygon, typename Range>
117 static inline void apply(Polygon& polygon, Range const& range, in apply()
122 append_range<ring_type, Range>::apply( in apply()
127 append_range<ring_type, Range>::apply( in apply()
167 template <typename Tag, typename Geometry, typename Range>
169 : detail::append::append_no_action<Geometry, Range>
[all …]
H A Dfor_each.hpp78 template <typename Range, typename Functor>
79 static inline void apply(Range& range, Functor& f) in apply()
88 for (typename boost::range_iterator<Range>::type in apply()
100 template <typename Range, typename Functor>
101 static inline void apply(Range& range, Functor& f) in apply()
105 is_const<Range>::value, in apply()
106 typename point_type<Range>::type in apply()
109 typedef typename boost::range_iterator<Range>::type iterator_type; in apply()
126 template <typename Range, typename Functor>
127 static inline void apply(Range& range, Functor& f) in apply()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/
H A Das_range.hpp34 template <typename GeometryTag, typename Geometry, typename Range, bool IsConst>
37 static inline typename add_const_if_c<IsConst, Range>::type& get( in get()
45 template <typename Geometry, typename Range, bool IsConst>
46 struct as_range<polygon_tag, Geometry, Range, IsConst>
48 static inline typename add_const_if_c<IsConst, Range>::type& get( in get()
69 template <typename Range, typename Geometry>
70 inline Range& as_range(Geometry& input) in as_range()
76 Range, in as_range()
88 template <typename Range, typename Geometry>
89 inline Range const& as_range(Geometry const& input) in as_range()
[all …]
H A Dnum_distinct_consecutive_points.hpp40 typename Range,
47 static inline std::size_t apply(Range const& range) in apply()
49 typedef typename boost::range_iterator<Range const>::type iterator; in apply()
75 template <typename Range, std::size_t MaximumNumber, typename NotEqualTo>
76 struct num_distinct_consecutive_points<Range, MaximumNumber, false, NotEqualTo>
78 static inline std::size_t apply(Range const& range) in apply()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/iterators/
H A Dclosing_iterator.hpp36 template <typename Range>
40 closing_iterator<Range>,
41 typename boost::range_value<Range>::type const,
45 typedef typename boost::range_difference<Range>::type difference_type;
48 explicit inline closing_iterator(Range& range) in closing_iterator()
57 explicit inline closing_iterator(Range& range, bool) in closing_iterator()
75 inline typename boost::range_value<Range>::type const& dereference() const in dereference()
80 inline difference_type distance_to(closing_iterator<Range> const& other) const in distance_to()
85 inline bool equal(closing_iterator<Range> const& other) const in equal()
137 Range* m_range;
[all …]
H A Dever_circling_iterator.hpp98 template <typename Range>
102 ever_circling_range_iterator<Range>,
103 typename boost::range_value<Range>::type const,
108 explicit inline ever_circling_range_iterator(Range& range) in ever_circling_range_iterator()
127 inline typename boost::range_value<Range>::type const& dereference() const in dereference()
132 inline difference_type distance_to(ever_circling_range_iterator<Range> const& other) const in distance_to()
137 inline bool equal(ever_circling_range_iterator<Range> const& other) const in equal()
194 Range* m_range;
195 typename boost::range_iterator<Range>::type m_iterator;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/core/
H A Dmutable_range.hpp36 template <typename Range>
39 typedef typename boost::remove_reference<Range>::type& type;
47 template <typename Range>
50 static inline void apply(typename rvalue_type<Range>::type range) in apply()
61 template <typename Range>
66 typename boost::remove_reference<Range>::type
69 static inline void apply(typename rvalue_type<Range>::type range, in apply()
81 template <typename Range>
84 static inline void apply(typename rvalue_type<Range>::type range, in apply()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/iostreams/detail/adapter/
H A Drange_adapter.hpp43 template<typename Mode, typename Range>
46 typedef typename Range::iterator iterator;
50 typedef typename Range::value_type char_type;
63 explicit range_adapter(const Range& rng);
74 template<typename Mode, typename Range>
75 range_adapter<Mode, Range>::range_adapter(const Range& rng) in range_adapter()
78 template<typename Mode, typename Range>
79 range_adapter<Mode, Range>::range_adapter(iterator first, iterator last) in range_adapter()
82 template<typename Mode, typename Range>
83 inline std::streamsize range_adapter<Mode, Range>::read in read()
[all …]
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/dnn/
H A Dshape_utils.hpp57 struct _Range : public cv::Range
59 _Range(const Range &r) : cv::Range(r) {} in _Range()
60 _Range(int start_, int size_ = 1) : cv::Range(start_, start_ + size_) {} in _Range()
65 Range ranges[CV_MAX_DIM]; in slice()
67 ranges[i] = Range::all(); in slice()
75 Range ranges[CV_MAX_DIM]; in slice()
77 ranges[i] = Range::all(); in slice()
86 Range ranges[CV_MAX_DIM]; in slice()
88 ranges[i] = Range::all(); in slice()
98 Range ranges[CV_MAX_DIM]; in slice()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/range/
H A Diterator_range_core.hpp773 template< typename Range >
774 inline iterator_range< BOOST_DEDUCED_TYPENAME range_iterator<Range>::type >
775 make_iterator_range( Range& r ) in make_iterator_range()
777 return iterator_range< BOOST_DEDUCED_TYPENAME range_iterator<Range>::type > in make_iterator_range()
807 template< class Range >
808 inline iterator_range< BOOST_DEDUCED_TYPENAME range_iterator<Range>::type >
809 make_range_impl( Range& r, in make_range_impl()
810 BOOST_DEDUCED_TYPENAME range_difference<Range>::type advance_begin, in make_range_impl()
811 BOOST_DEDUCED_TYPENAME range_difference<Range>::type advance_end ) in make_range_impl()
820 BOOST_DEDUCED_TYPENAME range_iterator<Range>::type in make_range_impl()
[all …]
H A Das_literal.hpp98 template< class Range >
99 inline iterator_range<BOOST_DEDUCED_TYPENAME range_iterator<Range>::type>
100 as_literal( Range& r ) in as_literal()
105 template< class Range >
106 inline iterator_range<BOOST_DEDUCED_TYPENAME range_iterator<const Range>::type>
107 as_literal( const Range& r ) in as_literal()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/overlay/
H A Dappend_no_dups_or_spikes.hpp66 template <typename Range, typename Point, typename SideStrategy, typename RobustPolicy>
67 inline void append_no_dups_or_spikes(Range& range, Point const& point, in append_no_dups_or_spikes()
85 traits::push_back<Range>::apply(range, point); in append_no_dups_or_spikes()
100 traits::resize<Range>::apply(range, boost::size(range) - 2); in append_no_dups_or_spikes()
101 traits::push_back<Range>::apply(range, point); in append_no_dups_or_spikes()
105 template <typename Range, typename SideStrategy, typename RobustPolicy>
106 inline void clean_closing_dups_and_spikes(Range& range, in clean_closing_dups_and_spikes()
113 geometry::closure<Range>::value in clean_closing_dups_and_spikes()
121 typedef typename boost::range_iterator<Range>::type iterator_type; in clean_closing_dups_and_spikes()
122 static bool const closed = geometry::closure<Range>::value == geometry::closed; in clean_closing_dups_and_spikes()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/closest_feature/
H A Dpoint_to_range.hpp36 typename Range,
43 typedef typename boost::range_iterator<Range const>::type iterator_type;
118 typename boost::range_value<Range>::type in apply()
126 Range const& range, in apply()
138 Range const& range, in apply()
148 template <typename Point, typename Range, typename Strategy>
149 class point_to_point_range<Point, Range, open, Strategy>
150 : point_to_point_range<Point, Range, closed, Strategy>
153 typedef point_to_point_range<Point, Range, closed, Strategy> base_type;
214 typename boost::range_value<Range>::type in apply()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/util/
H A Drange.hpp8 class Range { class
10 constexpr Range(T min_, T max_) in Range() function in mbgl::Range
18 bool operator==(const Range<T>& a, const Range<T>& b) { in operator ==()
23 bool operator!=(const Range<T>& a, const Range<T>& b) { in operator !=()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/fusion/algorithm/transformation/
H A Dinsert_range.hpp23 template <typename Sequence, typename Position, typename Range>
32 typedef joint_view<left_type, Range> left_insert_type;
37 template <typename Sequence, typename Position, typename Range>
39 inline typename result_of::insert_range<Sequence const, Position, Range const>::type
40 insert_range(Sequence const& seq, Position const& pos, Range const& range) in insert_range()
42 typedef result_of::insert_range<Sequence const, Position, Range const> result_of; in insert_range()
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/common/gen_mesh/
H A Dtest030.cpp105 …dstImgBGR_left(cv::Range(0, dstH_left), cv::Range(0, dstW_left - margin)).copyTo(dstImgBGR_stitch(… in test030()
106 …dstImgBGR_right(cv::Range(0, dstH_left), cv::Range(margin, dstW_right)).copyTo(dstImgBGR_stitch(cv… in test030()
H A Dtest029.cpp120 …dstImgBGR_left(cv::Range(0, dstH_left), cv::Range(0, dstW_left - margin)).copyTo(dstImgBGR_stitch(… in test029()
121 …dstImgBGR_right(cv::Range(0, dstH_left), cv::Range(margin, dstW_right)).copyTo(dstImgBGR_stitch(cv… in test029()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/
H A Dproperty_expression.hpp61 float interpolationFactor(const Range<float>& inputLevels, const float inputValue) const { in interpolationFactor()
68 … return z->interpolationFactor(Range<double> { inputLevels.min, inputLevels.max }, inputValue); in interpolationFactor()
76 Range<float> getCoveringStops(const float lower, const float upper) const { in getCoveringStops()
80 return Range<float>(0.0f, 0.0f); in getCoveringStops()
90 Range<T> evaluate(const Range<float>& zoomRange, const Feature& feature, T finalDefaultValue) { in evaluate()
91 return Range<T> { in evaluate()
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-armhf/include/opencv2/core/
H A Dcuda.inl.hpp247 return GpuMat(*this, Range(y, y+1), Range::all()); in row()
253 return GpuMat(*this, Range::all(), Range(x, x+1)); in col()
259 return GpuMat(*this, Range(startrow, endrow), Range::all()); in rowRange()
263 GpuMat GpuMat::rowRange(Range r) const in rowRange()
265 return GpuMat(*this, r, Range::all()); in rowRange()
271 return GpuMat(*this, Range::all(), Range(startcol, endcol)); in colRange()
275 GpuMat GpuMat::colRange(Range r) const in colRange()
277 return GpuMat(*this, Range::all(), r); in colRange()
281 GpuMat GpuMat::operator ()(Range rowRange_, Range colRange_) const in operator ()()

12345678910>>...12