Home
last modified time | relevance | path

Searched refs:class_object (Results 1 – 4 of 4) sorted by relevance

/external/grpc-grpc/src/php/ext/grpc/
Dphp7_wrapper.h62 #define PHP_GRPC_FREE_WRAPPED_FUNC_START(class_object) \ argument
63 void free_##class_object(void *object TSRMLS_DC) { \
64 class_object *p = (class_object *)object;
70 #define PHP_GRPC_ALLOC_CLASS_OBJECT(class_object) \ argument
71 class_object *intern; \
73 intern = (class_object *)emalloc(sizeof(class_object)); \
74 memset(intern, 0, sizeof(class_object));
76 #define PHP_GRPC_FREE_CLASS_OBJECT(class_object, handler) \ argument
79 free_##class_object, NULL TSRMLS_CC); \
149 #define PHP_GRPC_INIT_HANDLER(class_object, handler_name) argument
[all …]
/external/protobuf/python/google/protobuf/internal/
D_parameterized.py261 def _ModifyClass(class_object, testcases, naming_type): argument
262 assert not getattr(class_object, '_id_suffix', None), (
264 ' which already has parameterized methods.' % (class_object,))
265 class_object._id_suffix = id_suffix = {}
268 for name, obj in class_object.__dict__.copy().items():
271 delattr(class_object, name)
277 setattr(class_object, name, meth)
/external/tensorflow/tensorflow/contrib/distribute/python/
Dcombinations.py128 class_object = test_method_or_class
129 class_object._test_method_ids = test_method_ids = {}
130 for name, test_method in six.iteritems(class_object.__dict__.copy()):
133 delattr(class_object, name)
136 class_object.__name__, methods, test_method_ids, name,
141 setattr(class_object, method_name, method)
143 return class_object
/external/libtextclassifier/utils/java/
Djni-base.h63 jclass class_object, F function, in CallJniMethod0() argument
66 const jmethodID method = env->GetMethodID(class_object, method_name.c_str(), in CallJniMethod0()