Lines Matching refs:intern

87 	php_sxe_object *intern;  in php_sxe_get_first_node()  local
93 intern = Z_SXEOBJ_P(&sxe->iter.data); in php_sxe_get_first_node()
94 GET_NODE(intern, retnode) in php_sxe_get_first_node()
1945 php_sxe_object *intern; in sxe_count_elements() local
1946 intern = php_sxe_fetch_object(object); in sxe_count_elements()
1947 if (intern->fptr_count) { in sxe_count_elements()
1949 zend_call_method_with_0_params(object, intern->zo.ce, &intern->fptr_count, "count", &rv); in sxe_count_elements()
1957 return php_sxe_count_elements_helper(intern, count); in sxe_count_elements()
2025 php_sxe_object *intern; in SXE_METHOD() local
2036 intern = Z_SXEOBJ_P(&sxe->iter.data); in SXE_METHOD()
2037 if (intern != NULL && intern->node != NULL) { in SXE_METHOD()
2038 curnode = (xmlNodePtr)((php_libxml_node_ptr *)intern->node)->node; in SXE_METHOD()
2230 php_sxe_object *intern; in php_sxe_object_new() local
2232 intern = zend_object_alloc(sizeof(php_sxe_object), ce); in php_sxe_object_new()
2234 intern->iter.type = SXE_ITER_NONE; in php_sxe_object_new()
2235 intern->iter.nsprefix = NULL; in php_sxe_object_new()
2236 intern->iter.name = NULL; in php_sxe_object_new()
2237 intern->fptr_count = fptr_count; in php_sxe_object_new()
2239 zend_object_std_init(&intern->zo, ce); in php_sxe_object_new()
2240 object_properties_init(&intern->zo, ce); in php_sxe_object_new()
2241 intern->zo.handlers = &sxe_object_handlers; in php_sxe_object_new()
2243 return intern; in php_sxe_object_new()
2251 php_sxe_object *intern; in sxe_object_new() local
2253 intern = php_sxe_object_new(ce, php_sxe_find_fptr_count(ce)); in sxe_object_new()
2254 return &intern->zo; in sxe_object_new()
2505 zend_iterator_init(&iterator->intern); in php_sxe_get_iterator()
2507 ZVAL_OBJ_COPY(&iterator->intern.data, Z_OBJ_P(object)); in php_sxe_get_iterator()
2508 iterator->intern.funcs = &php_sxe_iterator_funcs; in php_sxe_get_iterator()
2520 if (!Z_ISUNDEF(iterator->intern.data)) { in php_sxe_iterator_dtor()
2521 zval_ptr_dtor(&iterator->intern.data); in php_sxe_iterator_dtor()
2546 php_sxe_object *intern = Z_SXEOBJ_P(curobj); in php_sxe_iterator_current_key() local
2549 if (intern != NULL && intern->node != NULL) { in php_sxe_iterator_current_key()
2550 curnode = (xmlNodePtr)((php_libxml_node_ptr *)intern->node)->node; in php_sxe_iterator_current_key()
2564 php_sxe_object *intern; in php_sxe_move_forward_iterator() local
2567 intern = Z_SXEOBJ_P(&sxe->iter.data); in php_sxe_move_forward_iterator()
2568 GET_NODE(intern, node) in php_sxe_move_forward_iterator()