Home
last modified time | relevance | path

Searched refs:It (Results 1 – 25 of 4291) sorted by relevance

12345678910>>...172

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/algorithm/string/detail/
H A Dtrim.hpp32 for( ForwardIteratorT It=InBegin; It!=InEnd; ++It ) in trim_end_iter_select() local
34 if ( !IsSpace(*It) ) in trim_end_iter_select()
36 TrimIt=It; in trim_end_iter_select()
51 for( ForwardIteratorT It=InEnd; It!=InBegin; ) in trim_end_iter_select() local
53 if ( !IsSpace(*(--It)) ) in trim_end_iter_select()
54 return ++It; in trim_end_iter_select()
66 ForwardIteratorT It=InBegin; in trim_begin() local
67 for(; It!=InEnd; ++It ) in trim_begin()
69 if (!IsSpace(*It)) in trim_begin()
70 return It; in trim_begin()
[all …]
H A Dreplace_storage.hpp71 …ForwardIteratorT It=::boost::algorithm::detail::move_from_storage( Storage, InsertIt, SegmentBegin… in operator ()() local
80 if( It==SegmentBegin ) in operator ()()
88 return std::copy( SegmentBegin, SegmentEnd, It ); in operator ()()
94 while( It!=SegmentEnd ) in operator ()()
97 Storage.push_back( *It ); in operator ()()
99 *It=Storage.front(); in operator ()()
103 ++It; in operator ()()
106 return It; in operator ()()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/ext/pb_ds/
H A Dassoc_container.hpp252 template<typename It>
253 cc_hash_table(It first, It last) in cc_hash_table()
259 template<typename It>
260 cc_hash_table(It first, It last, const hash_fn& h) in cc_hash_table()
270 template<typename It>
271 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e) in cc_hash_table()
282 template<typename It>
283 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e, in cc_hash_table()
296 template<typename It>
297 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e, in cc_hash_table()
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/ext/pb_ds/
H A Dassoc_container.hpp252 template<typename It>
253 cc_hash_table(It first, It last) in cc_hash_table()
259 template<typename It>
260 cc_hash_table(It first, It last, const hash_fn& h) in cc_hash_table()
270 template<typename It>
271 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e) in cc_hash_table()
282 template<typename It>
283 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e, in cc_hash_table()
296 template<typename It>
297 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e, in cc_hash_table()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/fusion/iterator/detail/
H A Dsegmented_iterator.hpp46 template <typename It>
51 typename It::context_type::car_type::begin_type
56 static type call(It const& it) in call()
66 template <typename It>
71 typename It::context_type::car_type::begin_type
76 static type call(It const& it) in call()
86 template <typename It>
88 : result_of::key_of<typename It::context_type::car_type::begin_type>
95 template <typename It>
97 : result_of::value_of<typename It::context_type::car_type::begin_type>
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/fusion/iterator/
H A Dbasic_iterator.hpp48 template <typename It>
50 : extension::value_of_impl<Tag>::template apply<It>
53 template <typename It>
55 : extension::deref_impl<Tag>::template apply<It>
58 template <typename It>
60 : extension::value_of_data_impl<Tag>::template apply<It>
63 template <typename It>
65 : extension::key_of_impl<Tag>::template apply<It>
68 template <typename It>
70 : extension::deref_data_impl<Tag>::template apply<It>
[all …]
H A Dderef_data.hpp26 template <typename It>
28 : It::template deref_data<It>
35 template <typename It>
37 : extension::deref_data_impl<typename traits::tag_of<It>::type>::
38 template apply<It>
42 template <typename It>
44 inline typename result_of::deref_data<It>::type
45 deref_data(It const& it) in deref_data()
47 return result_of::deref_data<It>::call(it); in deref_data()
H A Dkey_of.hpp26 template <typename It>
28 : It::template key_of<It>
35 template <typename It>
37 : extension::key_of_impl<typename traits::tag_of<It>::type>::
38 template apply<It>
H A Dvalue_of_data.hpp26 template <typename It>
28 : It::template value_of_data<It>
35 template <typename It>
37 : extension::value_of_data_impl<typename traits::tag_of<It>::type>::
38 template apply<It>
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/move/detail/
H A Dreverse_iterator.hpp31 template<class It>
35 typedef typename boost::movelib::iterator_traits<It>::pointer pointer;
36 typedef typename boost::movelib::iterator_traits<It>::reference reference;
37 typedef typename boost::movelib::iterator_traits<It>::difference_type difference_type;
38 typedef typename boost::movelib::iterator_traits<It>::iterator_category iterator_category;
39 typedef typename boost::movelib::iterator_traits<It>::value_type value_type;
42 typedef It iterator_type;
48 explicit reverse_iterator(It r) in reverse_iterator()
58 , typename boost::move_detail::enable_if_convertible<OtherIt, It>::type* =0 in reverse_iterator()
67 typename boost::move_detail::enable_if_convertible<OtherIt, It, reverse_iterator &>::type
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/intrusive/detail/
H A Dreverse_iterator.hpp31 template<class It>
35 typedef typename boost::intrusive::iterator_traits<It>::pointer pointer;
36 typedef typename boost::intrusive::iterator_traits<It>::reference reference;
37 typedef typename boost::intrusive::iterator_traits<It>::difference_type difference_type;
38 typedef typename boost::intrusive::iterator_traits<It>::iterator_category iterator_category;
39 typedef typename boost::intrusive::iterator_traits<It>::value_type value_type;
42 typedef It iterator_type;
48 explicit reverse_iterator(It r) in reverse_iterator()
58 , typename boost::intrusive::detail::enable_if_convertible<OtherIt, It>::type* =0 in reverse_iterator()
67 typename boost::intrusive::detail::enable_if_convertible<OtherIt, It, reverse_iterator &>::type
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/fusion/algorithm/iteration/detail/preprocessed/
H A Dreverse_fold.hpp19 template<int SeqSize, typename It, typename State, typename F, typename = void
27 template<typename It, typename State, typename F>
28 struct result_of_it_reverse_fold<0,It,State,F
37 template<int SeqSize, typename It, typename State, typename F>
38 struct result_of_it_reverse_fold<SeqSize,It,State,F
55 , typename result_of::prior<It>::type
59 typename fusion::result_of::deref<It const>::type
65 template<typename It, typename State, typename F>
69 , It
73 it_reverse_fold(mpl::int_<0>, It const&, typename State::type state, F&) in it_reverse_fold()
[all …]
H A Dfold.hpp20 template<int SeqSize, typename It, typename State, typename F, typename = void
28 template<typename It, typename State, typename F>
29 struct result_of_it_fold<0,It,State,F
38 template<int SeqSize, typename It, typename State, typename F>
39 struct result_of_it_fold<SeqSize,It,State,F
56 , typename result_of::next<It>::type
60 typename fusion::result_of::deref<It const>::type
66 template<typename It, typename State, typename F>
70 , It
74 it_fold(mpl::int_<0>, It const&, typename State::type state, F&) in it_fold()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/fusion/view/zip_view/detail/
H A Dadvance_impl.hpp29 template<typename N1, typename It>
30 struct result<poly_advance<N1>(It)>
32 typedef typename remove_reference<It>::type it;
36 template<typename It>
38 typename result<poly_advance(It)>::type
39 operator()(const It& it) const in operator ()()
54 template<typename It, typename N>
58 … typename result_of::transform<typename It::iterators, detail::poly_advance<N> >::type> type;
62 call(It const& it) in call()
H A Dderef_impl.hpp34 template<typename It>
35 struct result<poly_deref(It)>
38 typename remove_reference<It>::type>::type it;
45 template<typename It>
47 typename result<poly_deref(It)>::type
48 operator()(const It& it) const in operator ()()
69 template<typename It>
73 … typename result_of::transform<typename It::iterators, detail::poly_deref>::type>::type type;
77 call(It const& it) in call()
H A Dvalue_of_impl.hpp33 template<typename It>
34 struct result<poly_value_of(It)>
35 : mpl::eval_if<is_same<It, unused_type>,
37 result_of::value_of<It> >
42 template<typename It>
44 typename result<poly_value_of(It)>::type
45 operator()(It&&) const;
/OK3568_Linux_fs/kernel/Documentation/ABI/testing/
H A Dsysfs-class-watchdog5 It is a read only file. It contains status of the watchdog
6 device at boot. It is equivalent to WDIOC_GETBOOTSTATUS of
13 It is a read only file. It contains identity string of
20 It is a read/write file. While reading, it gives '1'
32 It is a read only file. It gives active/inactive status of
39 It is a read only file. It contains watchdog device's
40 internal status bits. It is equivalent to WDIOC_GETSTATUS
47 It is a read only file. It contains value of time left for
48 reset generation. It is equivalent to WDIOC_GETTIMELEFT of
55 It is a read only file. It is read to know about current
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/ext/pb_ds/detail/ov_tree_map_/
H A Dconstructors_destructor_fn_imps.hpp99 template<typename It>
102 copy_from_range(It first_it, It last_it) in copy_from_range()
120 template<typename It>
123 copy_from_ordered_range(It first_it, It last_it) in copy_from_ordered_range()
131 It source_it = first_it; in copy_from_ordered_range()
132 It source_end_it = last_it; in copy_from_ordered_range()
156 template<typename It>
159 copy_from_ordered_range(It first_it, It last_it, It other_first_it, in copy_from_ordered_range()
160 It other_last_it) in copy_from_ordered_range()
169 It source_it = first_it; in copy_from_ordered_range()
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/ext/pb_ds/detail/ov_tree_map_/
H A Dconstructors_destructor_fn_imps.hpp99 template<typename It>
102 copy_from_range(It first_it, It last_it) in copy_from_range()
120 template<typename It>
123 copy_from_ordered_range(It first_it, It last_it) in copy_from_ordered_range()
131 It source_it = first_it; in copy_from_ordered_range()
132 It source_end_it = last_it; in copy_from_ordered_range()
156 template<typename It>
159 copy_from_ordered_range(It first_it, It last_it, It other_first_it, in copy_from_ordered_range()
160 It other_last_it) in copy_from_ordered_range()
169 It source_it = first_it; in copy_from_ordered_range()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/locale/
H A Dutf.hpp351 template<typename It>
352 static code_point decode(It &current,It last) in decode()
369 template<typename It>
370 static code_point decode_valid(It &current) in decode_valid()
385 template<typename It>
386 static It encode(code_point u,It out) in encode()
419 template<typename It>
420 static code_point decode_valid(It &current) in decode_valid()
425 template<typename It>
426 static code_point decode(It &current,It last) in decode()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/fusion/algorithm/query/detail/
H A Dany.hpp65 template <typename It, typename F>
67 static bool call(It const& it, F f) in call()
81 template <typename It, typename F>
83 static bool call(It const& it, F f) in call()
95 template <typename It, typename F>
97 static bool call(It const& it, F f) in call()
108 template <typename It, typename F>
110 static bool call(It const& it, F f) in call()
119 template <typename It, typename F>
121 static bool call(It const&, F) in call()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/fusion/algorithm/iteration/detail/
H A Dfold.hpp65 template<int SeqSize, typename It, typename State, typename F, typename = void in BOOST_FUSION_FOLD_IMPL_ENABLER()
81 template<typename It, typename State, typename F> in BOOST_FUSION_FOLD_IMPL_ENABLER()
82 struct BOOST_PP_CAT(result_of_it_,BOOST_FUSION_FOLD_NAME)<0,It,State,F in BOOST_FUSION_FOLD_IMPL_ENABLER()
99 template<int SeqSize, typename It, typename State, typename F> in BOOST_FUSION_FOLD_IMPL_ENABLER()
100 struct BOOST_PP_CAT(result_of_it_,BOOST_FUSION_FOLD_NAME)<SeqSize,It,State,F in BOOST_FUSION_FOLD_IMPL_ENABLER()
135 , typename result_of::BOOST_FUSION_FOLD_IMPL_NEXT_IT_FUNCTION<It>::type in BOOST_FUSION_FOLD_IMPL_ENABLER()
139 BOOST_FUSION_FOLD_IMPL_INVOKE_IT_META_TRANSFORM(It const) in BOOST_FUSION_FOLD_IMPL_ENABLER()
146 template<typename It, typename State, typename F> in BOOST_FUSION_FOLD_IMPL_ENABLER()
150 , It in BOOST_FUSION_FOLD_IMPL_ENABLER()
154 … BOOST_PP_CAT(it_,BOOST_FUSION_FOLD_NAME)(mpl::int_<0>, It const&, typename State::type state, F&) in BOOST_FUSION_FOLD_IMPL_ENABLER()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/relate/
H A Dtopology_check.hpp224 template <typename It, typename Point>
225 static inline std::size_t count_equal(It first, It last, Point const& point) in count_equal()
227 std::pair<It, It> rng = std::equal_range(first, last, point, relate::less()); in count_equal()
231 template <typename It>
232 static inline bool find_odd_count(It first, It last) in find_odd_count()
251 template <typename It, typename Visitor>
252 static void for_each_boundary_point(It first, It last, Visitor& visitor) in for_each_boundary_point()
258 It prev = first; in for_each_boundary_point()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/util/
H A Drange.hpp218 template <typename It,
222 typename std::iterator_traits<It>::value_type &&,
227 static inline OutIt apply(It first, It last, OutIt out) in apply()
233 template <typename It, typename OutIt>
234 struct copy_or_move_impl<It, OutIt, false>
236 static inline OutIt apply(It first, It last, OutIt out) in apply()
242 template <typename It, typename OutIt>
243 inline OutIt copy_or_move(It first, It last, OutIt out) in copy_or_move()
245 return copy_or_move_impl<It, OutIt>::apply(first, last, out); in copy_or_move()
250 template <typename It, typename OutIt>
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/functional/hash/
H A Dhash_fwd.hpp27 template <class It> std::size_t hash_range(It, It);
28 template <class It> void hash_range(std::size_t&, It, It);

12345678910>>...172