HomeSort by relevance Sort by last modified time
    Searched defs:dispatch (Results 1 - 25 of 148) sorted by null

1 2 3 4 5 6

  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBEventDispatcher.cpp 37 bool IDBEventDispatcher::dispatch(Event* event, Vector<RefPtr<EventTarget> >& eventTargets) function in class:WebCore::IDBEventDispatcher
  /external/chromium_org/chrome/renderer/resources/extensions/
unload_event.js 28 // dispatch() is called from C++.
29 exports.dispatch = function() {
  /external/mockwebserver/src/main/java/com/google/mockwebserver/
Dispatcher.java 26 public abstract MockResponse dispatch(RecordedRequest request) throws InterruptedException; method in class:Dispatcher
QueueDispatcher.java 31 @Override public MockResponse dispatch(RecordedRequest request) throws InterruptedException { method in class:QueueDispatcher
  /external/chromium_org/third_party/WebKit/Source/core/dom/
CustomElementCallbackInvocation.cpp 47 virtual void dispatch(Element*) OVERRIDE;
50 void CreatedInvocation::dispatch(Element* element) function in class:WebCore::CreatedInvocation
62 virtual void dispatch(Element*) OVERRIDE;
74 void EnteredLeftDocumentInvocation::dispatch(Element* element) function in class:WebCore::EnteredLeftDocumentInvocation
93 virtual void dispatch(Element*) OVERRIDE;
108 void AttributeChangedInvocation::dispatch(Element* element) function in class:WebCore::AttributeChangedInvocation
CustomElementCallbackDispatcher.cpp 51 bool CustomElementCallbackDispatcher::dispatch() function in class:WebCore::CustomElementCallbackDispatcher
EventDispatcher.cpp 87 EventDispatcher(node, SimulatedMouseEvent::create(eventNames().mouseoverEvent, node->document()->defaultView(), underlyingEvent)).dispatch();
90 EventDispatcher(node, SimulatedMouseEvent::create(eventNames().mousedownEvent, node->document()->defaultView(), underlyingEvent)).dispatch();
93 EventDispatcher(node, SimulatedMouseEvent::create(eventNames().mouseupEvent, node->document()->defaultView(), underlyingEvent)).dispatch();
97 EventDispatcher(node, SimulatedMouseEvent::create(eventNames().clickEvent, node->document()->defaultView(), underlyingEvent)).dispatch();
102 bool EventDispatcher::dispatch() function in class:WebCore::EventDispatcher
123 // Ensure that after event dispatch, the event's target object is the
  /external/chromium_org/third_party/WebKit/Source/core/page/
FrameActionScheduler.cpp 46 // Only dispatch events to nodes that are in the document
87 dispatch();
91 void FrameActionScheduler::dispatch() function in class:WebCore::FrameActionScheduler
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
glapi_gentable.c 94 void **dispatch = (void **) disp; local
102 if(dispatch[i] == NULL)
103 dispatch[i] = p.v;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mapi/glapi/
glapi_entrypoint.c 28 * 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 >> (32 + 10))
    [all...]
  /external/guava/guava/src/com/google/common/eventbus/
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
70 * Dispatch {@code events} in the order they were posted, regardless of
81 dispatch(eventWithHandler.event, eventWithHandler.handler); method
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
    [all...]
  /external/mesa3d/src/mapi/glapi/
glapi_entrypoint.c 28 * 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 >> (32 + 10))
    [all...]
  /external/openssh/
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);
  /frameworks/support/v4/eclair/android/support/v4/view/
KeyEventCompatEclair.java 28 public static boolean dispatch(KeyEvent event, KeyEvent.Callback receiver, Object state, method in class:KeyEventCompatEclair
30 return event.dispatch(receiver, (KeyEvent.DispatcherState)state, target);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
visitor.py 40 self.dispatch(child, *args)
42 def dispatch(self, node, *args): member in class:ASTVisitor
54 ## print "dispatch", className
56 ## print "dispatch", className, (meth and meth.__name__ or '')
62 visitor.visit = self.dispatch
63 self.dispatch(tree, *args) # XXX *args make sense?
74 def dispatch(self, node, *args): member in class:ExampleASTVisitor
82 print "dispatch", className, (meth and meth.__name__ or '')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
WidgetRedirector.py 35 # whose action is to dispatch on the operation passed to the widget:
36 tk.createcommand(w, self.dispatch)
68 def dispatch(self, operation, *args): member in class:WidgetRedirector
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
visitor.py 40 self.dispatch(child, *args)
42 def dispatch(self, node, *args): member in class:ASTVisitor
54 ## print "dispatch", className
56 ## print "dispatch", className, (meth and meth.__name__ or '')
62 visitor.visit = self.dispatch
63 self.dispatch(tree, *args) # XXX *args make sense?
74 def dispatch(self, node, *args): member in class:ExampleASTVisitor
82 print "dispatch", className, (meth and meth.__name__ or '')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
WidgetRedirector.py 35 # whose action is to dispatch on the operation passed to the widget:
36 tk.createcommand(w, self.dispatch)
68 def dispatch(self, operation, *args): member in class:WidgetRedirector
  /external/chromium_org/remoting/base/
dispatch_win.h 20 namespace dispatch { namespace in namespace:remoting
633 } // namespace dispatch
  /external/chromium_org/third_party/WebKit/Source/core/testing/
InspectorFrontendClientLocal.cpp 55 void dispatch(const String& message) function in class:WebCore::InspectorBackendMessageQueue
89 // Dispatch can lead to the timer destruction -> schedule the next shot first.
127 m_messageQueue->dispatch(message);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_print.py 15 # A dispatch table all 8 combinations of providing
20 dispatch = { variable
55 fn = dispatch[(sep is not NotDefined,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_print.py 15 # A dispatch table all 8 combinations of providing
20 dispatch = { variable
55 fn = dispatch[(sep is not NotDefined,
  /external/chromium/third_party/libevent/
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/
headerparserhandler.py 43 from mod_pywebsocket import dispatch namespace
165 dispatcher = dispatch.Dispatcher(
197 except dispatch.DispatchException, e:
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
headerparserhandler.py 43 from mod_pywebsocket import dispatch namespace
166 dispatcher = dispatch.Dispatcher(
202 except dispatch.DispatchException, e:
204 'mod_pywebsocket: Dispatch failed for error: %s' % e,

Completed in 5306 milliseconds

1 2 3 4 5 6