Lines Matching refs:index
93 PARSE_LONG(index); in METHOD()
94 RETURN_ZVAL_COPY(ds_vector_get(THIS_DS_VECTOR(), index)); in METHOD()
99 PARSE_LONG_AND_VARIADIC_ZVAL(index); in METHOD()
100 ds_vector_insert_va(THIS_DS_VECTOR(), index, argc, argv); in METHOD()
169 PARSE_LONG(index); in METHOD()
170 ds_vector_remove(THIS_DS_VECTOR(), index, return_value); in METHOD()
193 PARSE_LONG_AND_ZVAL(index, value); in METHOD()
194 ds_vector_set(THIS_DS_VECTOR(), index, value); in METHOD()
207 PARSE_LONG_AND_OPTIONAL_ZVAL(index, length); in METHOD()
213 RETURN_DS_VECTOR(ds_vector_slice(vector, index, Z_LVAL_P(length))); in METHOD()
216 RETURN_DS_VECTOR(ds_vector_slice(vector, index, vector->size)); in METHOD()
271 PARSE_LONG(index); in METHOD()
272 RETURN_BOOL(ds_vector_isset(THIS_DS_VECTOR(), index, false)); in METHOD()
277 PARSE_LONG(index); in METHOD()
278 RETURN_ZVAL_COPY(ds_vector_get(THIS_DS_VECTOR(), index)); in METHOD()
298 PARSE_LONG(index); in METHOD()
299 ds_vector_remove(THIS_DS_VECTOR(), index, return_value); in METHOD()