Searched refs:class_object (Results 1 – 5 of 5) sorted by relevance
/external/grpc-grpc/src/php/ext/grpc/ |
D | php7_wrapper.h | 62 #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.py | 267 def _ModifyClass(class_object, testcases, naming_type): argument 268 assert not getattr(class_object, '_id_suffix', None), ( 270 ' which already has parameterized methods.' % (class_object,)) 271 class_object._id_suffix = id_suffix = {} 274 for name, obj in class_object.__dict__.copy().items(): 277 delattr(class_object, name) 283 setattr(class_object, name, meth)
|
/external/tensorflow/tensorflow/python/framework/ |
D | test_combinations.py | 273 class_object = test_method_or_class 274 class_object._test_method_ids = test_method_ids = {} 275 for name, test_method in six.iteritems(class_object.__dict__.copy()): 278 delattr(class_object, name) 281 class_object.__name__, methods, test_method_ids, name, 287 setattr(class_object, method_name, method) 289 return class_object
|
/external/tensorflow/tensorflow/python/distribute/ |
D | combinations.py | 357 class_object = test_method_or_class 359 for name, test_method in six.iteritems(class_object.__dict__.copy()): 362 setattr(class_object, name, _multi_worker_test(test_method)) 363 return combination_decorator(class_object)
|
/external/protobuf/php/ext/google/protobuf/ |
D | protobuf.h | 212 #define PHP_PROTO_ALLOC_CLASS_OBJECT(class_object, class_type) \ argument 213 class_object* intern; \ 214 intern = (class_object*)emalloc(sizeof(class_object)); \ 215 memset(intern, 0, sizeof(class_object)); 217 #define PHP_PROTO_FREE_CLASS_OBJECT(class_object, class_object_free, handler) \ argument 484 #define PHP_PROTO_ALLOC_CLASS_OBJECT(class_object, class_type) \ argument 485 class_object* intern; \ 486 int size = sizeof(class_object) + zend_object_properties_size(class_type); \ 490 #define PHP_PROTO_FREE_CLASS_OBJECT(class_object, class_object_free, handler) \ argument
|