Home
last modified time | relevance | path

Searched refs:_dispatch (Results 1 - 12 of 12) sorted by relevance

/third_party/python/Lib/
H A Dpprint.py178 p = self._dispatch.get(type(object).__repr__, None)
204 _dispatch = {} variable in PrettyPrinter
221 _dispatch[dict.__repr__] = _pprint_dict
234 _dispatch[_collections.OrderedDict.__repr__] = _pprint_ordered_dict
242 _dispatch[list.__repr__] = _pprint_list
251 _dispatch[tuple.__repr__] = _pprint_tuple
270 _dispatch[set.__repr__] = _pprint_set
271 _dispatch[frozenset.__repr__] = _pprint_set
322 _dispatch[str.__repr__] = _pprint_str
343 _dispatch[byte
[all...]
/third_party/mesa3d/src/gallium/frontends/clover/core/
H A Dobject.hpp49 descriptor() : dispatch(&_dispatch) { in descriptor()
70 if (!o || o->dispatch != &_dispatch || in validate()
88 if (!d || d->dispatch != &_dispatch) in validate()
105 if (!d || d->dispatch != &_dispatch) in validate()
122 if (!d || d->dispatch != &_dispatch) in validate()
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-subset.hh47 _dispatch (const T &obj, hb_priority<1>, Ts&&... ds) HB_AUTO_RETURN
50 _dispatch (const T &obj, hb_priority<0>, Ts&&... ds) HB_AUTO_RETURN
55 ( _dispatch (obj, hb_prioritize, std::forward<Ts> (ds)...) )
H A Dhb-sanitize.hh148 _dispatch (const T &obj, hb_priority<1>, Ts&&... ds) HB_AUTO_RETURN
151 _dispatch (const T &obj, hb_priority<0>, Ts&&... ds) HB_AUTO_RETURN
156 ( _dispatch (obj, hb_prioritize, std::forward<Ts> (ds)...) )
H A Dhb-ot-layout.cc2009 _dispatch (const T &obj, hb_priority<1>, Ts&&... ds) HB_AUTO_RETURN
2012 _dispatch (const T &obj, hb_priority<0>, Ts&&... ds) HB_AUTO_RETURN
2017 ( _dispatch (obj, hb_prioritize, std::forward<Ts> (ds)...) )
/third_party/node/test/fixtures/wpt/resources/
H A Dchannel.sub.js167 this._dispatch("connect");
176 this._dispatch("close");
220 _dispatch(type, data) {
304 this._dispatch("message", msg);
H A Dtestharness.js63 this_obj._dispatch("start_callback", [properties],
69 this_obj._dispatch("test_state_callback", [test],
76 this_obj._dispatch("result_callback", [test],
85 this_obj._dispatch("completion_callback", [tests, harness_status],
111 WindowTestEnvironment.prototype._dispatch = function(selector, callback_args, message_arg) {
255 WorkerTestEnvironment.prototype._dispatch = function(message) {
285 this_obj._dispatch({
292 this_obj._dispatch({
299 this_obj._dispatch({
306 this_obj._dispatch({
[all...]
/third_party/python/Lib/xmlrpc/
H A Dserver.py64 def _dispatch(self, method, params):
80 def _dispatch(self, method, params):
178 If the registered instance has a _dispatch method then that
181 e.g. instance._dispatch('add',(2,3))
183 If the registered instance does not have a _dispatch method
193 instance does not have a _dispatch method, method names
248 using the _dispatch method and the result is returned as
263 response = self._dispatch(method, params)
290 # if the instance has a _dispatch method then we
293 elif not hasattr(self.instance, '_dispatch')
372 def _dispatch(self, method, params): global() member in SimpleXMLRPCDispatcher
[all...]
/third_party/python/Lib/email/
H A Dgenerator.py182 self._dispatch(msg)
205 def _dispatch(self, msg):
488 def _dispatch(self, msg):
204 def _dispatch(self, msg): global() member in Generator
485 def _dispatch(self, msg): global() member in DecodedGenerator
/third_party/mesa3d/src/gallium/frontends/clover/api/
H A Ddispatch.cpp26 const cl_icd_dispatch _dispatch = { member
H A Ddispatch.hpp33 extern const cl_icd_dispatch _dispatch;
/third_party/python/Lib/test/
H A Dtest_xmlrpc.py381 dispatcher._dispatch('dispatched_func', exp_params)
400 dispatcher._dispatch('dispatched_func', exp_params)
406 """Calls the registered instance's `_dispatch` function"""
414 def _dispatch(self, method, params): member in SimpleXMLRPCDispatcherTestCase.test_call_dispatch_func.TestInstance
421 dispatcher._dispatch(exp_method, exp_params)
432 dispatcher._dispatch('method', ('param',))
440 dispatcher._dispatch('method', ('param',))
447 dispatcher._dispatch('method', ('param',))

Completed in 13 milliseconds