/external/python/cpython3/Lib/ |
D | pprint.py | 164 p = self._dispatch.get(type(object).__repr__, None) 178 _dispatch = {} variable in PrettyPrinter 192 _dispatch[dict.__repr__] = _pprint_dict 205 _dispatch[_collections.OrderedDict.__repr__] = _pprint_ordered_dict 213 _dispatch[list.__repr__] = _pprint_list 222 _dispatch[tuple.__repr__] = _pprint_tuple 241 _dispatch[set.__repr__] = _pprint_set 242 _dispatch[frozenset.__repr__] = _pprint_set 293 _dispatch[str.__repr__] = _pprint_str 314 _dispatch[bytes.__repr__] = _pprint_bytes [all …]
|
/external/mesa3d/src/gallium/state_trackers/clover/core/ |
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()
|
/external/python/cpython2/Doc/library/ |
D | simplexmlrpcserver.rst | 91 :meth:`_dispatch` method, it is called with the requested method name and the 92 parameters from the request. Its API is ``def _dispatch(self, method, params)`` 96 :meth:`_dispatch` is returned to the client as the result. If *instance* does 97 not have a :meth:`_dispatch` method, it is searched for an attribute matching 101 have a :meth:`_dispatch` method, then if the requested method name contains 253 :meth:`_dispatch` method, it is called with the requested method name and the 255 result. If instance does not have a :meth:`_dispatch` method, it is searched
|
/external/python/cpython2/Lib/email/ |
D | generator.py | 108 self._dispatch(msg) 120 def _dispatch(self, msg): member in Generator 330 def _dispatch(self, msg): member in DecodedGenerator
|
/external/python/cpython2/Lib/ |
D | SimpleXMLRPCServer.py | 260 response = self._dispatch(method, params) 364 results.append([self._dispatch(method_name, params)]) 378 def _dispatch(self, method, params): member in SimpleXMLRPCDispatcher 407 return self.instance._dispatch(method, params)
|
/external/bart/bart/sched/ |
D | SchedMultiAssert.py | 182 return lambda *args, **kwargs: self._dispatch(attr_name, *args, **kwargs) 201 def _dispatch(self, func_name, *args, **kwargs): member in SchedMultiAssert
|
/external/python/cpython3/Doc/library/ |
D | xmlrpc.server.rst | 95 :meth:`_dispatch` method, it is called with the requested method name and the 96 parameters from the request. Its API is ``def _dispatch(self, method, params)`` 100 :meth:`_dispatch` is returned to the client as the result. If *instance* does 101 not have a :meth:`_dispatch` method, it is searched for an attribute matching 105 have a :meth:`_dispatch` method, then if the requested method name contains 272 :meth:`_dispatch` method, it is called with the requested method name and the 274 result. If instance does not have a :meth:`_dispatch` method, it is searched
|
/external/python/cpython3/Lib/email/ |
D | generator.py | 181 self._dispatch(msg) 200 def _dispatch(self, msg): member in Generator 481 def _dispatch(self, msg): member in DecodedGenerator
|
/external/python/cpython3/Lib/xmlrpc/ |
D | server.py | 256 response = self._dispatch(method, params) 354 results.append([self._dispatch(method_name, params)]) 368 def _dispatch(self, method, params): member in SimpleXMLRPCDispatcher 397 return self.instance._dispatch(method, params)
|
/external/mesa3d/src/gallium/state_trackers/clover/api/ |
D | dispatch.cpp | 26 const _cl_icd_dispatch _dispatch = { variable
|
D | dispatch.hpp | 771 extern const _cl_icd_dispatch _dispatch;
|
/external/autotest/client/cros/multimedia/ |
D | multimedia_xmlrpc_server.py | 69 def _dispatch(self, method, params): member in MultimediaXmlRpcDelegate
|
/external/python/cpython2/Parser/ |
D | asdl.py | 302 meth = self._dispatch(object) 316 def _dispatch(self, object): member in VisitorBase
|
/external/python/cpython2/Lib/compiler/ |
D | transformer.py | 105 self._dispatch = {} 108 self._dispatch[value] = getattr(self, name) 109 self._dispatch[token.NEWLINE] = self.com_NEWLINE 798 return self._dispatch[node[0]] 805 return self._dispatch[node[0]](node[1:])
|
/external/autotest/client/cros/faft/ |
D | rpc_functions.py | 121 def _dispatch(self, method, params): member in RPCFunctions
|
/external/toolchain-utils/cros_utils/ |
D | stats.py | 248 self._dispatch = {} 251 if t in self._dispatch.keys(): 253 self._dispatch[t] = func 254 self._types = self._dispatch.keys() 259 return apply(self._dispatch[type(arg1)], (arg1,) + args, kw)
|