Lines Matching refs:zthis

188 static int spl_recursive_it_valid_ex(spl_recursive_it_object *object, zval *zthis)  in spl_recursive_it_valid_ex()  argument
204 zend_call_method_with_0_params(zthis, object->ce, &object->endIteration, "endIteration", NULL); in spl_recursive_it_valid_ex()
235 static void spl_recursive_it_move_forward_ex(spl_recursive_it_object *object, zval *zthis) in spl_recursive_it_move_forward_ex() argument
270 …zend_call_method_with_0_params(zthis, object->ce, &object->callHasChildren, "callHasChildren", &re… in spl_recursive_it_move_forward_ex()
307 zend_call_method_with_0_params(zthis, object->ce, &object->nextElement, "nextelement", NULL); in spl_recursive_it_move_forward_ex()
320 zend_call_method_with_0_params(zthis, object->ce, &object->nextElement, "nextelement", NULL); in spl_recursive_it_move_forward_ex()
332 …zend_call_method_with_0_params(zthis, object->ce, &object->callGetChildren, "callGetChildren", &ch… in spl_recursive_it_move_forward_ex()
370 … zend_call_method_with_0_params(zthis, object->ce, &object->beginChildren, "beginchildren", NULL); in spl_recursive_it_move_forward_ex()
384 zend_call_method_with_0_params(zthis, object->ce, &object->endChildren, "endchildren", NULL); in spl_recursive_it_move_forward_ex()
407 static void spl_recursive_it_rewind_ex(spl_recursive_it_object *object, zval *zthis) in spl_recursive_it_rewind_ex() argument
418 zend_call_method_with_0_params(zthis, object->ce, &object->endChildren, "endchildren", NULL); in spl_recursive_it_rewind_ex()
428 …zend_call_method_with_0_params(zthis, object->ce, &object->beginIteration, "beginIteration", NULL); in spl_recursive_it_rewind_ex()
431 spl_recursive_it_move_forward_ex(object, zthis); in spl_recursive_it_rewind_ex()
1807 static inline void spl_filter_it_fetch(zval *zthis, spl_dual_it_object *intern) in spl_filter_it_fetch() argument
1812 zend_call_method_with_0_params(zthis, intern->std.ce, NULL, "accept", &retval); in spl_filter_it_fetch()
1828 static inline void spl_filter_it_rewind(zval *zthis, spl_dual_it_object *intern) in spl_filter_it_rewind() argument
1831 spl_filter_it_fetch(zthis, intern); in spl_filter_it_rewind()
1834 static inline void spl_filter_it_next(zval *zthis, spl_dual_it_object *intern) in spl_filter_it_next() argument
1837 spl_filter_it_fetch(zthis, intern); in spl_filter_it_next()