Home
last modified time | relevance | path

Searched refs:_dispatch (Results 1 – 17 of 17) sorted by relevance

/external/python/cpython3/Lib/
Dpprint.py164 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/
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()
/external/perfetto/ui/src/frontend/
Dglobals.ts55 private _dispatch?: Dispatch = undefined;
70 this._dispatch = dispatch;
94 return assertExists(this._dispatch);
160 this._dispatch = undefined;
/external/python/cpython2/Doc/library/
Dsimplexmlrpcserver.rst91 :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/
Dgenerator.py108 self._dispatch(msg)
120 def _dispatch(self, msg): member in Generator
330 def _dispatch(self, msg): member in DecodedGenerator
/external/python/cpython2/Lib/
DSimpleXMLRPCServer.py260 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/python/cpython3/Doc/library/
Dxmlrpc.server.rst101 :meth:`_dispatch` method, it is called with the requested method name and the
102 parameters from the request. Its API is ``def _dispatch(self, method, params)``
106 :meth:`_dispatch` is returned to the client as the result. If *instance* does
107 not have a :meth:`_dispatch` method, it is searched for an attribute matching
111 have a :meth:`_dispatch` method, then if the requested method name contains
315 :meth:`_dispatch` method, it is called with the requested method name and the
317 result. If instance does not have a :meth:`_dispatch` method, it is searched
/external/python/cpython3/Lib/email/
Dgenerator.py181 self._dispatch(msg)
200 def _dispatch(self, msg): member in Generator
481 def _dispatch(self, msg): member in DecodedGenerator
/external/python/cpython3/Lib/xmlrpc/
Dserver.py262 response = self._dispatch(method, params)
364 results.append([self._dispatch(method_name, params)])
382 def _dispatch(self, method, params): member in SimpleXMLRPCDispatcher
416 return self.instance._dispatch(method, params)
/external/mesa3d/src/gallium/state_trackers/clover/api/
Ddispatch.cpp26 const _cl_icd_dispatch _dispatch = { variable
Ddispatch.hpp771 extern const _cl_icd_dispatch _dispatch;
/external/python/cpython3/Lib/test/
Dtest_xmlrpc.py365 dispatcher._dispatch('dispatched_func', exp_params)
384 dispatcher._dispatch('dispatched_func', exp_params)
398 def _dispatch(self, method, params): member in SimpleXMLRPCDispatcherTestCase.test_call_dispatch_func.TestInstance
405 dispatcher._dispatch(exp_method, exp_params)
416 dispatcher._dispatch('method', ('param',))
424 dispatcher._dispatch('method', ('param',))
431 dispatcher._dispatch('method', ('param',))
/external/python/cpython2/Parser/
Dasdl.py302 meth = self._dispatch(object)
316 def _dispatch(self, object): member in VisitorBase
/external/autotest/client/cros/multimedia/
Dmultimedia_xmlrpc_server.py71 def _dispatch(self, method, params): member in MultimediaXmlRpcDelegate
/external/python/cpython2/Lib/compiler/
Dtransformer.py105 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/
Drpc_functions.py122 def _dispatch(self, method, params): member in RPCFunctions
/external/toolchain-utils/cros_utils/
Dstats.py248 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)