Searched defs:_Method (Results 1 - 7 of 7) sorted by relevance

/external/autotest/server/cros/faft/
H A Drpc_proxy.py14 class _Method: class in inherits:
30 return _Method(self.__call_method, "%s.%s" % (self.__name, name))
58 """Return a _Method object only, not its real object."""
59 return _Method(self.__call_faft_client, name)
/external/python/cpython3/Lib/
H A Dcrypt.py13 class _Method(_namedtuple('_Method', 'name ident salt_chars total_size')): class in inherits:_namedtuple('_Method', 'name ident salt_chars total_size'
45 if salt is None or isinstance(salt, _Method):
51 METHOD_CRYPT = _Method('CRYPT', None, 2, 13)
52 METHOD_MD5 = _Method('MD5', '1', 8, 34)
53 METHOD_SHA256 = _Method('SHA256', '5', 16, 63)
54 METHOD_SHA512 = _Method('SHA512', '6', 16, 106)
/external/libmojo/mojo/public/tools/bindings/pylib/mojom/generate/
H A Dtranslate.py383 def _Method(module, parsed_method, interface): function
615 _Method(module, method, interface), interface.methods_data)
/external/autotest/server/cros/multimedia/
H A Dremote_facade_factory.py38 class _Method: class in inherits:
56 return _Method(self.__call_method, "%s.%s" % (self.__name, name))
98 """Return a _Method object only, not its real object."""
99 return _Method(self.__call_proxy, name)
/external/autotest/client/cros/chameleon/
H A Dchameleon.py39 class _Method(object): class in inherits:object
54 """Constructs a _Method.
74 @return: a callable _Method object.
77 return _Method(self.__call_server, "%s.%s" % (self._name, name))
193 """Get the callable _Method object.
198 @return: a callable _Method object.
201 return _Method(self.__call_server, name)
/external/python/cpython2/Lib/
H A Dxmlrpclib.py1234 class _Method: class in inherits:
1241 return _Method(self.__send, "%s.%s" % (self.__name, name))
1620 return _Method(self.__request, name)
/external/python/cpython3/Lib/xmlrpc/
H A Dclient.py1103 class _Method: class in inherits:
1110 return _Method(self.__send, "%s.%s" % (self.__name, name))
1470 return _Method(self.__request, name)

Completed in 237 milliseconds