/external/autotest/server/cros/faft/ |
D | rpc_proxy.py | 24 def __init__(self, call_method, name): argument 25 self.__call_method = call_method
|
/external/tensorflow/tensorflow/compiler/xla/python/ |
D | numpy_bridge.cc | 213 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/ |
D | auth_filters.h | 31 const char* url_scheme, grpc_slice call_host, grpc_slice call_method,
|
D | client_auth_filter.cc | 127 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/ |
D | remote_facade_factory.py | 50 def __init__(self, call_method, name): argument 51 self.__call_method = call_method
|
/external/grpc-grpc/test/core/security/ |
D | credentials_test.cc | 1147 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/ |
D | typeobject.c | 1256 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/ |
D | typeobject.c | 1503 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/ |
D | ext.py | 119 def call_method(self, name, args=None, kwargs=None, dyn_args=None, member in Extension
|
/external/python/cpython3/Modules/ |
D | _pickle.c | 407 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()
|