Searched defs:dispatch (Results 1 - 25 of 97) sorted by relevance

1234

/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIDBEventDispatcher.cpp37 bool IDBEventDispatcher::dispatch(Event* event, Vector<RefPtr<EventTarget> >& eventTargets) function in class:WebCore::IDBEventDispatcher
/external/chromium_org/chrome/renderer/resources/extensions/
H A Dunload_event.js28 // dispatch() is called from C++.
29 exports.dispatch = function() {
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/
H A DCustomElementBaseElementQueue.cpp44 bool CustomElementBaseElementQueue::dispatch(ElementQueue baseQueueId) function in class:WebCore::CustomElementBaseElementQueue
H A DCustomElementCallbackDispatcher.cpp51 bool CustomElementCallbackDispatcher::dispatch() function in class:WebCore::CustomElementCallbackDispatcher
57 bool didWork = m_baseElementQueue.dispatch(baseElementQueue());
H A DCustomElementCallbackInvocation.cpp47 virtual void dispatch(Element*) OVERRIDE;
51 void CreatedInvocation::dispatch(Element* element) function in class:WebCore::CreatedInvocation
63 virtual void dispatch(Element*) OVERRIDE;
75 void AttachedDetachedInvocation::dispatch(Element* element) function in class:WebCore::AttachedDetachedInvocation
94 virtual void dispatch(Element*) OVERRIDE;
109 void AttributeChangedInvocation::dispatch(Element* element) function in class:WebCore::AttributeChangedInvocation
/external/mockwebserver/src/main/java/com/google/mockwebserver/
H A DDispatcher.java26 public abstract MockResponse dispatch(RecordedRequest request) throws InterruptedException; method in class:Dispatcher
H A DQueueDispatcher.java31 @Override public MockResponse dispatch(RecordedRequest request) throws InterruptedException { method in class:QueueDispatcher
/external/chromium_org/third_party/mesa/src/src/mapi/glapi/
H A Dglapi.c62 _glapi_set_dispatch(struct _glapi_table *dispatch) argument
64 u_current_set((const struct mapi_table *) dispatch);
H A Dglapi_entrypoint.c28 * Arch-specific code for manipulating GL API entrypoints (dispatch stubs).
87 * Generate a dispatch function (entrypoint) which jumps through
88 * the given slot number (offset) in the current dispatch table.
94 /* 32 is chosen as something of a magic offset. For x86, the dispatch
113 * This function inserts a new dispatch offset into the assembly language
196 unsigned long dispatch = __glapi_sparc_get_dispatch(); local
200 unsigned long dispatch = (unsigned long) &_glapi_Dispatch; local
206 code[0] = template[0] | (dispatch >> 10);
209 code[2] = template[2] | (dispatch & 0x3ff);
219 code[0] = template[0] | (dispatch >> (3
[all...]
/external/mesa3d/src/mapi/glapi/
H A Dglapi.c62 _glapi_set_dispatch(struct _glapi_table *dispatch) argument
64 u_current_set((const struct mapi_table *) dispatch);
H A Dglapi_entrypoint.c28 * Arch-specific code for manipulating GL API entrypoints (dispatch stubs).
87 * Generate a dispatch function (entrypoint) which jumps through
88 * the given slot number (offset) in the current dispatch table.
94 /* 32 is chosen as something of a magic offset. For x86, the dispatch
113 * This function inserts a new dispatch offset into the assembly language
196 unsigned long dispatch = __glapi_sparc_get_dispatch(); local
200 unsigned long dispatch = (unsigned long) &_glapi_Dispatch; local
206 code[0] = template[0] | (dispatch >> 10);
209 code[2] = template[2] | (dispatch & 0x3ff);
219 code[0] = template[0] | (dispatch >> (3
[all...]
/external/guava/guava/src/com/google/common/eventbus/
H A DAsyncEventBus.java25 * 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 DEventBus.java124 * 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/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
H A Dglapi_gentable.c94 void **dispatch = (void **) disp; local
102 if(dispatch[i] == NULL)
103 dispatch[i] = p.v;
/external/jmonkeyengine/engine/src/networking/com/jme3/network/base/
H A DConnectorAdapter.java131 protected void dispatch( Message m ) method in class:ConnectorAdapter
175 dispatch( m );
H A DKernelAdapter.java164 protected void dispatch( Endpoint p, Message m ) method in class:KernelAdapter
238 dispatch( env.getSource(), m );
/external/openssh/
H A Ddispatch.c1 /* $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/chromium/third_party/libevent/
H A Devent-internal.h43 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 Dheaderparserhandler.py43 from mod_pywebsocket import dispatch namespace
165 dispatcher = dispatch.Dispatcher(
197 except dispatch.DispatchException, e:
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DEventDispatcher.cpp86 EventDispatcher(node, SimulatedMouseEvent::create(EventTypeNames::mouseover, node->document().domWindow(), underlyingEvent)).dispatch();
89 EventDispatcher(node, SimulatedMouseEvent::create(EventTypeNames::mousedown, node->document().domWindow(), underlyingEvent)).dispatch();
92 EventDispatcher(node, SimulatedMouseEvent::create(EventTypeNames::mouseup, node->document().domWindow(), underlyingEvent)).dispatch();
96 EventDispatcher(node, SimulatedMouseEvent::create(EventTypeNames::click, node->document().domWindow(), underlyingEvent)).dispatch();
101 bool EventDispatcher::dispatch() function in class:WebCore::EventDispatcher
122 // Ensure that after event dispatch, the event's target object is the
/external/chromium_org/third_party/WebKit/Source/core/testing/
H A DInspectorFrontendClientLocal.cpp55 void dispatch(const String& message) function in class:WebCore::InspectorBackendMessageQueue
125 m_messageQueue->dispatch(message);
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
H A Dheaderparserhandler.py43 from mod_pywebsocket import dispatch namespace
166 dispatcher = dispatch.Dispatcher(
202 except dispatch.DispatchException, e:
/external/chromium_org/third_party/libevent/
H A Devent-internal.h43 int (*dispatch)(struct event_base *, void *, struct timeval *); member in struct:eventop
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/common/
H A Ddri_test.c45 _glapi_set_dispatch(struct _glapi_table *dispatch) argument
/external/mesa3d/src/mesa/drivers/dri/common/
H A Ddri_test.c45 _glapi_set_dispatch(struct _glapi_table *dispatch) argument

Completed in 916 milliseconds

1234