Home
last modified time | relevance | path

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

/third_party/python/Lib/
Dpprint.py177 p = self._dispatch.get(type(object).__repr__, None)
203 _dispatch = {} variable in PrettyPrinter
220 _dispatch[dict.__repr__] = _pprint_dict
233 _dispatch[_collections.OrderedDict.__repr__] = _pprint_ordered_dict
241 _dispatch[list.__repr__] = _pprint_list
250 _dispatch[tuple.__repr__] = _pprint_tuple
269 _dispatch[set.__repr__] = _pprint_set
270 _dispatch[frozenset.__repr__] = _pprint_set
321 _dispatch[str.__repr__] = _pprint_str
342 _dispatch[bytes.__repr__] = _pprint_bytes
[all …]
/third_party/flutter/skia/third_party/externals/harfbuzz/src/
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, hb_forward<Ts> (ds)...) )
Dhb-sanitize.hh139 _dispatch (const T &obj, hb_priority<1>, Ts&&... ds) HB_AUTO_RETURN
142 _dispatch (const T &obj, hb_priority<0>, Ts&&... ds) HB_AUTO_RETURN
147 ( _dispatch (obj, hb_prioritize, hb_forward<Ts> (ds)...) ) in dispatch()
/third_party/mesa3d/src/gallium/frontends/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()
/third_party/skia/third_party/externals/harfbuzz/src/
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)...) )
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)...) ) in dispatch()
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/harfbuzz/src/
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, hb_forward<Ts> (ds)...) )
Dhb-sanitize.hh147 _dispatch (const T &obj, hb_priority<1>, Ts&&... ds) HB_AUTO_RETURN
150 _dispatch (const T &obj, hb_priority<0>, Ts&&... ds) HB_AUTO_RETURN
155 ( _dispatch (obj, hb_prioritize, hb_forward<Ts> (ds)...) ) in dispatch()
Dhb-ot-layout.cc1994 _dispatch (const T &obj, hb_priority<1>, Ts&&... ds) HB_AUTO_RETURN
1997 _dispatch (const T &obj, hb_priority<0>, Ts&&... ds) HB_AUTO_RETURN
2002 ( _dispatch (obj, hb_prioritize, hb_forward<Ts> (ds)...) )
/third_party/boost/boost/detail/
Dnamed_template_params.hpp156 struct get_##TYPE##_dispatch { }; \
157 template <> struct get_##TYPE##_dispatch<1> { \
160 template <> struct get_##TYPE##_dispatch<0> { \
166 typedef typename get_##TYPE##_dispatch<is_named>::type Selector; \
/third_party/flutter/flutter/packages/flutter/lib/src/gestures/
Dpointer_router.dart72 void _dispatch(PointerEvent event, _RouteEntry entry) {
102 _dispatch(event, entry);
107 _dispatch(event, entry);
/third_party/python/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
/third_party/python/Lib/email/
Dgenerator.py181 self._dispatch(msg)
204 def _dispatch(self, msg): member in Generator
485 def _dispatch(self, msg): member in DecodedGenerator
/third_party/python/Lib/xmlrpc/
Dserver.py263 response = self._dispatch(method, params)
365 results.append([self._dispatch(method_name, params)])
383 def _dispatch(self, method, params): member in SimpleXMLRPCDispatcher
417 return self.instance._dispatch(method, params)
/third_party/mesa3d/src/gallium/frontends/clover/api/
Ddispatch.hpp33 extern const cl_icd_dispatch _dispatch;
Ddispatch.cpp26 const cl_icd_dispatch _dispatch = { variable
/third_party/node/test/fixtures/wpt/resources/
Dtestharness.js72 this_obj._dispatch("start_callback", [properties],
78 this_obj._dispatch("test_state_callback", [test],
85 this_obj._dispatch("result_callback", [test],
94 this_obj._dispatch("completion_callback", [tests, harness_status],
119 WindowTestEnvironment.prototype._dispatch = function(selector, callback_args, message_arg) { method in WindowTestEnvironment
267 WorkerTestEnvironment.prototype._dispatch = function(message) { method in WorkerTestEnvironment
297 this_obj._dispatch({
304 this_obj._dispatch({
311 this_obj._dispatch({
318 this_obj._dispatch({
/third_party/python/Lib/test/
Dtest_xmlrpc.py369 dispatcher._dispatch('dispatched_func', exp_params)
388 dispatcher._dispatch('dispatched_func', exp_params)
402 def _dispatch(self, method, params): member in SimpleXMLRPCDispatcherTestCase.test_call_dispatch_func.TestInstance
409 dispatcher._dispatch(exp_method, exp_params)
420 dispatcher._dispatch('method', ('param',))
428 dispatcher._dispatch('method', ('param',))
435 dispatcher._dispatch('method', ('param',))
/third_party/flutter/flutter/packages/flutter/lib/src/widgets/
Dnotification_listener.dart45 if (widget._dispatch(this, element)) // that function checks the type dynamically
125 bool _dispatch(Notification notification, Element element) {
/third_party/flutter/engine/flutter/lib/snapshot/
Dfuchsia_compilation_trace.txt1230 dart:io,_IOService,_dispatch
/third_party/flutter/engine/flutter/shell/platform/fuchsia/flutter/
Dcompilation_trace.txt2083 dart:io,_IOService,_dispatch
3457 package:flutter/src/gestures/pointer_router.dart,PointerRouter,_dispatch