Home
last modified time | relevance | path

Searched refs:call_method (Results 1 – 10 of 10) sorted by relevance

/external/autotest/server/cros/faft/
Drpc_proxy.py24 def __init__(self, call_method, name): argument
25 self.__call_method = call_method
/external/tensorflow/tensorflow/compiler/xla/python/
Dnumpy_bridge.cc213 auto call_method = [o, &error](const string& method) -> StatusOr<PyObject*> { in XlaShapeFromPyShape() local
224 TF_ASSIGN_OR_RETURN(np_type, call_method("numpy_dtype")); in XlaShapeFromPyShape()
241 TF_ASSIGN_OR_RETURN(py_subshapes, call_method("tuple_shapes")); in XlaShapeFromPyShape()
260 TF_ASSIGN_OR_RETURN(py_dimensions, call_method("dimensions")); in XlaShapeFromPyShape()
261 TF_ASSIGN_OR_RETURN(py_minor_to_major, call_method("minor_to_major")); in XlaShapeFromPyShape()
/external/grpc-grpc/src/core/lib/security/transport/
Dauth_filters.h31 const char* url_scheme, grpc_slice call_host, grpc_slice call_method,
Dclient_auth_filter.cc127 const char* url_scheme, grpc_slice call_host, grpc_slice call_method, in grpc_auth_metadata_context_build() argument
130 char* service = grpc_slice_to_c_string(call_method); in grpc_auth_metadata_context_build()
/external/autotest/server/cros/multimedia/
Dremote_facade_factory.py50 def __init__(self, call_method, name): argument
51 self.__call_method = call_method
/external/grpc-grpc/test/core/security/
Dcredentials_test.cc1147 const char* call_method; member
1190 grpc_slice call_method = in test_auth_metadata_context() local
1191 grpc_slice_from_copied_string(test_cases[i].call_method); in test_auth_metadata_context()
1194 grpc_auth_metadata_context_build(url_scheme, call_host, call_method, in test_auth_metadata_context()
1210 grpc_slice_unref(call_method); in test_auth_metadata_context()
/external/python/cpython2/Objects/
Dtypeobject.c1256 call_method(PyObject *o, char *name, PyObject **nameobj, char *format, ...) in call_method() function
5023 return call_method(self, OPSTR, &cache_str, "()"); \
5031 return call_method(self, OPSTR, &cache_str, "(" ARGCODES ")", arg1); \
5113 return call_method(self, OPSTR, &cache_str, \
5121 PyObject *res = call_method(self, "__len__", &len_str, "()");
5190 return call_method(self, "__getslice__", &getslice_str,
5201 res = call_method(self, "__delitem__", &delitem_str,
5204 res = call_method(self, "__setitem__", &setitem_str,
5222 res = call_method(self, "__delslice__", &delslice_str,
5229 res = call_method(self, "__setslice__", &setslice_str,
[all …]
/external/python/cpython3/Objects/
Dtypeobject.c1503 call_method(PyObject *obj, _Py_Identifier *name, in call_method() function
5955 return call_method(self, &id, NULL, 0); \
5964 return call_method(self, &id, stack, 1); \
6045 PyObject *res = call_method(self, &PyId___len__, NULL, 0); in slot_sq_length()
6079 retval = call_method(self, &PyId___getitem__, args, 1); in slot_sq_item()
6098 res = call_method(self, &PyId___delitem__, stack, 1); in slot_sq_ass_item()
6102 res = call_method(self, &PyId___setitem__, stack, 2); in slot_sq_ass_item()
6157 res = call_method(self, &PyId___delitem__, stack, 1); in slot_mp_ass_subscript()
6161 res = call_method(self, &PyId___setitem__, stack, 2); in slot_mp_ass_subscript()
6195 return call_method(self, &PyId___pow__, stack, 2); in slot_nb_power()
[all …]
/external/libchrome/third_party/jinja2/
Dext.py119 def call_method(self, name, args=None, kwargs=None, dyn_args=None, member in Extension
/external/python/cpython3/Modules/
D_pickle.c407 call_method(PyObject *func, PyObject *self, PyObject *obj) in call_method() function
3585 pid = call_method(self->pers_func, self->pers_func_self, obj); in save_pers()
5625 obj = call_method(self->pers_func, self->pers_func_self, pid); in load_persid()
5652 obj = call_method(self->pers_func, self->pers_func_self, pid); in load_binpersid()