Lines Matching refs:postfix
106 smart_str postfix[1]; member
940 smart_str_free(&object->postfix[0]); in spl_RecursiveIteratorIterator_free_storage()
959 smart_str_appendl(&intern->postfix[0], "", 0); in spl_RecursiveIteratorIterator_new_ex()
1039 RETVAL_STR(object->postfix[0].s); in spl_recursive_tree_iterator_get_postfix()
1091 char* postfix; in PHP_METHOD() local
1094 if (zend_parse_parameters(ZEND_NUM_ARGS(), "s", &postfix, &postfix_len) == FAILURE) { in PHP_METHOD()
1098 smart_str_free(&object->postfix[0]); in PHP_METHOD()
1099 smart_str_appendl(&object->postfix[0], postfix, postfix_len); in PHP_METHOD()
1140 zval prefix, entry, postfix; in PHP_METHOD() local
1176 spl_recursive_tree_iterator_get_postfix(object, &postfix); in PHP_METHOD()
1178 str = zend_string_alloc(Z_STRLEN(prefix) + Z_STRLEN(entry) + Z_STRLEN(postfix), 0); in PHP_METHOD()
1185 memcpy(ptr, Z_STRVAL(postfix), Z_STRLEN(postfix)); in PHP_METHOD()
1186 ptr += Z_STRLEN(postfix); in PHP_METHOD()
1191 zval_ptr_dtor(&postfix); in PHP_METHOD()
1201 zval prefix, key, postfix, key_copy; in PHP_METHOD() local
1228 spl_recursive_tree_iterator_get_postfix(object, &postfix); in PHP_METHOD()
1230 str = zend_string_alloc(Z_STRLEN(prefix) + Z_STRLEN(key) + Z_STRLEN(postfix), 0); in PHP_METHOD()
1237 memcpy(ptr, Z_STRVAL(postfix), Z_STRLEN(postfix)); in PHP_METHOD()
1238 ptr += Z_STRLEN(postfix); in PHP_METHOD()
1243 zval_ptr_dtor(&postfix); in PHP_METHOD()