Home
last modified time | relevance | path

Searched refs:Object (Results 1 – 25 of 237) sorted by relevance

12345678910

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/proto/transform/detail/preprocessed/
H A Dlazy.hpp16 template<typename Object >
17 struct lazy<Object()>
18 : transform<lazy<Object()> >
23 typename make<Object>::template impl<Expr, State, Data>::result_type
36 template<typename Object , typename A0>
37 struct lazy<Object(A0)>
38 : transform<lazy<Object(A0)> >
43 typename make<Object>::template impl<Expr, State, Data>::result_type
48 template<typename Object , typename A0>
49 struct lazy<Object(A0...)>
[all …]
H A Dmake.hpp51 template<typename Object >
52 struct make<Object()>
53 : transform<make<Object()> >
59 typedef typename detail::make_if_<Object, Expr, State, Data>::type result_type;
153 template<typename Object , typename A0>
154 struct make<Object(A0)>
155 : transform<make<Object(A0)> >
161 typedef typename detail::make_if_<Object, Expr, State, Data>::type result_type;
187 template<typename Object , typename A0>
188 struct make<Object(A0...)>
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/phoenix/operator/detail/cpp03/preprocessed/
H A Dmem_fun_ptr_gen_10.hpp9 template <typename Object, typename MemPtr>
12 mem_fun_ptr_gen(Object const& obj_, MemPtr ptr_) in mem_fun_ptr_gen()
16 typename phoenix::expression::mem_fun_ptr<Object, MemPtr>::type const
19 return phoenix::expression::mem_fun_ptr<Object, MemPtr>::make(obj, ptr); in operator ()()
30 Object
37 Object in operator ()()
51 Object
58 Object in operator ()()
72 Object
79 Object in operator ()()
[all …]
H A Dmem_fun_ptr_gen_20.hpp9 template <typename Object, typename MemPtr>
12 mem_fun_ptr_gen(Object const& obj_, MemPtr ptr_) in mem_fun_ptr_gen()
16 typename phoenix::expression::mem_fun_ptr<Object, MemPtr>::type const
19 return phoenix::expression::mem_fun_ptr<Object, MemPtr>::make(obj, ptr); in operator ()()
30 Object
37 Object in operator ()()
51 Object
58 Object in operator ()()
72 Object
79 Object in operator ()()
[all …]
H A Dmem_fun_ptr_gen_30.hpp9 template <typename Object, typename MemPtr>
12 mem_fun_ptr_gen(Object const& obj_, MemPtr ptr_) in mem_fun_ptr_gen()
16 typename phoenix::expression::mem_fun_ptr<Object, MemPtr>::type const
19 return phoenix::expression::mem_fun_ptr<Object, MemPtr>::make(obj, ptr); in operator ()()
30 Object
37 Object in operator ()()
51 Object
58 Object in operator ()()
72 Object
79 Object in operator ()()
[all …]
H A Dmem_fun_ptr_gen_40.hpp9 template <typename Object, typename MemPtr>
12 mem_fun_ptr_gen(Object const& obj_, MemPtr ptr_) in mem_fun_ptr_gen()
16 typename phoenix::expression::mem_fun_ptr<Object, MemPtr>::type const
19 return phoenix::expression::mem_fun_ptr<Object, MemPtr>::make(obj, ptr); in operator ()()
30 Object
37 Object in operator ()()
51 Object
58 Object in operator ()()
72 Object
79 Object in operator ()()
[all …]
H A Dmem_fun_ptr_gen_50.hpp9 template <typename Object, typename MemPtr>
12 mem_fun_ptr_gen(Object const& obj_, MemPtr ptr_) in mem_fun_ptr_gen()
16 typename phoenix::expression::mem_fun_ptr<Object, MemPtr>::type const
19 return phoenix::expression::mem_fun_ptr<Object, MemPtr>::make(obj, ptr); in operator ()()
30 Object
37 Object in operator ()()
51 Object
58 Object in operator ()()
72 Object
79 Object in operator ()()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/phoenix/operator/detail/cpp03/
H A Dmem_fun_ptr_gen.hpp27 template <typename Object, typename MemPtr>
30 mem_fun_ptr_gen(Object const& obj_, MemPtr ptr_) in mem_fun_ptr_gen()
35 typename phoenix::expression::mem_fun_ptr<Object, MemPtr>::type const
38 return phoenix::expression::mem_fun_ptr<Object, MemPtr>::make(obj, ptr); in operator ()()
47 Object const& obj;
58 template<typename This, typename Object, typename MemPtr>
59 struct result<This(Object, MemPtr)>
63 typename remove_const<typename remove_reference<Object>::type>::type
69 template<typename Object, typename MemPtr>
70 mem_fun_ptr_gen<Object, MemPtr> operator()(Object const & obj, MemPtr ptr) const in operator ()()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/actor/
H A Dmessage.hpp19 template <class Object, class MemberFn, class ArgsTuple>
22 MessageImpl(Object& object_, MemberFn memberFn_, ArgsTuple argsTuple_) in MessageImpl()
37 Object& object;
42 template <class ResultType, class Object, class MemberFn, class ArgsTuple>
45 …AskMessageImpl(std::promise<ResultType> promise_, Object& object_, MemberFn memberFn_, ArgsTuple a… in AskMessageImpl()
61 Object& object;
67 template <class Object, class MemberFn, class ArgsTuple>
68 class AskMessageImpl<void, Object, MemberFn, ArgsTuple> : public Message {
70 …AskMessageImpl(std::promise<void> promise_, Object& object_, MemberFn memberFn_, ArgsTuple argsTup… in AskMessageImpl()
87 Object& object;
[all …]
H A Daspiring_actor.hpp14 template <class Object>
17 template <class Object>
34 template <class Object>
44 ActorRef<std::decay_t<Object>> self() { in self()
45 return ActorRef<std::decay_t<Object>>(object(), mailbox); in self()
50 std::aligned_storage_t<sizeof(Object)> objectStorage;
52 Object& object() { in object()
53 return *reinterpret_cast<Object *>(&objectStorage); in object()
56 friend class EstablishedActor<Object>;
57 friend class Actor<Object>;
H A Destablished_actor.hpp27 template <class Object>
31 template <typename U = Object, class... Args, typename std::enable_if<
35 EstablishedActor(Scheduler& scheduler, AspiringActor<Object>& parent_, Args&& ... args) in EstablishedActor()
44 EstablishedActor(Scheduler& scheduler, AspiringActor<Object>& parent_, ArgsTuple&& args) in EstablishedActor()
54 parent.object().~Object(); in ~EstablishedActor()
59 …template <typename U = Object, class... Args, typename std::enable_if<std::is_constructible<U, Act…
61 new (&parent.objectStorage) Object(parent.self(), std::forward<Args>(args_)...); in emplaceObject()
65 …template <typename U = Object, class... Args, typename std::enable_if<std::is_constructible<U, Arg…
67 new (&parent.objectStorage) Object(std::forward<Args>(args_)...); in emplaceObject()
77 AspiringActor<Object>& parent;
H A Dactor.hpp51 template <class Object>
60 ActorRef<std::decay_t<Object>> self() { in self()
65 AspiringActor<Object> parent;
66 EstablishedActor<Object> target;
H A Dactor_ref.hpp23 template <class Object>
26 ActorRef(Object& object_, std::weak_ptr<Mailbox> weakMailbox_) in ActorRef()
41 using ResultType = typename std::result_of<decltype(fn)(Object, Args...)>::type; in ask()
60 Object* object;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/proto/transform/detail/
H A Dlazy.hpp43 template<typename Object BOOST_PP_ENUM_TRAILING_PARAMS(N, typename A)>
44 struct lazy<Object(BOOST_PP_ENUM_PARAMS(N, A))>
45 : transform<lazy<Object(BOOST_PP_ENUM_PARAMS(N, A))> >
50 typename make<Object>::template impl<Expr, State, Data>::result_type
57 template<typename Object BOOST_PP_ENUM_TRAILING_PARAMS(N, typename A)>
58 struct lazy<Object(BOOST_PP_ENUM_PARAMS(N, A)...)>
59 : transform<lazy<Object(BOOST_PP_ENUM_PARAMS(N, A)...)> >
68 Object
H A Dmake.hpp144 template<typename Object BOOST_PP_ENUM_TRAILING_PARAMS(N, typename A)>
145 struct make<Object(BOOST_PP_ENUM_PARAMS(N, A))>
146 : transform<make<Object(BOOST_PP_ENUM_PARAMS(N, A))> >
152 typedef typename detail::make_if_<Object, Expr, State, Data>::type result_type;
181 template<typename Object BOOST_PP_ENUM_TRAILING_PARAMS(N, typename A)>
182 struct make<Object(BOOST_PP_ENUM_PARAMS(N, A)...)>
183 : transform<make<Object(BOOST_PP_ENUM_PARAMS(N, A)...)> >
192 Object
/OK3568_Linux_fs/external/rknpu2/examples/rknn_yolov5_android_apk_demo/gradle/wrapper/
HDgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/ ...
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/proto/transform/
H A Dlazy.hpp31 template<typename Object>
32 struct lazy : transform<lazy<Object> >
37 typename make<Object>::template impl<Expr, State, Data>::result_type
52 template<typename Object>
53 struct is_callable<lazy<Object> >
H A Dmake.hpp233 template<typename Object>
234 struct make : transform<make<Object> >
239 typedef typename detail::make_if_<Object, Expr, State, Data>::type result_type;
266 template<typename Object>
267 struct is_callable<make<Object> >
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/websocketpp/websocketpp-0.8.2/
H A D1024.patch342 @@ -16,7 +16,7 @@ objs = env.Object('connection_boost.o', ["connection.cpp"], LIBS = BOOST_LIBS)
343 objs = env.Object('connection_tu2_boost.o', ["connection_tu2.cpp"], LIBS = BOOST_LIBS)
349 objs += env_cpp11.Object('connection_stl.o', ["connection.cpp"], LIBS = BOOST_LIBS_CPP11)
350 … objs += env_cpp11.Object('connection_tu2_stl.o', ["connection_tu2.cpp"], LIBS = BOOST_LIBS_CPP11)
356 objs = env.Object('endpoint_boost.o', ["endpoint.cpp"], LIBS = BOOST_LIBS)
362 objs += env_cpp11.Object('endpoint_stl.o', ["endpoint.cpp"], LIBS = BOOST_LIBS_CPP11)
368 @@ -17,7 +17,7 @@ objs += env.Object('permessage_deflate_boost.o', ["permessage_deflate.cpp"], LIB
375 objs += env_cpp11.Object('extension_stl.o', ["extension.cpp"], LIBS = BOOST_LIBS_CPP11)
376 …objs += env_cpp11.Object('permessage_deflate_stl.o', ["permessage_deflate.cpp"], LIBS = BOOST_LIBS…
382 objs = env.Object('parser_boost.o', ["parser.cpp"], LIBS = BOOST_LIBS)
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/util/
H A Dthread.hpp39 template<class Object>
61 EstablishedActor<Object> establishedActor(loop_, object, std::move(capturedArgs)); in Thread()
98 ActorRef<std::decay_t<Object>> actor() { in actor()
142 AspiringActor<Object> object;
/OK3568_Linux_fs/u-boot/arch/x86/include/asm/acpi/
H A Dstatdef.asl33 /* Device Object Notification Values */
52 /* Power Source Object Notification Values */
56 /* Thermal Zone Object Notification Values */
/OK3568_Linux_fs/buildroot/package/jszip/
H A D0001-fix-Use-a-null-prototype-object-for-this-files.patch7 exist on a normal object Object.create({})
28 + // to overwrite methods and attributes in a normal Object.
29 + this.files = Object.create(null);
/OK3568_Linux_fs/yocto/poky/meta/files/common-licenses/
H A Dcopyleft-next-0.3.154 5. Conditions for Distributing Object Code
56 You may Distribute an Object Code form of a Covered Work, provided that
57 you accompany the Object Code with a URL through which the Corresponding
61 If you Distribute the Object Code in a physical product or tangible
64 Distribution of the Object Code in the Product. However, if the Product
158 "Corresponding Source" of a Covered Work in Object Code form means (i)
161 a skilled developer to generate such Object Code from the Source Code
208 "Object Code" means any form of a work that is not Source Code.
216 library or similar component that is used to generate an Object Code
H A Dcopyleft-next-0.3.053 5. Conditions for Distributing Object Code
55 You may Distribute an Object Code form of a Covered Work, provided that
56 you accompany the Object Code with a URL through which the Corresponding
60 If you Distribute the Object Code in a physical product or tangible
63 Distribution of the Object Code in the Product. However, if the Product
157 "Corresponding Source" of a Covered Work in Object Code form means (i)
160 a skilled developer to generate such Object Code from the Source Code
207 "Object Code" means any form of a work that is not Source Code.
215 library or similar component that is used to generate an Object Code
/OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/licenses/
H A Dcopyleft-next-0.3.053 5. Conditions for Distributing Object Code
55 You may Distribute an Object Code form of a Covered Work, provided that
56 you accompany the Object Code with a URL through which the Corresponding
60 If you Distribute the Object Code in a physical product or tangible
63 Distribution of the Object Code in the Product. However, if the Product
157 "Corresponding Source" of a Covered Work in Object Code form means (i)
160 a skilled developer to generate such Object Code from the Source Code
207 "Object Code" means any form of a work that is not Source Code.
215 library or similar component that is used to generate an Object Code

12345678910