/external/autotest/client/common_lib/cros/fake_device_server/client_lib/ |
D | commands.py | 63 request.get_method = lambda: 'PUT' 65 request.get_method = lambda: 'PATCH'
|
D | registration.py | 54 request.get_method = lambda: 'PUT' 56 request.get_method = lambda: 'PATCH'
|
/external/rust/crates/pin-project-lite/src/ |
D | lib.rs | 907 [$method_ident:ident $get_method:ident $($mut:ident)?] 914 [$method_ident $get_method $($mut)?] 922 [$method_ident:ident $get_method:ident $($mut:ident)?] 935 let Self { $($field),* } = self.$get_method(); 989 [$method_ident:ident $get_method:ident $($mut:ident)?] 1006 match self.$get_method() {
|
/external/python/cpython3/Lib/test/ |
D | test_urllib2.py | 1200 self.assertEqual(o.req.get_method(), "GET") 1896 self.assertEqual("POST", self.post.get_method()) 1897 self.assertEqual("GET", self.get.get_method()) 1898 self.assertEqual("HEAD", self.head.get_method()) 1899 self.assertEqual("PUT", self.put.get_method()) 1900 self.assertEqual("POST", self.force_post.get_method()) 1904 self.assertEqual("GET", self.get.get_method()) 1907 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')
|
/external/pigweed/pw_rpc/py/pw_rpc/ |
D | client.py | 344 return descriptors.get_method(self.rpcs, method_name) 443 return descriptors.get_method(self.services, method_name)
|
D | descriptors.py | 406 def get_method(service_accessor: ServiceAccessor, name: str): function
|
/external/python/cpython2/Lib/test/ |
D | test_urllib2.py | 946 self.assertEqual(o.req.get_method(), "GET") 1330 self.assertEqual("POST", self.post.get_method()) 1331 self.assertEqual("GET", self.get.get_method()) 1335 self.assertEqual("GET", self.get.get_method()) 1338 self.assertEqual("POST", self.get.get_method())
|
/external/python/cpython2/Lib/distutils/tests/ |
D | test_upload.py | 124 self.assertEqual(self.last_open.req.get_method(), 'POST')
|
/external/python/cpython2/Lib/ |
D | urllib2.py | 256 def get_method(self): member in Request 576 m = req.get_method() 1031 A2 = "%s:%s" % (req.get_method(), 1195 h.request(req.get_method(), req.get_selector(), req.data, headers)
|
/external/python/setuptools/setuptools/_distutils/tests/ |
D | test_upload.py | 136 self.assertEqual(self.last_open.req.get_method(), 'POST')
|
/external/python/cpython3/Lib/distutils/tests/ |
D | test_upload.py | 136 self.assertEqual(self.last_open.req.get_method(), 'POST')
|
/external/python/cpython3/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,
|
/external/rust/crates/grpcio-compiler/src/ |
D | codegen.rs | 552 .get_method() in new()
|
/external/rust/crates/jni/src/wrapper/ |
D | jnienv.rs | 466 get_method: C, in get_method_id_base() 478 let res: Result<R> = catch!({ get_method(&class, &ffi_name, &sig) }); in get_method_id_base()
|
/external/python/cpython3/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`.
|
/external/python/cpython2/Doc/library/ |
D | urllib2.rst | 355 .. method:: Request.get_method()
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.3.rst | 2104 used by :meth:`~urllib.request.Request.get_method` to determine what HTTP method
|
/external/rust/crates/protobuf/src/ |
D | descriptor.rs | 4041 pub fn get_method(&self) -> &[MethodDescriptorProto] { in get_method() method
|