Lines Matching refs:coll

50 function ut_coll_compare( $coll, $str1, $str2 )
52 …return $GLOBALS['oo-mode'] ? $coll->compare( $str1, $str2 ) : collator_compare( $coll, $str1, $str…
54 function ut_coll_sort( $coll, &$arr, $sort_flag = Collator::SORT_REGULAR )
56 …return $GLOBALS['oo-mode'] ? $coll->sort( $arr, $sort_flag ) : collator_sort( $coll, $arr, $sort_f…
58 function ut_coll_sort_with_sort_keys( $coll, &$arr )
60 …return $GLOBALS['oo-mode'] ? $coll->sortWithSortKeys( $arr ) : collator_sort_with_sort_keys( $coll
62 function ut_coll_get_sort_key( $coll, $str )
64 return $GLOBALS['oo-mode'] ? $coll->getSortKey( $str ) : collator_get_sort_key( $coll, $str );
66 function ut_coll_asort( $coll, &$arr, $sort_flag = Collator::SORT_REGULAR )
68 …return $GLOBALS['oo-mode'] ? $coll->asort( $arr, $sort_flag ) : collator_asort( $coll, $arr, $sort…
70 function ut_coll_get_locale( $coll, $type )
72 return $GLOBALS['oo-mode'] ? $coll->getLocale( $type ) : collator_get_locale( $coll, $type );
82 function ut_coll_get_attribute( $coll, $attr )
84 …return $GLOBALS['oo-mode'] ? $coll->getAttribute( $attr ) : collator_get_attribute( $coll, $attr );
86 function ut_coll_get_strength( $coll )
88 return $GLOBALS['oo-mode'] ? $coll->getStrength() : collator_get_strength( $coll );
90 function ut_coll_set_strength( $coll, $strength )
92 …return $GLOBALS['oo-mode'] ? $coll->setStrength( $strength ) : collator_set_strength( $coll, $stre…
94 function ut_coll_set_attribute( $coll, $attr, $val )
96 …return $GLOBALS['oo-mode'] ? $coll->setAttribute( $attr, $val ) : collator_set_attribute( $coll, $…
98 function ut_coll_get_variable_top( $coll )
100 return $GLOBALS['oo-mode'] ? $coll->getVariableTop() : collator_get_variable_top( $coll );
102 function ut_coll_set_variable_top( $coll, $var_top )
104 …return $GLOBALS['oo-mode'] ? $coll->setVariableTop( $var_top ) : collator_set_variable_top( $coll,…
106 function ut_coll_restore_variable_top( $coll, $var_top )
108 …return $GLOBALS['oo-mode'] ? $coll->restoreVariableTop( $var_top ) : collator_restore_variable_top…
110 function ut_coll_get_error_code( $coll )
112 return $GLOBALS['oo-mode'] ? $coll->getErrorCode() : collator_get_error_code( $coll );
114 function ut_coll_get_error_message( $coll )
116 return $GLOBALS['oo-mode'] ? $coll->getErrorMessage() : collator_get_error_message( $coll );
122 function ut_coll_set_default( $coll )
124 return $GLOBALS['oo-mode'] ? Collator::setDefault( $coll ) : collator_set_default( $coll );