/ext-ds/src/php/iterators/ |
H A D | php_htable_iterator.h | 17 … *php_ds_htable_get_value_iterator_ex(zend_class_entry *ce, zval *obj, int by_ref, ds_htable_t *h); 18 … *php_ds_htable_get_key_iterator_ex (zend_class_entry *ce, zval *obj, int by_ref, ds_htable_t *h); 19 … *php_ds_htable_get_pair_iterator_ex (zend_class_entry *ce, zval *obj, int by_ref, ds_htable_t *h); 20 … *php_ds_htable_get_assoc_iterator_ex(zend_class_entry *ce, zval *obj, int by_ref, ds_htable_t *h);
|
H A D | php_htable_iterator.c | 163 int by_ref in php_ds_htable_create_htable_iterator() argument 167 if (by_ref) { in php_ds_htable_create_htable_iterator() 196 int by_ref, in php_ds_htable_get_value_iterator_ex() argument 200 obj, table, &php_ds_htable_get_value_iterator_funcs, by_ref); in php_ds_htable_get_value_iterator_ex() 206 int by_ref, in php_ds_htable_get_key_iterator_ex() argument 210 obj, table, &php_ds_htable_get_key_iterator_funcs, by_ref); in php_ds_htable_get_key_iterator_ex() 216 int by_ref, in php_ds_htable_get_pair_iterator_ex() argument 220 obj, table, &php_ds_htable_get_pair_iterator_funcs, by_ref); in php_ds_htable_get_pair_iterator_ex() 226 int by_ref, in php_ds_htable_get_assoc_iterator_ex() argument 230 obj, table, &php_ds_htable_get_assoc_iterator_funcs, by_ref); in php_ds_htable_get_assoc_iterator_ex()
|
H A D | php_set_iterator.c | 10 zend_object_iterator *php_ds_set_get_iterator(zend_class_entry *ce, zval *obj, int by_ref) in php_ds_set_get_iterator() argument 13 return php_ds_htable_get_key_iterator_ex(ce, obj, by_ref, table); in php_ds_set_get_iterator()
|
H A D | php_map_iterator.c | 10 zend_object_iterator *php_ds_map_get_iterator(zend_class_entry *ce, zval *obj, int by_ref) in php_ds_map_get_iterator() argument 13 return php_ds_htable_get_assoc_iterator_ex(ce, obj, by_ref, table); in php_ds_map_get_iterator()
|
H A D | php_deque_iterator.c | 54 static zend_object_iterator *php_ds_deque_create_iterator(zval *obj, int by_ref) in php_ds_deque_create_iterator() argument 58 if (by_ref) { in php_ds_deque_create_iterator() 82 zend_object_iterator *php_ds_deque_get_iterator(zend_class_entry *ce, zval *obj, int by_ref) in php_ds_deque_get_iterator() argument 84 return php_ds_deque_create_iterator(obj, by_ref); in php_ds_deque_get_iterator()
|
H A D | php_vector_iterator.c | 52 static zend_object_iterator *php_ds_vector_create_iterator(zval *obj, int by_ref) in php_ds_vector_create_iterator() argument 56 if (by_ref) { in php_ds_vector_create_iterator() 81 zend_object_iterator *php_ds_vector_get_iterator(zend_class_entry *ce, zval *obj, int by_ref) in php_ds_vector_get_iterator() argument 83 return php_ds_vector_create_iterator(obj, by_ref); in php_ds_vector_get_iterator()
|
H A D | php_set_iterator.h | 10 zend_object_iterator *php_ds_set_get_iterator(zend_class_entry *ce, zval *object, int by_ref);
|
H A D | php_map_iterator.h | 9 zend_object_iterator *php_ds_map_get_iterator(zend_class_entry *ce, zval *obj, int by_ref);
|
H A D | php_vector_iterator.h | 14 zend_object_iterator *php_ds_vector_get_iterator(zend_class_entry *ce, zval *obj, int by_ref);
|
H A D | php_deque_iterator.h | 14 zend_object_iterator *php_ds_deque_get_iterator(zend_class_entry *ce, zval *obj, int by_ref);
|
H A D | php_priority_queue_iterator.h | 14 …bject_iterator *php_ds_priority_queue_get_iterator(zend_class_entry *ce, zval *object, int by_ref);
|
H A D | php_stack_iterator.h | 14 zend_object_iterator *php_ds_stack_get_iterator(zend_class_entry *ce, zval *object, int by_ref);
|
H A D | php_queue_iterator.h | 14 zend_object_iterator *php_ds_queue_get_iterator(zend_class_entry *ce, zval *object, int by_ref);
|
H A D | php_queue_iterator.c | 59 zend_object_iterator *php_ds_queue_get_iterator(zend_class_entry *ce, zval *object, int by_ref) in php_ds_queue_get_iterator() argument 63 if (by_ref) { in php_ds_queue_get_iterator()
|
H A D | php_stack_iterator.c | 59 zend_object_iterator *php_ds_stack_get_iterator(zend_class_entry *ce, zval *object, int by_ref) in php_ds_stack_get_iterator() argument 63 if (by_ref) { in php_ds_stack_get_iterator()
|
H A D | php_priority_queue_iterator.c | 62 …object_iterator *php_ds_priority_queue_get_iterator(zend_class_entry *ce, zval *object, int by_ref) in php_ds_priority_queue_get_iterator() argument 66 if (by_ref) { in php_ds_priority_queue_get_iterator()
|