Home
last modified time | relevance | path

Searched refs:Container (Results 1 – 25 of 64) sorted by relevance

123

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/support/
H A Dcontainer.hpp129 template <typename Container, typename Enable/* = void*/>
131 : detail::remove_value_const<typename Container::value_type>
180 template <typename Container, typename Enable/* = void*/>
183 typedef typename Container::iterator type;
186 template <typename Container>
187 struct container_iterator<Container&>
188 : container_iterator<Container>
191 template <typename Container>
192 struct container_iterator<Container const>
194 typedef typename Container::const_iterator type;
[all …]
H A Dattributes_fwd.hpp39 template <typename Container>
42 template <typename Container>
201 template <typename Container, typename Enable = void>
204 template <typename Container, typename Enable = void>
218 template <typename Container, typename ValueType, typename Attribute
224 template <typename Container, typename T, typename Enable = void>
227 template <typename Container, typename Enable = void>
230 template <typename Container, typename Enable = void>
237 template <typename Container, typename Enable = void>
240 template <typename Container, typename Enable = void>
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/qi/detail/
H A Dpass_container.hpp48 template <typename Container, typename ValueType, typename Attribute
60 template <typename Container, typename ValueType, typename Attribute
64 negate_weak_substitute_if_not<Sequence, Attribute, Container>
71 template <typename Container, typename ValueType, typename Attribute
77 Attribute, not_compatible_element<Container, ValueType, mpl::_1>
87 template <typename Container, typename ValueType, typename Attribute
90 Container, ValueType, Attribute, Sequence, true>
94 , not_compatible_element<Container, ValueType, mpl::_1, Sequence>
101 template <typename Container, typename ValueType, typename Attribute
103 struct pass_through_container_base<Container, ValueType, Attribute
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/geometries/
H A Dring.hpp61 template<typename, typename> class Container = std::vector,
64 class ring : public Container<Point, Allocator<Point> >
68 typedef Container<Point, Allocator<Point> > base_type;
116 template<typename, typename> class Container,
119 struct tag<model::ring<Point, ClockWise, Closed, Container, Allocator> >
129 template<typename, typename> class Container,
132 struct point_order<model::ring<Point, false, Closed, Container, Allocator> >
142 template<typename, typename> class Container,
145 struct point_order<model::ring<Point, true, Closed, Container, Allocator> >
154 template<typename, typename> class Container,
[all …]
H A Dmulti_linestring.hpp53 template<typename, typename> class Container = std::vector,
56 class multi_linestring : public Container<LineString, Allocator<LineString> >
65 typedef Container<LineString, Allocator<LineString> > base_type;
105 template<typename, typename> class Container,
108 struct tag< model::multi_linestring<LineString, Container, Allocator> >
H A Dmulti_polygon.hpp52 template<typename, typename> class Container = std::vector,
55 class multi_polygon : public Container<Polygon, Allocator<Polygon> >
64 typedef Container<Polygon, Allocator<Polygon> > base_type;
104 template<typename, typename> class Container,
107 struct tag< model::multi_polygon<Polygon, Container, Allocator> >
H A Dlinestring.hpp57 template<typename,typename> class Container = std::vector,
60 class linestring : public Container<Point, Allocator<Point> >
64 typedef Container<Point, Allocator<Point> > base_type;
110 template<typename,typename> class Container,
113 struct tag<model::linestring<Point, Container, Allocator> >
H A Dmulti_point.hpp56 template<typename, typename> class Container = std::vector,
59 class multi_point : public Container<Point, Allocator<Point> >
63 typedef Container<Point, Allocator<Point> > base_type;
110 template<typename, typename> class Container,
113 struct tag< model::multi_point<Point, Container, Allocator> >
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/index/
H A Dinserter.hpp22 template <class Container>
27 typedef Container container_type;
29 inline explicit insert_iterator(Container & c) in insert_iterator()
33 insert_iterator & operator=(typename Container::value_type const& value) in operator =()
55 Container * container;
70 template <typename Container>
71 insert_iterator<Container> inserter(Container & c) in inserter()
73 return insert_iterator<Container>(c); in inserter()
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/libcxx/include/
H A Dstack20 template <class T, class Container = deque<T>>
24 typedef Container container_type;
61 void swap(stack& c) noexcept(is_nothrow_swappable_v<Container>)
64 template<class Container>
65 stack(Container) -> stack<typename Container::value_type, Container>; // C++17
67 template<class Container, class Allocator>
68 stack(Container, Allocator) -> stack<typename Container::value_type, Container>; // C++17
70 template <class T, class Container>
71 bool operator==(const stack<T, Container>& x, const stack<T, Container>& y);
72 template <class T, class Container>
[all …]
H A Dqueue20 template <class T, class Container = deque<T>>
24 typedef Container container_type;
69 void swap(queue& q) noexcept(is_nothrow_swappable_v<Container>)
72 template<class Container>
73 queue(Container) -> queue<typename Container::value_type, Container>; // C++17
75 template<class Container, class Allocator>
76 queue(Container, Allocator) -> queue<typename Container::value_type, Container>; // C++17
78 template <class T, class Container>
79 bool operator==(const queue<T, Container>& x,const queue<T, Container>& y);
81 template <class T, class Container>
[all …]
H A Dspan63 template <class Container>
64 constexpr span(Container& cont);
65 template <class Container>
66 constexpr span(const Container& cont);
119 template<class Container>
120 span(Container&) -> span<typename Container::value_type>;
122 template<class Container>
123 span(const Container&) -> span<const typename Container::value_type>;
176 // is_array_v<Container> is false,
H A Diterator146 template <class Container>
150 Container* container;
152 typedef Container container_type;
158 explicit back_insert_iterator(Container& x);
159 back_insert_iterator& operator=(const typename Container::value_type& value);
165 template <class Container> back_insert_iterator<Container> back_inserter(Container& x);
167 template <class Container>
171 Container* container;
173 typedef Container container_type;
179 explicit front_insert_iterator(Container& x);
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/libcxx/include/
H A Dstack20 template <class T, class Container = deque<T>>
24 typedef Container container_type;
61 void swap(stack& c) noexcept(is_nothrow_swappable_v<Container>)
64 template<class Container>
65 stack(Container) -> stack<typename Container::value_type, Container>; // C++17
67 template<class Container, class Allocator>
68 stack(Container, Allocator) -> stack<typename Container::value_type, Container>; // C++17
70 template <class T, class Container>
71 bool operator==(const stack<T, Container>& x, const stack<T, Container>& y);
72 template <class T, class Container>
[all …]
H A Dqueue20 template <class T, class Container = deque<T>>
24 typedef Container container_type;
69 void swap(queue& q) noexcept(is_nothrow_swappable_v<Container>)
72 template<class Container>
73 queue(Container) -> queue<typename Container::value_type, Container>; // C++17
75 template<class Container, class Allocator>
76 queue(Container, Allocator) -> queue<typename Container::value_type, Container>; // C++17
78 template <class T, class Container>
79 bool operator==(const queue<T, Container>& x,const queue<T, Container>& y);
81 template <class T, class Container>
[all …]
H A Dspan63 template <class Container>
64 constexpr span(Container& cont);
65 template <class Container>
66 constexpr span(const Container& cont);
119 template<class Container>
120 span(Container&) -> span<typename Container::value_type>;
122 template<class Container>
123 span(const Container&) -> span<const typename Container::value_type>;
176 // is_array_v<Container> is false,
H A Diterator146 template <class Container>
150 Container* container;
152 typedef Container container_type;
158 explicit back_insert_iterator(Container& x);
159 back_insert_iterator& operator=(const typename Container::value_type& value);
165 template <class Container> back_insert_iterator<Container> back_inserter(Container& x);
167 template <class Container>
171 Container* container;
173 typedef Container container_type;
179 explicit front_insert_iterator(Container& x);
[all …]
/OK3568_Linux_fs/external/rkupdate/
H A DProperty.hpp40 template<typename Container, typename ValueType, int nPropType>
51 void setContainer(Container* cObject) in setContainer()
56 void setter(void (Container::*pSet)(ValueType value)) in setter()
64 void getter(ValueType (Container::*pGet)()) in getter()
89 Container* m_cObject;//-- Pointer to the module that contain the property --
90 void (Container::*Set)(ValueType value);//-- Pointer to set member function --
91 ValueType (Container::*Get)();//-- Pointer to get member function --
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/
H A Dtokenizer.hpp57 template <typename Container>
58 tokenizer(const Container& c) in tokenizer()
61 template <typename Container>
62 tokenizer(const Container& c,const TokenizerFunc& f) in tokenizer()
75 template <typename Container>
76 void assign(const Container& c){ in assign()
81 template <typename Container>
82 void assign(const Container& c, const TokenizerFunc& f){ in assign()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/util/
H A Dstd.hpp10 template <typename Container, typename ForwardIterator, typename Predicate>
11 void erase_if(Container &container, ForwardIterator it, Predicate pred) { in erase_if()
21 template <typename Container, typename Predicate>
22 void erase_if(Container &container, Predicate pred) { in erase_if()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/range/detail/
H A Dmsvc_has_iterator_workaround.hpp33 template <class Container
80 template <class Container, class NextPolicies>
81 struct has_iterator< ::boost::python::iterator<Container, NextPolicies> >
85 template <class Container, class NextPolicies>
86 struct has_iterator< ::boost::python::iterator<Container, NextPolicies> const>
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/geometry/0.9.3/include/mapbox/geometry/
H A Dfor_each_point.hpp15 template <typename Container, typename F>
16 auto for_each_point(Container&& container, F&& f)
35 template <typename Container, typename F>
36 auto for_each_point(Container&& container, F&& f) in for_each_point()
/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 Dturn_info.hpp81 typename Container = boost::array<Operation, 2>
88 typedef Container container_type;
101 Container operations;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/util/
H A Drange.hpp374 template <class Container>
379 typedef Container container_type;
381 explicit back_insert_iterator(Container & c) in back_insert_iterator()
385 back_insert_iterator & operator=(typename Container::value_type const& value) in operator =()
407 Container * container;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/algorithm/
H A Dcovered_by_children.hpp31 template <typename Container>
32 bool coveredByChildren(const UnwrappedTileID& id, const Container& container) { in coveredByChildren()

123