/external/parameter-framework/asio-1.10.6/include/asio/detail/ |
D | bind_handler.hpp | 25 template <typename Handler, typename Arg1> 29 binder1(const Handler& handler, const Arg1& arg1) in binder1() 35 binder1(Handler& handler, const Arg1& arg1) in binder1() 36 : handler_(ASIO_MOVE_CAST(Handler)(handler)), in binder1() 52 Handler handler_; 56 template <typename Handler, typename Arg1> 58 binder1<Handler, Arg1>* this_handler) in asio_handler_allocate() argument 64 template <typename Handler, typename Arg1> 66 binder1<Handler, Arg1>* this_handler) in asio_handler_deallocate() argument 72 template <typename Handler, typename Arg1> [all …]
|
D | wrapped_handler.hpp | 27 template <typename Dispatcher, typename Handler> 28 bool operator()(Dispatcher&, Handler& handler) const in operator ()() 36 template <typename Dispatcher, typename Handler> 37 bool operator()(Dispatcher& dispatcher, Handler&) const in operator ()() 43 template <typename Dispatcher, typename Handler, 50 wrapped_handler(Dispatcher dispatcher, Handler& handler) in wrapped_handler() 52 handler_(ASIO_MOVE_CAST(Handler)(handler)) in wrapped_handler() 64 handler_(ASIO_MOVE_CAST(Handler)(other.handler_)) in wrapped_handler() 70 dispatcher_.dispatch(ASIO_MOVE_CAST(Handler)(handler_)); in operator ()() 150 Handler handler_; [all …]
|
D | handler_type_requirements.hpp | 63 template <typename Handler> 64 auto zero_arg_handler_test(Handler h, void*) 66 sizeof(Handler(static_cast<const Handler&>(h))), 70 template <typename Handler> 71 char (&zero_arg_handler_test(Handler, ...))[2]; 73 template <typename Handler, typename Arg1> 74 auto one_arg_handler_test(Handler h, Arg1* a1) 76 sizeof(Handler(static_cast<const Handler&>(h))), 80 template <typename Handler> 81 char (&one_arg_handler_test(Handler h, ...))[2]; [all …]
|
D | reactive_socket_service_base.hpp | 193 template <typename ConstBufferSequence, typename Handler> 196 socket_base::message_flags flags, Handler& handler) in async_send() 202 typedef reactive_socket_send_op<ConstBufferSequence, Handler> op; in async_send() 218 template <typename Handler> 220 socket_base::message_flags, Handler& handler) in async_send() 226 typedef reactive_null_buffers_op<Handler> op; in async_send() 264 template <typename MutableBufferSequence, typename Handler> 267 socket_base::message_flags flags, Handler& handler) in async_receive() 273 typedef reactive_socket_recv_op<MutableBufferSequence, Handler> op; in async_receive() 293 template <typename Handler> [all …]
|
D | completion_handler.hpp | 27 template <typename Handler> 33 completion_handler(Handler& h) in completion_handler() 35 handler_(ASIO_MOVE_CAST(Handler)(h)) in completion_handler() 55 Handler handler(ASIO_MOVE_CAST(Handler)(h->handler_)); in do_complete() 70 Handler handler_;
|
D | reactive_socket_service.hpp | 221 template <typename ConstBufferSequence, typename Handler> 225 Handler& handler) in async_send_to() 232 endpoint_type, Handler> op; in async_send_to() 245 template <typename Handler> 247 const endpoint_type&, socket_base::message_flags, Handler& handler) in async_send_to() 253 typedef reactive_null_buffers_op<Handler> op; in async_send_to() 305 template <typename MutableBufferSequence, typename Handler> 308 socket_base::message_flags flags, Handler& handler) in async_receive_from() 315 endpoint_type, Handler> op; in async_receive_from() 334 template <typename Handler> [all …]
|
D | handler_alloc_helpers.hpp | 27 template <typename Handler> 28 inline void* allocate(std::size_t s, Handler& h) in allocate() 38 template <typename Handler> 39 inline void deallocate(void* p, std::size_t s, Handler& h) in deallocate() 51 #define ASIO_DEFINE_HANDLER_PTR(op) struct ptr { Handler* h; void* v; op* p; …
|
D | reactive_null_buffers_op.hpp | 27 template <typename Handler> 33 reactive_null_buffers_op(Handler& handler) in reactive_null_buffers_op() 36 handler_(ASIO_MOVE_CAST(Handler)(handler)) in reactive_null_buffers_op() 61 detail::binder2<Handler, asio::error_code, std::size_t> in do_complete() 77 Handler handler_;
|
/external/parameter-framework/asio-1.10.6/include/asio/ |
D | handler_type.hpp | 30 template <typename Handler, typename Signature> 34 typedef Handler type; 38 template <typename Handler, typename Signature> 39 struct handler_type<const Handler, Signature> 40 : handler_type<Handler, Signature> {}; 42 template <typename Handler, typename Signature> 43 struct handler_type<volatile Handler, Signature> 44 : handler_type<Handler, Signature> {}; 46 template <typename Handler, typename Signature> 47 struct handler_type<const volatile Handler, Signature> [all …]
|
D | async_result.hpp | 26 template <typename Handler> 39 explicit async_result(Handler&) in async_result() argument 53 template <typename Handler, typename Signature> 56 explicit async_result_init(ASIO_MOVE_ARG(Handler) orig_handler) in async_result_init() 57 : handler(ASIO_MOVE_CAST(Handler)(orig_handler)), in async_result_init() 62 typename handler_type<Handler, Signature>::type handler; 63 async_result<typename handler_type<Handler, Signature>::type> result; 66 template <typename Handler, typename Signature> 70 typename handler_type<Handler, Signature>::type
|
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/ |
D | ShadowHandlerTest.java | 9 import android.os.Handler; 28 private Handler.Callback callback = new Handler.Callback() { 47 Handler handler1 = new Handler(looper); in testInsertsRunnablesBasedOnLooper() 50 Handler handler2 = new Handler(looper); in testInsertsRunnablesBasedOnLooper() 60 Handler handler1 = new Handler(); in testDefaultConstructorUsesDefaultLooper() 63 Handler handler2 = new Handler(Looper.myLooper()); in testDefaultConstructorUsesDefaultLooper() 85 Handler handler1 = new Handler(looper1); in testDifferentLoopersGetDifferentQueues() 88 Handler handler2 = new Handler(looper2); in testDifferentLoopersGetDifferentQueues() 98 Handler handler = new Handler(callback); in shouldCallProvidedHandlerCallback() 105 new Handler().post(scratchRunnable); in testPostAndIdleMainLooper() [all …]
|
D | ShadowMessageTest.java | 9 import android.os.Handler; 49 Handler h = new Handler(); in testGetTarget() 63 m.setTarget(new Handler()); in testCopyFrom() 84 Handler h = new Handler(); in testObtainWithHandler() 91 Handler h = new Handler(); in testObtainWithHandlerAndWhat() 102 Handler h = new Handler(); in testObtainWithHandlerWhatAndObject() 115 Handler h = new Handler(); in testObtainWithHandlerWhatAndTwoArgs() 129 Handler h = new Handler(); in testObtainWithHandlerWhatTwoArgsAndObj() 152 m.setTarget(new Handler()); in testObtainWithMessage() 167 Handler h = new Handler(); in testSendToTarget() [all …]
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/ |
D | HandlerTest.java | 3 import android.os.Handler; 30 private Handler.Callback callback = new Handler.Callback() { 49 Handler handler1 = new Handler(looper); in testInsertsRunnablesBasedOnLooper() 52 Handler handler2 = new Handler(looper); in testInsertsRunnablesBasedOnLooper() 62 Handler handler1 = new Handler(); in testDefaultConstructorUsesDefaultLooper() 65 Handler handler2 = new Handler(Looper.myLooper()); in testDefaultConstructorUsesDefaultLooper() 81 Handler handler1 = new Handler(looper1); in testDifferentLoopersGetDifferentQueues() 84 Handler handler2 = new Handler(looper2); in testDifferentLoopersGetDifferentQueues() 94 Handler handler = new Handler(callback); in shouldCallProvidedHandlerCallback() 101 new Handler().post(scratchRunnable); in testPostAndIdleMainLooper() [all …]
|
D | MessageTest.java | 11 import android.os.Handler; 44 Handler h = new Handler(); in testGetTarget() 58 m.setTarget(new Handler()); in testCopyFrom() 78 Handler h = new Handler(); in testObtainWithHandler() 85 Handler h = new Handler(); in testObtainWithHandlerAndWhat() 96 Handler h = new Handler(); in testObtainWithHandlerWhatAndObject() 109 Handler h = new Handler(); in testObtainWithHandlerWhatAndTwoArgs() 123 Handler h = new Handler(); in testObtainWithHandlerWhatTwoArgsAndObj() 146 m.setTarget(new Handler()); in testObtainWithMessage() 160 Handler h = new Handler(); in testSendToTarget()
|
/external/libbrillo/brillo/dbus/ |
D | dbus_signal_handler_unittest.cc | 59 base::Bind(&SignalHandlerSink::Handler, base::Unretained(sink)), in CallSignal() 83 MOCK_METHOD3(Handler, void(int, int, double)); in TEST_F() 86 EXPECT_CALL(sink, Handler(10, 20, 30.5)).Times(1); in TEST_F() 94 MOCK_METHOD2(Handler, void(const std::string&, std::string)); in TEST_F() 97 EXPECT_CALL(sink, Handler(std::string{"foo"}, std::string{"bar"})).Times(1); in TEST_F() 104 MOCK_METHOD0(Handler, void()); in TEST_F() 107 EXPECT_CALL(sink, Handler()).Times(1); in TEST_F() 114 MOCK_METHOD0(Handler, void()); in TEST_F() 118 EXPECT_CALL(sink, Handler()).Times(0); in TEST_F() 125 MOCK_METHOD2(Handler, void(std::string, bool)); in TEST_F() [all …]
|
D | dbus_object.h | 126 Handler<SimpleDBusInterfaceMethodHandler<R, Args...>>::Add( in AddSimpleMethodHandler() 135 Handler<SimpleDBusInterfaceMethodHandler<R, Args...>>::Add( in AddSimpleMethodHandler() 145 Handler<SimpleDBusInterfaceMethodHandler<R, Args...>>::Add( in AddSimpleMethodHandler() 154 Handler<SimpleDBusInterfaceMethodHandler<R, Args...>>::Add( in AddSimpleMethodHandler() 163 Handler<SimpleDBusInterfaceMethodHandlerWithError<Args...>>::Add( in AddSimpleMethodHandlerWithError() 173 Handler<SimpleDBusInterfaceMethodHandlerWithError<Args...>>::Add( in AddSimpleMethodHandlerWithError() 184 Handler<SimpleDBusInterfaceMethodHandlerWithError<Args...>>::Add( in AddSimpleMethodHandlerWithError() 194 Handler<SimpleDBusInterfaceMethodHandlerWithError<Args...>>::Add( in AddSimpleMethodHandlerWithError() 205 Handler<SimpleDBusInterfaceMethodHandlerWithErrorAndMessage<Args...>>::Add( in AddSimpleMethodHandlerWithErrorAndMessage() 216 Handler<SimpleDBusInterfaceMethodHandlerWithErrorAndMessage<Args...>>::Add( in AddSimpleMethodHandlerWithErrorAndMessage() [all …]
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
D | ShadowMessage.java | 10 import android.os.Handler; 16 private Handler target; 28 public void setTarget(Handler target) { in setTarget() 46 public Handler getTarget() { in getTarget() 65 public static Message obtain(Handler h) { in obtain() 72 public static Message obtain(Handler h, int what) { in obtain() 79 public static Message obtain(Handler h, int what, Object obj) { in obtain() 86 public static Message obtain(Handler h, int what, int arg1, int arg2) { in obtain() 94 public static Message obtain(Handler h, int what, int arg1, int arg2, Object obj) { in obtain()
|
/external/vogar/src/vogar/ |
D | OptionParser.java | 144 private static final HashMap<Class<?>, Handler> handlers = new HashMap<Class<?>, Handler>(); 166 Handler getHandler(Type type) { in getHandler() 299 final Handler handler = getHandler(field.getGenericType()); in parseLongOption() 319 final Handler handler = getHandler(field.getGenericType()); in parseGroupedShortOptions() 337 private void setValue(Field field, String arg, Handler handler, String valueText) { in setValue() 407 static abstract class Handler { class in OptionParser 420 static class BooleanHandler extends Handler { 435 static class ByteHandler extends Handler { 445 static class ShortHandler extends Handler { 455 static class IntegerHandler extends Handler { [all …]
|
/external/parameter-framework/asio-1.10.6/include/asio/detail/impl/ |
D | task_io_service.hpp | 27 template <typename Handler> 28 void task_io_service::dispatch(Handler& handler) in dispatch() 38 typedef completion_handler<Handler> op; in dispatch() 51 template <typename Handler> 52 void task_io_service::post(Handler& handler) in post() 58 typedef completion_handler<Handler> op; in post()
|
/external/owasp/sanitizer/src/main/org/owasp/html/ |
D | Handler.java | 38 public interface Handler<T> { interface 43 public static final Handler<Object> DO_NOTHING = new Handler<Object>() { 53 public static final Handler<Throwable> PROPAGATE = new Handler<Throwable>() {
|
D | HtmlStreamRenderer.java | 54 private final Handler<? super IOException> ioExHandler; 55 private final Handler<? super String> badHtmlHandler; 71 Handler<? super IOException> ioExHandler, in create() 72 Handler<? super String> badHtmlHandler) { in create() 90 StringBuilder output, Handler<? super String> badHtmlHandler) { in create() 92 return create(output, Handler.PROPAGATE, badHtmlHandler); in create() 96 Appendable output, Handler<? super IOException> ioExHandler, in HtmlStreamRenderer() 97 Handler<? super String> badHtmlHandler) { in HtmlStreamRenderer() 112 if (badHtmlHandler != Handler.DO_NOTHING) { // Avoid string append. in error() 396 Appendable output, Handler<? super IOException> errorHandler, in CloseableHtmlStreamRenderer() [all …]
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
D | Metadata.def | 23 // Handler for all types of metadata. 28 // Handler for leaf nodes in the class hierarchy. 33 // Handler for non-leaf nodes in the class hierarchy. 38 // Handler for specialized and uniquable leaf nodes under MDNode. Defers to 51 // Handler for leaf nodes under MDNode. 56 // Handler for leaf nodes under MDNode. 61 // Handler for non-leaf nodes under MDNode. 66 // Handler for specialized leaf nodes under MDNode. 71 // Handler for specialized non-leaf nodes under MDNode.
|
/external/llvm/include/llvm/IR/ |
D | Metadata.def | 23 // Handler for all types of metadata. 28 // Handler for leaf nodes in the class hierarchy. 33 // Handler for non-leaf nodes in the class hierarchy. 38 // Handler for specialized and uniquable leaf nodes under MDNode. Defers to 51 // Handler for leaf nodes under MDNode. 56 // Handler for leaf nodes under MDNode. 61 // Handler for non-leaf nodes under MDNode. 66 // Handler for specialized leaf nodes under MDNode. 71 // Handler for specialized non-leaf nodes under MDNode.
|
/external/sl4a/Utils/src/com/googlecode/android_scripting/ |
D | MainThread.java | 20 import android.os.Handler; 38 Handler handler = new Handler(context.getMainLooper()); in run() 59 Handler handler = new Handler(context.getMainLooper()); in run()
|
/external/google-breakpad/src/processor/ |
D | cfi_frame_info.h | 145 class Handler { 147 Handler() { } in Handler() function 148 virtual ~Handler() { } in ~Handler() 159 CFIRuleParser(Handler *handler) : handler_(handler) { } in CFIRuleParser() 172 Handler *handler_; 180 class CFIFrameInfoParseHandler: public CFIRuleParser::Handler {
|