/third_party/python/Lib/ |
H A D | pprint.py | 178 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 D | object.hpp | 49 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 D | hb-subset.hh | 47 _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 D | hb-sanitize.hh | 148 _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 D | hb-ot-layout.cc | 2009 _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 D | channel.sub.js | 167 this._dispatch("connect"); 176 this._dispatch("close"); 220 _dispatch(type, data) { 304 this._dispatch("message", msg);
|
H A D | testharness.js | 63 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 D | server.py | 64 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 D | generator.py | 182 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 D | dispatch.cpp | 26 const cl_icd_dispatch _dispatch = { member
|
H A D | dispatch.hpp | 33 extern const cl_icd_dispatch _dispatch;
|
/third_party/python/Lib/test/ |
H A D | test_xmlrpc.py | 381 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',))
|