Home
last modified time | relevance | path

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

12345678910>>...227

/third_party/boost/libs/algorithm/test/
Diterator_test.hpp24 template <typename It>
28 typedef typename std::iterator_traits<It>::value_type value_type;
29 typedef typename std::iterator_traits<It>::difference_type difference_type;
30 typedef It pointer;
31 typedef typename std::iterator_traits<It>::reference reference;
33 BOOST_CXX14_CONSTEXPR It base() const {return it_;} in base()
36 BOOST_CXX14_CONSTEXPR explicit input_iterator(It it) : it_(it) {} in input_iterator()
53 It it_;
73 template <typename It>
77 typedef typename std::iterator_traits<It>::value_type value_type;
[all …]
/third_party/boost/boost/test/tools/detail/
Dit_pair.hpp32 template<typename It>
34 typedef It const_iterator;
35 typedef typename std::iterator_traits<It>::value_type value_type;
37 it_pair( It const& b, It const& e ) : m_begin( b ), m_size( 0 ) in it_pair()
39 It tmp = b; in it_pair()
43 It begin() const { return m_begin; } in begin()
44 It end() const { return m_begin + m_size; } in end()
48 It m_begin;
54 template<typename It>
55 it_pair<It>
[all …]
/third_party/boost/boost/algorithm/string/detail/
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 …]
/third_party/boost/libs/algorithm/string/example/
Drle_example.cpp58 for(input_iterator_type It=Begin; It!=End;) in operator ()() local
60 input_iterator_type It2=It++; in operator ()()
62 if ( It==End || Cnt>=(std::numeric_limits<value_type>::max)() ) in operator ()()
64 return result_type( MStart, It ); in operator ()()
67 if ( *It==*It2 ) in operator ()()
83 return result_type( MStart, It ); in operator ()()
150 for(input_iterator_type It=Begin; It!=End; It++) in operator ()() local
152 if( *It==repeat_mark<value_type>() ) in operator ()()
155 input_iterator_type It2=It++; in operator ()()
157 if ( It==End ) break; in operator ()()
[all …]
/third_party/json/include/nlohmann/detail/iterators/
Diterator_traits.hpp12 template<typename It, typename = void>
15 template<typename It>
17 It,
18 void_t<typename It::difference_type, typename It::value_type, typename It::pointer,
19 typename It::reference, typename It::iterator_category >>
21 using difference_type = typename It::difference_type;
22 using value_type = typename It::value_type;
23 using pointer = typename It::pointer;
24 using reference = typename It::reference;
25 using iterator_category = typename It::iterator_category;
/third_party/boost/libs/core/test/
Ddetail_iterator_test.cpp77 typedef ::iterator<C,T,D,P,R> It; in main() typedef
79 BOOST_TEST_TRAIT_TRUE((is_same<boost::detail::iterator_traits<It>::iterator_category,C>)); in main()
80 BOOST_TEST_TRAIT_TRUE((is_same<boost::detail::iterator_traits<It>::value_type,T>)); in main()
81 BOOST_TEST_TRAIT_TRUE((is_same<boost::detail::iterator_traits<It>::difference_type,D>)); in main()
82 BOOST_TEST_TRAIT_TRUE((is_same<boost::detail::iterator_traits<It>::pointer,P>)); in main()
83 BOOST_TEST_TRAIT_TRUE((is_same<boost::detail::iterator_traits<It>::reference,R>)); in main()
95 typedef T* It; in main() typedef
97 …BOOST_TEST_TRAIT_TRUE((is_same<boost::detail::iterator_traits<It>::iterator_category,std::random_a… in main()
98 BOOST_TEST_TRAIT_TRUE((is_same<boost::detail::iterator_traits<It>::value_type,T>)); in main()
99 …BOOST_TEST_TRAIT_TRUE((is_same<boost::detail::iterator_traits<It>::difference_type,std::ptrdiff_t>… in main()
[all …]
/third_party/boost/boost/fusion/iterator/detail/
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 …]
/third_party/boost/boost/fusion/iterator/
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 …]
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()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DR600OptimizeVectorRegisters.cpp168 for (DenseMap<unsigned, unsigned>::iterator It = ToMerge->RegToChan.begin(), in tryMergeVector() local
169 E = ToMerge->RegToChan.end(); It != E; ++It) { in tryMergeVector()
171 Untouched->RegToChan.find((*It).first); in tryMergeVector()
174 ((*It).second, (*PosInUntouched).second)); in tryMergeVector()
180 ((*It).second, Untouched->UndefReg[CurrentUndexIdx++])); in tryMergeVector()
208 for (DenseMap<unsigned, unsigned>::iterator It = RSI->RegToChan.begin(), in RebuildVector() local
209 E = RSI->RegToChan.end(); It != E; ++It) { in RebuildVector()
211 unsigned SubReg = (*It).first; in RebuildVector()
212 unsigned Swizzle = (*It).second; in RebuildVector()
235 for (MachineRegisterInfo::use_instr_iterator It = MRI->use_instr_begin(Reg), in RebuildVector() local
[all …]
DAMDILCFGStructurizer.cpp211 int countActiveBlock(MBBVector::const_iterator It,
346 MBBInfoMap::const_iterator It = BlockInfoMap.find(MBB); in getSCCNum() local
347 if (It == BlockInfoMap.end()) in getSCCNum()
349 return (*It).second->SccNum; in getSCCNum()
354 LoopLandInfoMap::const_iterator It = LLInfoMap.find(LoopRep); in getLoopLandInfo() local
355 if (It == LLInfoMap.end()) in getLoopLandInfo()
357 return (*It).second; in getLoopLandInfo()
369 MBBInfoMap::const_iterator It = BlockInfoMap.find(MBB); in isRetiredBlock() local
370 if (It == BlockInfoMap.end()) in isRetiredBlock()
372 return (*It).second->IsRetired; in isRetiredBlock()
[all …]
/third_party/boost/boost/iterator/
Dis_lvalue_iterator.hpp63 template <class It>
66 static It& x;
89 template <class It>
98 template <class It>
106 template <class It>
114 template <class It>
124 template <class It>
127 BOOST_DEDUCED_TYPENAME std::iterator_traits<It>::value_type const
128 >::template rebind<It>
131 template <class It>
[all …]
Dis_readable_iterator.hpp35 template <class It>
38 static It& x;
59 template <class It>
68 template <class It>
76 template <class It>
84 template <class It>
94 template <class It>
97 BOOST_DEDUCED_TYPENAME std::iterator_traits<It>::value_type const
98 >::template rebind<It>
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/GSYM/
DRange.cpp24 auto It = llvm::upper_bound(Ranges, Range); in insert() local
25 auto It2 = It; in insert()
28 if (It != It2) { in insert()
30 It = Ranges.erase(It, It2); in insert()
32 if (It != Ranges.begin() && Range.Start < It[-1].End) in insert()
33 It[-1].End = std::max(It[-1].End, Range.End); in insert()
35 Ranges.insert(It, Range); in insert()
39 auto It = std::partition_point( in contains() local
42 return It != Ranges.begin() && Addr < It[-1].End; in contains()
48 auto It = std::partition_point( in contains() local
[all …]
/third_party/boost/boost/move/detail/
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 …]
/third_party/boost/boost/intrusive/detail/
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 …]
/third_party/boost/boost/fusion/view/zip_view/detail/
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()
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()
/third_party/typescript/tests/baselines/reference/
DcontrolFlowInstanceOfGuardPrimitives.types11 console.log("Aha!! It's a Date in " + thing.getFullYear());
12 >console.log("Aha!! It's a Date in " + thing.getFullYear()) : void
16 >"Aha!! It's a Date in " + thing.getFullYear() : string
17 >"Aha!! It's a Date in " : "Aha!! It's a Date in "
29 console.log("Aha!! It's a string of length " + thing.length);
30 >console.log("Aha!! It's a string of length " + thing.length) : void
34 >"Aha!! It's a string of length " + thing.length : string
35 >"Aha!! It's a string of length " : "Aha!! It's a string of length "
41 console.log("Aha!! It's the number " + thing.toPrecision(3));
42 >console.log("Aha!! It's the number " + thing.toPrecision(3)) : void
[all …]
/third_party/boost/boost/fusion/algorithm/iteration/detail/preprocessed/
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 …]
Dreverse_iter_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_iter_fold<0,It,State,F
37 template<int SeqSize, typename It, typename State, typename F>
38 struct result_of_it_reverse_iter_fold<SeqSize,It,State,F
55 , typename result_of::prior<It>::type
59 It const&
65 template<typename It, typename State, typename F>
69 , It
73 it_reverse_iter_fold(mpl::int_<0>, It const&, typename State::type state, F&) in it_reverse_iter_fold()
[all …]
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 …]
Diter_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_iter_fold<0,It,State,F
37 template<int SeqSize, typename It, typename State, typename F>
38 struct result_of_it_iter_fold<SeqSize,It,State,F
55 , typename result_of::next<It>::type
59 It const&
65 template<typename It, typename State, typename F>
69 , It
73 it_iter_fold(mpl::int_<0>, It const&, typename State::type state, F&) in it_iter_fold()
[all …]
/third_party/boost/boost/geometry/algorithms/detail/buffer/
Dpiece_border.hpp37 template <typename It, typename T, typename Compare>
38 inline bool get_range_around(It begin, It end, T const& value, Compare const& compare, It& lower, I… in get_range_around()
356 template <typename It, typename Box>
357 void expand_envelope(Box& envelope, It begin, It end) const in expand_envelope()
364 for (It it = begin; it != end; ++it) in expand_envelope()
415 template <typename It, typename SideStrategy>
416 …bool is_convex(Point& previous, Point& current, It begin, It end, SideStrategy const& strategy) co… in is_convex()
418 for (It it = begin; it != end; ++it) in is_convex()
461 template <typename It>
462 void check_monotonicity(It begin, It end) in check_monotonicity()
[all …]
/third_party/boost/boost/fusion/container/map/detail/cpp03/
Dderef_impl.hpp23 template <typename It>
29 is_const<typename It::seq_type>
30 , typename It::seq_type::storage_type const
31 , typename It::seq_type::storage_type
33 , typename It::index
39 call(It const& it) in call()
41 return fusion::at<typename It::index>(it.seq->get_data()); in call()

12345678910>>...227