Home
last modified time | relevance | path

Searched refs:handler_type (Results 1 – 5 of 5) sorted by relevance

/external/parameter-framework/asio-1.10.6/include/asio/
Dhandler_type.hpp31 struct handler_type struct
39 struct handler_type<const Handler, Signature> struct
40 : handler_type<Handler, Signature> {};
43 struct handler_type<volatile Handler, Signature> struct
44 : handler_type<Handler, Signature> {};
47 struct handler_type<const volatile Handler, Signature> struct
48 : handler_type<Handler, Signature> {};
51 struct handler_type<const Handler&, Signature> struct
52 : handler_type<Handler, Signature> {};
55 struct handler_type<volatile Handler&, Signature> struct
[all …]
Dasync_result.hpp62 typename handler_type<Handler, Signature>::type handler;
63 async_result<typename handler_type<Handler, Signature>::type> result;
70 typename handler_type<Handler, Signature>::type
79 …_TYPE(h, sig) typename ::asio::async_result< typename ::asio::handler_type<h, sig>::type>:…
/external/parameter-framework/asio-1.10.6/include/asio/detail/
Dhandler_type_requirements.hpp112 …define ASIO_COMPLETION_HANDLER_CHECK( handler_type, handler) typedef ASIO_HANDLER_TYPE( argument
114 #define ASIO_READ_HANDLER_CHECK( handler_type, handler) typedef ASIO_HANDLER_TYPE(handle… argument
117 #define ASIO_WRITE_HANDLER_CHECK( handler_type, handler) typedef ASIO_HANDLER_TYPE(handl… argument
119 #define ASIO_ACCEPT_HANDLER_CHECK( handler_type, handler) typedef ASIO_HANDLER_TYPE(hand… argument
121 #define ASIO_CONNECT_HANDLER_CHECK( handler_type, handler) typedef ASIO_HANDLER_TYPE(han… argument
123 …COMPOSED_CONNECT_HANDLER_CHECK( handler_type, handler, iter_type) typedef ASIO_HANDLER_… argument
125 …ine ASIO_RESOLVE_HANDLER_CHECK( handler_type, handler, iter_type) typedef ASIO_HANDLER_… argument
127 #define ASIO_WAIT_HANDLER_CHECK( handler_type, handler) typedef ASIO_HANDLER_TYPE(handle… argument
129 #define ASIO_SIGNAL_HANDLER_CHECK( handler_type, handler) typedef ASIO_HANDLER_TYPE(hand… argument
131 #define ASIO_HANDSHAKE_HANDLER_CHECK( handler_type, handler) typedef ASIO_HANDLER_TYPE(h… argument
[all …]
/external/libxcam/tests/
Dtest-cl-image.cpp173 TestHandlerType handler_type = TestHandlerUnknown; in main() local
235 handler_type = TestHandlerDemo; in main()
237 handler_type = TestHandlerColorConversion; in main()
239 handler_type = TestHandlerBayerPipe; in main()
241 handler_type = TestHandlerYuvPipe; in main()
243 handler_type = TestHandlerTonemapping; in main()
245 handler_type = TestHandlerRetinex; in main()
247 handler_type = TestHandlerGauss; in main()
249 handler_type = TestHandlerHatWavelet; in main()
251 handler_type = TestHandlerHaarWavelet; in main()
[all …]
/external/libxkbcommon/xkbcommon/src/xkbcomp/
Daction.c782 enum xkb_action_type handler_type; in HandleActionDef() local
791 if (!stringToAction(str, &handler_type)) { in HandleActionDef()
801 *action = info->actions[handler_type]; in HandleActionDef()
844 if (!handleAction[handler_type](ctx, mods, action, fieldNdx, in HandleActionDef()