Lines Matching refs:intern

96 	php_sxe_object *intern;  in php_sxe_get_first_node()  local
102 intern = Z_SXEOBJ_P(&sxe->iter.data); in php_sxe_get_first_node()
103 GET_NODE(intern, retnode) in php_sxe_get_first_node()
1979 php_sxe_object *intern; in sxe_count_elements() local
1980 intern = Z_SXEOBJ_P(object); in sxe_count_elements()
1981 if (intern->fptr_count) { in sxe_count_elements()
1983 zend_call_method_with_0_params(object, intern->zo.ce, &intern->fptr_count, "count", &rv); in sxe_count_elements()
1991 return php_sxe_count_elements_helper(intern, count); in sxe_count_elements()
2144 php_sxe_object *intern; in php_sxe_object_new() local
2146 intern = zend_object_alloc(sizeof(php_sxe_object), ce); in php_sxe_object_new()
2148 intern->iter.type = SXE_ITER_NONE; in php_sxe_object_new()
2149 intern->iter.nsprefix = NULL; in php_sxe_object_new()
2150 intern->iter.name = NULL; in php_sxe_object_new()
2151 intern->fptr_count = fptr_count; in php_sxe_object_new()
2153 zend_object_std_init(&intern->zo, ce); in php_sxe_object_new()
2154 object_properties_init(&intern->zo, ce); in php_sxe_object_new()
2155 intern->zo.handlers = &sxe_object_handlers; in php_sxe_object_new()
2157 return intern; in php_sxe_object_new()
2166 php_sxe_object *intern; in sxe_object_new() local
2168 intern = php_sxe_object_new(ce, php_sxe_find_fptr_count(ce)); in sxe_object_new()
2169 return &intern->zo; in sxe_object_new()
2416 zend_iterator_init(&iterator->intern); in php_sxe_get_iterator()
2419 ZVAL_OBJ(&iterator->intern.data, Z_OBJ_P(object)); in php_sxe_get_iterator()
2420 iterator->intern.funcs = &php_sxe_iterator_funcs; in php_sxe_get_iterator()
2432 if (!Z_ISUNDEF(iterator->intern.data)) { in php_sxe_iterator_dtor()
2433 zval_ptr_dtor(&iterator->intern.data); in php_sxe_iterator_dtor()
2458 php_sxe_object *intern = Z_SXEOBJ_P(curobj); in php_sxe_iterator_current_key() local
2461 if (intern != NULL && intern->node != NULL) { in php_sxe_iterator_current_key()
2462 curnode = (xmlNodePtr)((php_libxml_node_ptr *)intern->node)->node; in php_sxe_iterator_current_key()
2476 php_sxe_object *intern; in php_sxe_move_forward_iterator() local
2479 intern = Z_SXEOBJ_P(&sxe->iter.data); in php_sxe_move_forward_iterator()
2480 GET_NODE(intern, node) in php_sxe_move_forward_iterator()