/external/webkit/Source/WebCore/storage/ |
H A D | IDBEventDispatcher.cpp | 39 bool IDBEventDispatcher::dispatch(Event* event, Vector<RefPtr<EventTarget> >& eventTargets) function in class:WebCore::IDBEventDispatcher
|
H A D | StorageEventDispatcher.cpp | 41 void StorageEventDispatcher::dispatch(const String& key, const String& oldValue, const String& newValue, StorageType storageType, SecurityOrigin* securityOrigin, Frame* sourceFrame) function in class:WebCore::StorageEventDispatcher
|
/external/webkit/Source/JavaScriptCore/wtf/qt/ |
H A D | MainThreadQt.cpp | 46 void dispatch(); 54 void MainThreadInvoker::dispatch() function in class:WTF::MainThreadInvoker 67 QMetaObject::invokeMethod(webkit_main_thread_invoker(), "dispatch", Qt::QueuedConnection);
|
/external/webkit/Source/WebKit/chromium/src/ |
H A D | StorageEventDispatcherChromium.cpp | 46 void StorageEventDispatcher::dispatch(const String& key, const String& oldValue, function in class:WebCore::StorageEventDispatcher
|
/external/guava/guava/src/com/google/common/eventbus/ |
H A D | AsyncEventBus.java | 25 * dispatch events, allowing dispatch to occur asynchronously. 39 * Creates a new AsyncEventBus that will use {@code executor} to dispatch 43 * @param executor Executor to use to dispatch events. It is the caller's 53 * Creates a new AsyncEventBus that will use {@code executor} to dispatch 56 * @param executor Executor to use to dispatch events. It is the caller's 81 dispatch(eventWithHandler.event, eventWithHandler.handler); 86 * Calls the {@link #executor} to dispatch {@code event} to {@code handler}. 89 protected void dispatch(final Object event, final EventHandler handler) { method in class:AsyncEventBus 94 AsyncEventBus.super.dispatch(even [all...] |
H A D | EventBus.java | 124 * Logger for event dispatch failures. Named by the fully-qualified name of 136 /** queues of events for the current thread to dispatch */ 268 * Queue the {@code event} for dispatch during 281 // don't dispatch if we're already dispatching, that would allow reentrancy 283 // after the in-progress dispatch is complete. 296 dispatch(eventWithHandler.event, eventWithHandler.handler); 308 * @param event event to dispatch. 311 protected void dispatch(Object event, EventHandler wrapper) { method in class:EventBus 316 "Could not dispatch event: " + event + " to handler " + wrapper, e);
|
/external/jmonkeyengine/engine/src/networking/com/jme3/network/base/ |
H A D | ConnectorAdapter.java | 131 protected void dispatch( Message m ) method in class:ConnectorAdapter 175 dispatch( m );
|
H A D | KernelAdapter.java | 164 protected void dispatch( Endpoint p, Message m ) method in class:KernelAdapter 238 dispatch( env.getSource(), m );
|
H A D | DefaultClient.java | 380 protected void dispatch( Message m ) method in class:DefaultClient 417 dispatch( m );
|
/external/openssh/ |
H A D | dispatch.c | 1 /* $OpenBSD: dispatch.c,v 1.22 2008/10/31 15:05:34 stevesk Exp $ */ 36 #include "dispatch.h" 42 dispatch_fn *dispatch[DISPATCH_MAX]; variable 65 dispatch[i] = dflt; 75 dispatch[i] = fn; 81 dispatch[type] = fn; 97 if (type > 0 && type < DISPATCH_MAX && dispatch[type] != NULL) 98 (*dispatch[type])(type, seqnr, ctxt);
|
/external/webkit/Source/WebCore/dom/ |
H A D | ContainerNodeAlgorithms.h | 88 static void dispatch(GenericNode*) function in struct:WebCore::Private::NodeRemovalDispatcher 96 static void dispatch(GenericNode* node) function in struct:WebCore::Private::NodeRemovalDispatcher 139 NodeRemovalDispatcher<GenericNode, ShouldDispatchRemovalNotification<GenericNode>::value>::dispatch(n);
|
/external/chromium/third_party/libevent/ |
H A D | event-internal.h | 43 int (*dispatch)(struct event_base *, void *, struct timeval *); member in struct:eventop
|
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/ |
H A D | headerparserhandler.py | 43 from mod_pywebsocket import dispatch namespace 165 dispatcher = dispatch.Dispatcher( 197 except dispatch.DispatchException, e:
|
/external/webkit/Source/WebCore/inspector/ |
H A D | InjectedScriptSource.js | 131 dispatch: function(methodName, args)
|
H A D | CodeGeneratorInspector.pm | 591 void ${backendClassName}::dispatch(const String& message) 800 dispatch: function(message) label 839 console.error("Protocol Error: Attempted to dispatch an unimplemented method '" + messageObject.method + "'"); 844 console.error("Protocol Error: Attempted to dispatch an unspecified method '" + messageObject.method + "'"); 1021 push(@backendHead, " void dispatch(const String& message);");
|
/external/webkit/Source/WebCore/page/ |
H A D | FrameActionScheduler.cpp | 45 // Only dispatch events to nodes that are in the document 87 dispatch(); 91 void FrameActionScheduler::dispatch() function in class:WebCore::FrameActionScheduler
|
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/ |
H A D | test_dispatch.py | 33 """Tests for dispatch module.""" 41 from mod_pywebsocket import dispatch namespace 53 """A unittest for dispatch module.""" 57 dispatch._normalize_path('/a/b')) 59 dispatch._normalize_path('\\a\\b')) 61 dispatch._normalize_path('/a/c/../b')) 63 dispatch._normalize_path('abc')) 66 converter = dispatch._create_path_to_resource_converter('/a/b') 76 converter = dispatch._create_path_to_resource_converter('a/b') 77 self.assertEqual('/h', converter(dispatch [all...] |
/external/webkit/Source/WebCore/loader/ |
H A D | DocumentWriter.cpp | 109 void DocumentWriter::begin(const KURL& url, bool dispatch, SecurityOrigin* origin) argument 147 m_frame->loader()->didBeginDocument(dispatch);
|
/external/webkit/Source/WebKit/android/wds/ |
H A D | Command.cpp | 115 void Command::dispatch() { function in class:android::WDS::Command
|
/external/chromium/base/win/ |
H A D | scoped_variant.cc | 40 ScopedVariant::ScopedVariant(IDispatch* dispatch) { argument 42 Set(dispatch);
|
/external/mockwebserver/src/main/java/com/google/mockwebserver/ |
H A D | MockWebServer.java | 340 BaseMockResponse<?> response = dispatch(request); 458 private BaseMockResponse<?> dispatch(RecordedRequest request) throws InterruptedException { method in class:MockWebServer
|
/external/webkit/Tools/Scripts/webkitpy/style/ |
H A D | checker.py | 529 def dispatch(self, file_path, handle_style_error, min_confidence): member in class:CheckerDispatcher 759 checker = self._dispatcher.dispatch(file_path,
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/ |
H A D | RemoteDebugEventSocketListener.java | 176 dispatch(event); 252 protected void dispatch(String line) { method in class:RemoteDebugEventSocketListener
|
/external/chromium/chrome/browser/accessibility/ |
H A D | accessibility_win_browsertest.cc | 114 CComPtr<IDispatch> dispatch; local 115 HRESULT hr = parent->get_accChild(CreateI4Variant(V_I4(var)), &dispatch); 117 return CComQIPtr<IAccessible>(dispatch).Detach();
|
/external/chromium-trace/trace-viewer/examples/stream_server/ |
H A D | standalone.py | 143 from mod_pywebsocket import dispatch namespace 570 except dispatch.DispatchException, e: 675 dispatcher: dispatch.Dispatcher instance 691 except dispatch.DispatchException, e: 933 options.dispatcher = dispatch.Dispatcher(
|