/third_party/node/deps/v8/src/builtins/ |
D | builtins-async-iterator-gen.cc | 40 const SyncIteratorNodeGenerator& get_method, 53 auto get_method = [=](const TNode<JSReceiver> sync_iterator) { in Generate_AsyncFromSyncIteratorMethod() local 57 args, context, iterator, sent_value, get_method, if_method_undefined, in Generate_AsyncFromSyncIteratorMethod() 106 const SyncIteratorNodeGenerator& get_method, in Generate_AsyncFromSyncIteratorMethod() argument 125 TNode<Object> method = get_method(sync_iterator); in Generate_AsyncFromSyncIteratorMethod() 284 auto get_method = [=](const TNode<JSReceiver> unused) { in TF_BUILTIN() local 289 &args, context, iterator, value, get_method, UndefinedMethodHandler(), in TF_BUILTIN()
|
/third_party/cef/libcef_dll/ctocpp/ |
D | request_ctocpp.cc | 81 if (CEF_MEMBER_MISSING(_struct, get_method)) in GetMethod() 87 cef_string_userfree_t _retval = _struct->get_method(_struct); in GetMethod()
|
/third_party/cef/include/capi/ |
D | cef_request_capi.h | 84 cef_string_userfree_t(CEF_CALLBACK* get_method)(struct _cef_request_t* self);
|
/third_party/python/Lib/test/ |
D | test_urllib2.py | 1184 self.assertEqual(o.req.get_method(), "GET") 1895 self.assertEqual("POST", self.post.get_method()) 1896 self.assertEqual("GET", self.get.get_method()) 1897 self.assertEqual("HEAD", self.head.get_method()) 1898 self.assertEqual("PUT", self.put.get_method()) 1899 self.assertEqual("POST", self.force_post.get_method()) 1903 self.assertEqual("GET", self.get.get_method()) 1906 self.assertEqual("POST", self.get.get_method())
|
D | test_urllib.py | 1628 self.assertEqual(request.get_method(), 'GET') 1630 self.assertEqual(request.get_method(), 'POST') 1636 self.assertEqual(request.get_method(), 'HEAD') 1639 self.assertEqual(request.get_method(), 'HEAD') 1641 self.assertEqual(request.get_method(), 'GET') 1643 self.assertEqual(request.get_method(), 'HEAD')
|
/third_party/python/Lib/distutils/tests/ |
D | test_upload.py | 136 self.assertEqual(self.last_open.req.get_method(), 'POST')
|
/third_party/cef/libcef_dll/cpptoc/ |
D | request_cpptoc.cc | 413 GetStruct()->get_method = request_get_method; in CefRequestCppToC()
|
/third_party/libinput/src/ |
D | libinput-private.h | 265 enum libinput_config_scroll_method (*get_method)(struct libinput_device *device); member 281 enum libinput_config_click_method (*get_method)(struct libinput_device *device); member
|
D | evdev-mt-touchpad-buttons.c | 975 tp->buttons.config_method.get_method = tp_button_config_click_get_method; in tp_init_buttons()
|
D | libinput.c | 4284 return device->config.click_method->get_method(device); in libinput_device_config_click_get_method() 4390 return device->config.scroll_method->get_method(device); in libinput_device_config_scroll_get_method()
|
D | evdev.c | 879 device->scroll.config.get_method = evdev_scroll_get_method; in evdev_init_button_scroll()
|
D | evdev-mt-touchpad.c | 3138 tp->scroll.config_method.get_method = tp_scroll_config_scroll_method_get_method; in tp_init_scroll()
|
/third_party/python/Lib/urllib/ |
D | request.py | 382 def get_method(self): member in Request 518 sys.audit('urllib.Request', req.full_url, req.data, req.headers, req.get_method()) 663 m = req.get_method() 1173 A2 = "%s:%s" % (req.get_method(), 1267 request.get_method()) 1348 h.request(req.get_method(), req.selector, req.data, headers,
|
/third_party/python/Doc/library/ |
D | urllib.request.rst | 247 :attr:`~Request.method` attribute and is used by :meth:`get_method()`. 516 which means that :meth:`~Request.get_method` will do its normal computation 518 computation in :meth:`~Request.get_method`) either by providing a default 530 .. method:: Request.get_method() 538 get_method now looks at the value of :attr:`Request.method`.
|
/third_party/python/Doc/whatsnew/ |
D | 3.3.rst | 2104 used by :meth:`~urllib.request.Request.get_method` to determine what HTTP method
|