Lines Matching refs:THIS_DS_VECTOR

23         ds_vector_push_all(THIS_DS_VECTOR(), values);  in METHOD()
30 ds_vector_allocate(THIS_DS_VECTOR(), capacity); in METHOD()
36 ds_vector_apply(THIS_DS_VECTOR(), FCI_ARGS); in METHOD()
42 RETURN_LONG((THIS_DS_VECTOR())->capacity); in METHOD()
48 ds_vector_clear(THIS_DS_VECTOR()); in METHOD()
54 RETURN_BOOL(ds_vector_contains_va(THIS_DS_VECTOR(), argc, argv)); in METHOD()
60 RETURN_OBJ(php_ds_vector_create_clone(THIS_DS_VECTOR())); in METHOD()
66 RETURN_LONG(DS_VECTOR_SIZE(THIS_DS_VECTOR())); in METHOD()
73 RETURN_DS_VECTOR(ds_vector_filter_callback(THIS_DS_VECTOR(), FCI_ARGS)); in METHOD()
75 RETURN_DS_VECTOR(ds_vector_filter(THIS_DS_VECTOR())); in METHOD()
82 ds_vector_find(THIS_DS_VECTOR(), value, return_value); in METHOD()
88 RETURN_ZVAL_COPY(ds_vector_get_first_throw(THIS_DS_VECTOR())); in METHOD()
94 RETURN_ZVAL_COPY(ds_vector_get(THIS_DS_VECTOR(), index)); in METHOD()
100 ds_vector_insert_va(THIS_DS_VECTOR(), index, argc, argv); in METHOD()
106 RETURN_BOOL(DS_VECTOR_IS_EMPTY(THIS_DS_VECTOR())); in METHOD()
113 ds_vector_join(THIS_DS_VECTOR(), str, len, return_value); in METHOD()
115 ds_vector_join(THIS_DS_VECTOR(), NULL, 0, return_value); in METHOD()
122 ds_vector_to_array(THIS_DS_VECTOR(), return_value); in METHOD()
128 RETURN_ZVAL_COPY(ds_vector_get_last_throw(THIS_DS_VECTOR())); in METHOD()
134 RETURN_DS_VECTOR(ds_vector_map(THIS_DS_VECTOR(), FCI_ARGS)); in METHOD()
140 RETURN_DS_VECTOR(ds_vector_merge(THIS_DS_VECTOR(), values)); in METHOD()
146 ds_vector_pop_throw(THIS_DS_VECTOR(), return_value); in METHOD()
152 ds_vector_push_va(THIS_DS_VECTOR(), argc, argv); in METHOD()
158 ds_vector_push(THIS_DS_VECTOR(), value); in METHOD()
164 ds_vector_reduce(THIS_DS_VECTOR(), initial, return_value, FCI_ARGS); in METHOD()
170 ds_vector_remove(THIS_DS_VECTOR(), index, return_value); in METHOD()
176 ds_vector_reverse(THIS_DS_VECTOR()); in METHOD()
182 RETURN_DS_VECTOR(ds_vector_reversed(THIS_DS_VECTOR())); in METHOD()
188 ds_vector_rotate(THIS_DS_VECTOR(), rotations); in METHOD()
194 ds_vector_set(THIS_DS_VECTOR(), index, value); in METHOD()
200 ds_vector_shift_throw(THIS_DS_VECTOR(), return_value); in METHOD()
205 ds_vector_t *vector = THIS_DS_VECTOR(); in METHOD()
222 ds_vector_t *vector = THIS_DS_VECTOR(); in METHOD()
234 ds_vector_t *vector = ds_vector_clone(THIS_DS_VECTOR()); in METHOD()
249 ds_vector_sum(THIS_DS_VECTOR(), return_value); in METHOD()
255 ds_vector_to_array(THIS_DS_VECTOR(), return_value); in METHOD()
261 ds_vector_unshift_va(THIS_DS_VECTOR(), argc, argv); in METHOD()
272 RETURN_BOOL(ds_vector_isset(THIS_DS_VECTOR(), index, false)); in METHOD()
278 RETURN_ZVAL_COPY(ds_vector_get(THIS_DS_VECTOR(), index)); in METHOD()
286 ds_vector_push(THIS_DS_VECTOR(), value); in METHOD()
291 ds_vector_set(THIS_DS_VECTOR(), Z_LVAL_P(offset), value); in METHOD()
299 ds_vector_remove(THIS_DS_VECTOR(), index, return_value); in METHOD()