Home
last modified time | relevance | path

Searched refs:Derived (Results 1 – 25 of 63) sorted by relevance

123

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/type_index/
H A Dtype_index_facade.hpp65 template <class Derived, class TypeInfo>
69 BOOST_CXX14_CONSTEXPR const Derived & derived() const BOOST_NOEXCEPT { in derived()
70 return *static_cast<Derived const*>(this); in derived()
90 inline bool equal(const Derived& rhs) const BOOST_NOEXCEPT { in equal()
98 inline bool before(const Derived& rhs) const BOOST_NOEXCEPT { in before()
131 static Derived type_id() BOOST_NOEXCEPT;
141 static Derived type_id_with_cvr() BOOST_NOEXCEPT;
150 static Derived type_id_runtime(const T& variable) BOOST_NOEXCEPT;
157 template <class Derived, class TypeInfo>
158 …nline bool operator == (const type_index_facade<Derived, TypeInfo>& lhs, const type_index_facade<D… in operator ==() argument
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/
H A Dvector-builder.h111 template<typename T, typename Shape, typename Derived>
125 bool operator == (const Derived &) const;
126 bool operator != (const Derived &x) const { return !operator == (x); }
145 Derived *derived () { return static_cast<Derived *> (this); } in derived()
146 const Derived *derived () const;
153 template<typename T, typename Shape, typename Derived>
154 inline const Derived *
155 vector_builder<T, Shape, Derived>::derived () const in derived()
157 return static_cast<const Derived *> (this); in derived()
160 template<typename T, typename Shape, typename Derived>
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/
H A Dvector-builder.h111 template<typename T, typename Shape, typename Derived>
125 bool operator == (const Derived &) const;
126 bool operator != (const Derived &x) const { return !operator == (x); }
145 Derived *derived () { return static_cast<Derived *> (this); } in derived()
146 const Derived *derived () const;
153 template<typename T, typename Shape, typename Derived>
154 inline const Derived *
155 vector_builder<T, Shape, Derived>::derived () const in derived()
157 return static_cast<const Derived *> (this); in derived()
160 template<typename T, typename Shape, typename Derived>
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/qi/
H A Dparser.hpp21 template <typename Derived>
25 typedef Derived derived_type;
47 Derived const& derived() const in derived()
49 return *static_cast<Derived const*>(this); in derived()
54 template <typename Derived>
55 struct primitive_parser : parser<Derived>
60 template <typename Derived>
61 struct nary_parser : parser<Derived>
74 template <typename Derived>
75 struct unary_parser : parser<Derived>
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/iterator/
H A Diterator_facade.hpp435 class Derived
481 template <class Derived, class V, class TC, class R, class D> \
484 Derived \
532 , (iterator_facade<Derived, V, TC, R, D> const&
533 , typename Derived::difference_type)
539 , (typename Derived::difference_type
540 , iterator_facade<Derived, V, TC, R, D> const&)
619 class Derived
625 …class iterator_facade_base< Derived, Value, CategoryOrTraversal, Reference, Difference, false, fal…
663 Derived& operator++() in operator ++()
[all …]
H A Diterator_adaptor.hpp162 class Derived
172 Derived
244 class Derived
253 Derived, Base, Value, Traversal, Reference, Difference
260 Derived, Base, Value, Traversal, Reference, Difference
277 typedef iterator_adaptor<Derived,Base,Value,Traversal,Reference,Difference> iterator_adaptor_;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/proto/detail/preprocessed/
H A Dpoly_function_funop.hpp10 : Derived::template impl<
18 Derived const(
25 Derived const( in operator ()()
33 : Derived::template impl<
41 Derived const(
48 Derived const( in operator ()()
56 : Derived::template impl<
64 Derived const(
71 Derived const( in operator ()()
79 : Derived::template impl<
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/type_traits/
H A Dis_base_of.hpp30 template <class Base, class Derived> struct is_base_of
31 : public integral_constant<bool, (::boost::detail::is_base_of_imp<Base, Derived>::value)> {};
33 template <class Base, class Derived> struct is_base_of<Base, Derived&> : false_type{};
34 template <class Base, class Derived> struct is_base_of<Base&, Derived&> : false_type{};
35 template <class Base, class Derived> struct is_base_of<Base&, Derived> : false_type{};
H A Dis_base_and_derived.hpp231 template <class Base, class Derived> struct is_base_and_derived
232 …: public integral_constant<bool, (::boost::detail::is_base_and_derived_impl<Base, Derived>::value)…
234 template <class Base, class Derived> struct is_base_and_derived<Base&, Derived> : public false_type…
235 template <class Base, class Derived> struct is_base_and_derived<Base, Derived&> : public false_type…
236 template <class Base, class Derived> struct is_base_and_derived<Base&, Derived&> : public false_typ…
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/proto/
H A Dextends.hpp160 … #define BOOST_PROTO_BASIC_EXTENDS_(Expr, Derived, Domain) \ argument
166 … typedef Derived proto_derived_expr; \
204 … #define BOOST_PROTO_BASIC_EXTENDS(Expr, Derived, Domain) \ argument
205 … BOOST_PROTO_BASIC_EXTENDS_(Expr, Derived, Domain) \
444 … #define BOOST_PROTO_EXTENDS(Expr, Derived, Domain) \ argument
445 … BOOST_PROTO_BASIC_EXTENDS(Expr, Derived, Domain) \
451 … #define BOOST_PROTO_EXTENDS_USING_ASSIGN(Derived) \ argument
452 … typedef typename Derived::proto_extends proto_extends; \
454 … BOOST_PROTO_EXTENDS_COPY_ASSIGN_(Derived, BOOST_PROTO_TYPENAME) \
457 … #define BOOST_PROTO_EXTENDS_USING_ASSIGN_NON_DEPENDENT(Derived) \ argument
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/fusion/iterator/
H A Diterator_facade.hpp23 template <typename Derived, typename Category>
24 struct iterator_facade : iterator_base<Derived>
27 typedef Derived derived_type;
62 template <typename Derived, typename Category>
63 struct iterator_traits< ::boost::fusion::iterator_facade<Derived, Category> >
/OK3568_Linux_fs/yocto/poky/meta/files/common-licenses/
H A DIPA14 3. "Derived Program" shall mean a Digital Font Program created as a result of a modificatio…
40 …racts Embedded Fonts from a Digital Document File to create a Derived Program, such Derived Progra…
46Derived Program under the terms stated above for the Licensed Program: provided, that the Recipien…
54 1. If a Derived Program is Redistributed pursuant to Paragraph 4 and 7 of the preceding Art…
56 (1) The following must be also Redistributed together with the Derived Program, or b…
58 (a) a copy of the Derived Program; and
60 …g program in the course of creating the Derived Program that can be used for further modification …
62Derived Program to replace the Derived Program with the Licensed Program first released under this…
64 (3) The Recipient must license the Derived Program under the terms and conditions of…
66 … the name of the Licensed Program as a program name, font name or file name of the Derived Program.
[all …]
H A DLPPL-1.3c49 `Derived Work`
53 Any procedure that produces a Derived Work under any applicable
60 To apply any procedure that produces a Derived Work under any
107 modification of the Work, and no right to distribute such a Derived
118 restriction, modify the Work, thus creating a Derived Work. You may
119 also distribute the Derived Work without restriction, including
120 Compiled Works generated from the Derived Work. Derived Works
125 your copy of the Work, thus creating a Derived Work based on the Work,
126 and compile this Derived Work, thus creating a Compiled Work based on
127 the Derived Work.
[all …]
H A DLPPL-1.3a27 `Work' Any work being distributed under this License. `Derived Work' Any work that under any applic…
29 `Modification' Any procedure that produces a Derived Work under any applicable law -- for example, …
31 `Modify' To apply any procedure that produces a Derived Work under any applicable law. `Distributio…
44 …s considered modification of the Work, and no right to distribute such a Derived Work may be assum…
48 …ing a Derived Work. You may also distribute the Derived Work without restriction, including Compil…
50 …rk, thus creating a Derived Work based on the Work, and compile this Derived Work, thus creating a…
52 6. If you are not the Current Maintainer of the Work, you may distribute a Derived Work provided th…
54Derived Work can be a direct replacement for a component of the Work when that component is used w…
56Derived Work contains prominent notices detailing the nature of the changes to that component, or …
58Derived Work implies that any persons, including (but not limited to) the authors of the original …
[all …]
H A Dcopyleft-next-0.3.129 3. Conditions for Distributing Derived Works; Outbound GPL Compatibility
31 If You Distribute a Derived Work, You must license the entire Derived
34 separate Distribution of portions of the Derived Work.
36 If the Derived Work includes material licensed under the GPL, You may
37 instead license the Derived Work under the GPL.
168 "Covered Work" means My Work or a Derived Work.
170 "Derived Work" means a work of authorship that copies from, modifies,
173 required. The following are not Derived Works: (i) Mere Aggregation;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/mpl/aux_/preprocessed/no_ctps/
H A Dinherit.hpp19 template< typename Derived, typename T1, typename T2 > struct result_
22 typedef Derived type_;
29 template< typename Derived, typename T1, typename T2 > struct result_
39 template< typename Derived, typename T1, typename T2 > struct result_
49 template< typename Derived, typename T1, typename T2 > struct result_
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/mpl/aux_/preprocessed/msvc70/
H A Dinherit.hpp19 template< typename Derived, typename T1, typename T2 > struct result_
22 typedef Derived type_;
29 template< typename Derived, typename T1, typename T2 > struct result_
39 template< typename Derived, typename T1, typename T2 > struct result_
49 template< typename Derived, typename T1, typename T2 > struct result_
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/mpl/aux_/preprocessed/msvc60/
H A Dinherit.hpp19 template< typename Derived, typename T1, typename T2 > struct result_
22 typedef Derived type_;
29 template< typename Derived, typename T1, typename T2 > struct result_
39 template< typename Derived, typename T1, typename T2 > struct result_
49 template< typename Derived, typename T1, typename T2 > struct result_
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/mpl/
H A Dinherit.hpp106 template< typename Derived, typename T1, typename T2 > struct result_
109 typedef Derived type_;
116 template< typename Derived, typename T1, typename T2 > struct result_
126 template< typename Derived, typename T1, typename T2 > struct result_
136 template< typename Derived, typename T1, typename T2 > struct result_
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/support/
H A Dsequence_base_id.hpp32 template <typename Derived, typename Attribute>
33 struct pass_attribute<Derived, Attribute,
34 typename enable_if<detail::has_sequence_base_id<Derived> >::type>
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/fusion/sequence/
H A Dsequence_facade.hpp18 template <typename Derived, typename Category, typename IsView = mpl::false_>
19 struct sequence_facade : sequence_base<Derived>
23 typedef Derived derived_type;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/qi/operator/
H A Dsequence_base.hpp32 template <typename Derived, typename Elements>
34 : nary_parser<Derived>
88 , Derived::fail_function(iter, last, context, skipper), predicate())) in parse_impl()
108 Derived::fail_function(iter, last, context, skipper), attr_)) in parse_impl()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/proto/detail/
H A Dpoly_function_funop.hpp44 : Derived::template impl<
57 Derived const(
64 Derived const( in operator ()()
H A Dpoly_function.hpp167 template<typename Derived, typename NullaryResult = void>
176 : Derived::template impl<>
183 result<Derived const()> impl; in operator ()()
/OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/licenses/
H A Dcopyleft-next-0.3.029 3. Conditions for Distributing Derived Works; Outbound GPL Compatibility
31 If You Distribute a Derived Work, You must license the entire Derived
34 separate Distribution of portions of the Derived Work. You may
35 additionally license the Derived Work under the GPL, so that the
36 recipient may further Distribute the Derived Work under either this
167 "Covered Work" means My Work or a Derived Work.
169 "Derived Work" means a work of authorship that copies from, modifies,
172 required. The following are not Derived Works: (i) Mere Aggregation;

123