/external/webkit/WebKitTools/pywebsocket/test/ |
D | test_dispatch.py | 111 dispatcher = dispatch.Dispatcher(_TEST_HANDLERS_DIR, None) 112 warnings = dispatcher.source_warnings() 132 dispatcher = dispatch.Dispatcher(_TEST_HANDLERS_DIR, None) 136 dispatcher.do_extra_handshake(request) # Must not raise exception. 139 self.assertRaises(Exception, dispatcher.do_extra_handshake, request) 142 dispatcher = dispatch.Dispatcher(_TEST_HANDLERS_DIR, None) 147 dispatcher.transfer_data(request) 154 dispatcher.transfer_data(request) 161 dispatcher.transfer_data(request) 168 dispatcher.transfer_data(request) [all …]
|
/external/webkit/WebKitTools/Scripts/webkitpy/style/ |
D | checker_unittest.py | 369 dispatcher = ProcessorDispatcher() 372 self.assertFalse(dispatcher.should_skip_with_warning("foo.txt")) 387 self.assertTrue(dispatcher.should_skip_with_warning(path), 392 dispatcher = ProcessorDispatcher() 395 self.assertFalse(dispatcher.should_skip_without_warning("foo.txt")) 404 self.assertTrue(dispatcher.should_skip_without_warning(path), 417 dispatcher = ProcessorDispatcher() 418 processor = dispatcher.dispatch_processor(file_path, 631 dispatcher = ProcessorDispatcher() 633 self.assertTrue(dispatcher.should_skip_without_warning(file_path)) [all …]
|
D | checker.py | 794 dispatcher = ProcessorDispatcher() 796 if dispatcher.should_skip_without_warning(file_path): 798 if dispatcher.should_skip_with_warning(file_path): 804 processor = dispatcher.dispatch_processor(file_path,
|
/external/webkit/WebKitTools/pywebsocket/mod_pywebsocket/ |
D | standalone.py | 100 def _print_warnings_if_any(dispatcher): argument 101 warnings = dispatcher.source_warnings() 221 self._dispatcher = WebSocketRequestHandler.options.dispatcher 296 def _alias_handlers(dispatcher, websock_handlers_map_file): argument 313 dispatcher.add_resource_path_alias( 400 options.dispatcher = dispatch.Dispatcher(options.websock_handlers, 403 _alias_handlers(options.dispatcher, 405 _print_warnings_if_any(options.dispatcher)
|
D | headerparserhandler.py | 62 dispatcher = dispatch.Dispatcher(_HANDLER_ROOT, _HANDLER_SCAN) 63 for warning in dispatcher.source_warnings(): 65 return dispatcher
|
D | handshake.py | 101 def __init__(self, request, dispatcher, strict=False): argument 116 self._dispatcher = dispatcher
|
/external/chromium/base/ |
D | message_pump_glib.cc | 160 Dispatcher* dispatcher) { in RunWithDispatcher() argument 172 state.dispatcher = dispatcher; in RunWithDispatcher() 325 message_pump->state_->dispatcher) { in EventDispatcher() 326 if (!message_pump->state_->dispatcher->Dispatch(event)) in EventDispatcher()
|
D | message_loop.cc | 198 if (state_->dispatcher && type() == TYPE_UI) { in RunInternal() 200 RunWithDispatcher(this, state_->dispatcher); in RunInternal() 491 dispatcher = NULL; in AutoRunState() 600 void MessageLoopForUI::Run(Dispatcher* dispatcher) { in Run() argument 602 state_->dispatcher = dispatcher; in Run()
|
D | message_pump_win.cc | 42 Delegate* delegate, Dispatcher* dispatcher) { in RunWithDispatcher() argument 45 s.dispatcher = dispatcher; in RunWithDispatcher() 359 if (state_->dispatcher) { in ProcessMessageHelper() 360 if (!state_->dispatcher->Dispatch(msg)) in ProcessMessageHelper()
|
D | message_pump_glib.h | 57 virtual void RunWithDispatcher(Delegate* delegate, Dispatcher* dispatcher); 86 Dispatcher* dispatcher; member
|
D | message_pump_win.h | 75 void RunWithDispatcher(Delegate* delegate, Dispatcher* dispatcher); 84 Dispatcher* dispatcher; member
|
D | message_loop.h | 273 Dispatcher* dispatcher; member 465 void Run(Dispatcher* dispatcher);
|
D | message_loop_unittest.cc | 1133 DispatcherImpl dispatcher; in RunTest_Dispatcher() local 1134 MessageLoopForUI::current()->Run(&dispatcher); in RunTest_Dispatcher() 1135 ASSERT_EQ(2, dispatcher.dispatch_count_); in RunTest_Dispatcher() 1163 DispatcherImpl dispatcher; in RunTest_DispatcherWithMessageHook() local 1164 MessageLoopForUI::current()->Run(&dispatcher); in RunTest_DispatcherWithMessageHook() 1165 ASSERT_EQ(1, dispatcher.dispatch_count_); in RunTest_DispatcherWithMessageHook()
|
/external/bluetooth/glib/gobject/ |
D | gobjectnotifyqueue.c | 42 GObjectNotifyQueueDispatcher dispatcher; member 125 context->dispatcher (object, n_pspecs, pspecs); in g_object_notify_queue_thaw()
|
D | gobject.c | 325 property_notify_context.dispatcher = g_object_notify_dispatcher; in g_object_do_class_init()
|
/external/webkit/WebKit/chromium/src/ |
D | WebDevToolsAgentImpl.cpp | 109 v8::Handle<v8::Object> dispatcher = v8::Local<v8::Object>::Cast( in SetApuAgentEnabledInUtilityContext() local 111 if (dispatcher.IsEmpty()) in SetApuAgentEnabledInUtilityContext() 113 dispatcher->Set(v8::String::New("enabled"), v8::Boolean::New(enabled)); in SetApuAgentEnabledInUtilityContext()
|