Home
last modified time | relevance | path

Searched refs:get_method (Results 1 – 15 of 15) sorted by relevance

/third_party/node/deps/v8/src/builtins/
Dbuiltins-async-iterator-gen.cc40 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/
Drequest_ctocpp.cc81 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/
Dcef_request_capi.h84 cef_string_userfree_t(CEF_CALLBACK* get_method)(struct _cef_request_t* self);
/third_party/python/Lib/test/
Dtest_urllib2.py1184 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())
Dtest_urllib.py1628 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/
Dtest_upload.py136 self.assertEqual(self.last_open.req.get_method(), 'POST')
/third_party/cef/libcef_dll/cpptoc/
Drequest_cpptoc.cc413 GetStruct()->get_method = request_get_method; in CefRequestCppToC()
/third_party/libinput/src/
Dlibinput-private.h265 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
Devdev-mt-touchpad-buttons.c975 tp->buttons.config_method.get_method = tp_button_config_click_get_method; in tp_init_buttons()
Dlibinput.c4284 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()
Devdev.c879 device->scroll.config.get_method = evdev_scroll_get_method; in evdev_init_button_scroll()
Devdev-mt-touchpad.c3138 tp->scroll.config_method.get_method = tp_scroll_config_scroll_method_get_method; in tp_init_scroll()
/third_party/python/Lib/urllib/
Drequest.py382 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/
Durllib.request.rst247 :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/
D3.3.rst2104 used by :meth:`~urllib.request.Request.get_method` to determine what HTTP method