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

1234

/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIDBEventDispatcher.cpp37 bool IDBEventDispatcher::dispatch(Event* event, WillBeHeapVector<RefPtrWillBeMember<EventTarget> >& eventTargets) function in class:blink::IDBEventDispatcher
/external/chromium_org/extensions/renderer/resources/
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 DCustomElementMicrotaskQueueBase.cpp12 void CustomElementMicrotaskQueueBase::dispatch() function in class:blink::CustomElementMicrotaskQueueBase
H A DCustomElementMicrotaskDispatcher.cpp49 Microtask::enqueueMicrotask(WTF::bind(&dispatch));
54 void CustomElementMicrotaskDispatcher::dispatch() function in class:blink::CustomElementMicrotaskDispatcher
H A DCustomElementMicrotaskRunQueue.cpp44 self->dispatch();
61 void CustomElementMicrotaskRunQueue::dispatch() function in class:blink::CustomElementMicrotaskRunQueue
64 m_syncQueue->dispatch();
66 m_asyncQueue->dispatch();
H A DCustomElementCallbackInvocation.cpp45 virtual void dispatch(Element*) OVERRIDE;
57 void AttachedDetachedInvocation::dispatch(Element* element) function in class:blink::AttachedDetachedInvocation
76 virtual void dispatch(Element*) OVERRIDE;
91 void AttributeChangedInvocation::dispatch(Element* element) function in class:blink::AttributeChangedInvocation
104 virtual void dispatch(Element*) OVERRIDE;
108 void CreatedInvocation::dispatch(Element* element) function in class:blink::CreatedInvocation
/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/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
H A DDispatcher.java24 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/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/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.cpp90 EventDispatcher(node, SimulatedMouseEvent::create(EventTypeNames::mouseover, node->document().domWindow(), underlyingEvent)).dispatch();
93 EventDispatcher(node, SimulatedMouseEvent::create(EventTypeNames::mousedown, node->document().domWindow(), underlyingEvent)).dispatch();
95 EventDispatcher(node, SimulatedMouseEvent::create(EventTypeNames::mouseup, node->document().domWindow(), underlyingEvent)).dispatch();
102 EventDispatcher(node, SimulatedMouseEvent::create(EventTypeNames::click, node->document().domWindow(), underlyingEvent)).dispatch();
107 bool EventDispatcher::dispatch() function in class:blink::EventDispatcher
109 TRACE_EVENT0("blink", "EventDispatcher::dispatch");
131 // Ensure that after event dispatch, the event's target object is the
/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
/external/okhttp/samples/static-server/src/main/java/com/squareup/okhttp/sample/
H A DSampleServer.java38 @Override public MockResponse dispatch(RecordedRequest request) { method in class:SampleServer
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
H A Dtest_dispatch.py33 """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...]

Completed in 473 milliseconds

1234