Lines Matching refs:to
39 Transliterator_object *to; in transliterator_object_construct() local
43 assert( to->utrans == NULL ); in transliterator_object_construct()
47 to->utrans = utrans; in transliterator_object_construct()
71 static void transliterator_object_init( Transliterator_object* to ) in transliterator_object_init() argument
73 if( !to ) in transliterator_object_init()
76 intl_error_init( TRANSLITERATOR_ERROR_P( to ) ); in transliterator_object_init()
83 static void transliterator_object_destroy( Transliterator_object* to ) in transliterator_object_destroy() argument
85 if( !to ) in transliterator_object_destroy()
88 if( to->utrans ) in transliterator_object_destroy()
90 utrans_close( to->utrans ); in transliterator_object_destroy()
91 to->utrans = NULL; in transliterator_object_destroy()
94 intl_error_reset( TRANSLITERATOR_ERROR_P( to ) ); in transliterator_object_destroy()
101 Transliterator_object* to = php_intl_transliterator_fetch_object(object); in Transliterator_objects_free() local
103 zend_object_std_dtor( &to->zo ); in Transliterator_objects_free()
105 transliterator_object_destroy( to ); in Transliterator_objects_free()