/third_party/python/Lib/ |
D | pprint.py | 177 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/ |
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, hb_forward<Ts> (ds)...) )
|
D | hb-sanitize.hh | 139 _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/ |
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/ |
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)...) )
|
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)...) ) in dispatch()
|
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/harfbuzz/src/ |
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, hb_forward<Ts> (ds)...) )
|
D | hb-sanitize.hh | 147 _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()
|
D | hb-ot-layout.cc | 1994 _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/ |
D | named_template_params.hpp | 156 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/ |
D | pointer_router.dart | 72 void _dispatch(PointerEvent event, _RouteEntry entry) { 102 _dispatch(event, entry); 107 _dispatch(event, entry);
|
/third_party/python/Doc/library/ |
D | xmlrpc.server.rst | 101 :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/ |
D | generator.py | 181 self._dispatch(msg) 204 def _dispatch(self, msg): member in Generator 485 def _dispatch(self, msg): member in DecodedGenerator
|
/third_party/python/Lib/xmlrpc/ |
D | server.py | 263 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/ |
D | dispatch.hpp | 33 extern const cl_icd_dispatch _dispatch;
|
D | dispatch.cpp | 26 const cl_icd_dispatch _dispatch = { variable
|
/third_party/node/test/fixtures/wpt/resources/ |
D | testharness.js | 72 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/ |
D | test_xmlrpc.py | 369 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/ |
D | notification_listener.dart | 45 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/ |
D | fuchsia_compilation_trace.txt | 1230 dart:io,_IOService,_dispatch
|
/third_party/flutter/engine/flutter/shell/platform/fuchsia/flutter/ |
D | compilation_trace.txt | 2083 dart:io,_IOService,_dispatch 3457 package:flutter/src/gestures/pointer_router.dart,PointerRouter,_dispatch
|