Lines Matching refs:zthis
190 static int spl_recursive_it_valid_ex(spl_recursive_it_object *object, zval *zthis) in spl_recursive_it_valid_ex() argument
206 zend_call_method_with_0_params(zthis, object->ce, &object->endIteration, "endIteration", NULL); in spl_recursive_it_valid_ex()
237 static void spl_recursive_it_move_forward_ex(spl_recursive_it_object *object, zval *zthis) in spl_recursive_it_move_forward_ex() argument
272 …zend_call_method_with_0_params(zthis, object->ce, &object->callHasChildren, "callHasChildren", &re… in spl_recursive_it_move_forward_ex()
309 zend_call_method_with_0_params(zthis, object->ce, &object->nextElement, "nextelement", NULL); in spl_recursive_it_move_forward_ex()
322 zend_call_method_with_0_params(zthis, object->ce, &object->nextElement, "nextelement", NULL); in spl_recursive_it_move_forward_ex()
334 …zend_call_method_with_0_params(zthis, object->ce, &object->callGetChildren, "callGetChildren", &ch… in spl_recursive_it_move_forward_ex()
372 … zend_call_method_with_0_params(zthis, object->ce, &object->beginChildren, "beginchildren", NULL); in spl_recursive_it_move_forward_ex()
386 zend_call_method_with_0_params(zthis, object->ce, &object->endChildren, "endchildren", NULL); in spl_recursive_it_move_forward_ex()
409 static void spl_recursive_it_rewind_ex(spl_recursive_it_object *object, zval *zthis) in spl_recursive_it_rewind_ex() argument
420 zend_call_method_with_0_params(zthis, object->ce, &object->endChildren, "endchildren", NULL); in spl_recursive_it_rewind_ex()
430 …zend_call_method_with_0_params(zthis, object->ce, &object->beginIteration, "beginIteration", NULL); in spl_recursive_it_rewind_ex()
433 spl_recursive_it_move_forward_ex(object, zthis); in spl_recursive_it_rewind_ex()
1838 static inline void spl_filter_it_fetch(zval *zthis, spl_dual_it_object *intern) in spl_filter_it_fetch() argument
1843 zend_call_method_with_0_params(zthis, intern->std.ce, NULL, "accept", &retval); in spl_filter_it_fetch()
1859 static inline void spl_filter_it_rewind(zval *zthis, spl_dual_it_object *intern) in spl_filter_it_rewind() argument
1862 spl_filter_it_fetch(zthis, intern); in spl_filter_it_rewind()
1865 static inline void spl_filter_it_next(zval *zthis, spl_dual_it_object *intern) in spl_filter_it_next() argument
1868 spl_filter_it_fetch(zthis, intern); in spl_filter_it_next()