Lines Matching refs:bio

142 	if (bio->text == NULL) {  in PHP_FUNCTION()
145 RETURN_ZVAL(bio->text, 1, 0); in PHP_FUNCTION()
174 ut = utext_openUTF8(ut, text, text_len, BREAKITER_ERROR_CODE_P(bio)); in PHP_FUNCTION()
175 INTL_CTOR_CHECK_STATUS(bio, "breakiter_set_text: error opening UText"); in PHP_FUNCTION()
177 bio->biter->setText(ut, BREAKITER_ERROR_CODE(bio)); in PHP_FUNCTION()
179 INTL_CTOR_CHECK_STATUS(bio, "breakiter_set_text: error calling " in PHP_FUNCTION()
185 if (bio->text != NULL) { in PHP_FUNCTION()
186 zval_ptr_dtor(&bio->text); in PHP_FUNCTION()
188 bio->text = *textzv; in PHP_FUNCTION()
189 zval_add_ref(&bio->text); in PHP_FUNCTION()
212 int32_t res = (bio->biter->*func)(); in _breakiter_no_args_ret_int32()
244 int32_t res = (bio->biter->*func)((int32_t)arg); in _breakiter_int32_ret_int32()
312 int32_t res = bio->biter->current(); in PHP_FUNCTION()
353 UBool res = bio->biter->isBoundary((int32_t)offset); in PHP_FUNCTION()
378 Locale locale = bio->biter->getLocale((ULocDataLocaleType)locale_type, in PHP_FUNCTION()
379 BREAKITER_ERROR_CODE(bio)); in PHP_FUNCTION()
380 INTL_METHOD_CHECK_STATUS(bio, in PHP_FUNCTION()
424 bio = (BreakIterator_object*)zend_object_store_get_object(object TSRMLS_CC); in PHP_FUNCTION()
425 if (bio == NULL) in PHP_FUNCTION()
428 RETURN_LONG((long)BREAKITER_ERROR_CODE(bio)); in PHP_FUNCTION()
445 bio = (BreakIterator_object*)zend_object_store_get_object(object TSRMLS_CC); in PHP_FUNCTION()
446 if (bio == NULL) in PHP_FUNCTION()
450 message = intl_error_get_message(BREAKITER_ERROR_P(bio) TSRMLS_CC); in PHP_FUNCTION()