/PHP-8.1/ext/intl/collator/ |
H A D | collator_functions_arginfo.h | 8 ZEND_ARG_OBJ_INFO(0, object, Collator, 0) 14 ZEND_ARG_OBJ_INFO(0, object, Collator, 0) 19 ZEND_ARG_OBJ_INFO(0, object, Collator, 0) 25 ZEND_ARG_OBJ_INFO(0, object, Collator, 0) 29 ZEND_ARG_OBJ_INFO(0, object, Collator, 0) 34 ZEND_ARG_OBJ_INFO(0, object, Collator, 0) 40 ZEND_ARG_OBJ_INFO(0, object, Collator, 0) 47 ZEND_ARG_OBJ_INFO(0, object, Collator, 0) 52 ZEND_ARG_OBJ_INFO(0, object, Collator, 0) 56 ZEND_ARG_OBJ_INFO(0, object, Collator, 0) [all …]
|
H A D | collator.stub.php | 5 class Collator class 13 public static function create(string $locale): ?Collator {} 25 public function sort(array &$array, int $flags = Collator::SORT_REGULAR): bool {} 37 public function asort(array &$array, int $flags = Collator::SORT_REGULAR): bool {}
|
H A D | collator_arginfo.h | 8 ZEND_BEGIN_ARG_WITH_TENTATIVE_RETURN_OBJ_INFO_EX(arginfo_class_Collator_create, 0, 1, Collator, 1) 59 ZEND_METHOD(Collator, __construct); 76 ZEND_ME(Collator, __construct, arginfo_class_Collator___construct, ZEND_ACC_PUBLIC)
|
/PHP-8.1/ext/intl/tests/ |
H A D | collator_get_set_attribute.phpt | 18 $val = ut_coll_get_attribute( $coll, Collator::NORMALIZATION_MODE ); 19 return sprintf( "%s\n", ( $val == Collator::OFF ? "off" : "on" ) ); 27 ut_coll_set_attribute( $coll, Collator::NORMALIZATION_MODE, Collator::OFF ); 30 ut_coll_set_attribute( $coll, Collator::NORMALIZATION_MODE, Collator::ON );
|
H A D | collation_customization.phpt | 39 ut_coll_set_strength( $coll, Collator::TERTIARY ); 40 ut_coll_set_attribute( $coll, Collator::ALTERNATE_HANDLING, Collator::NON_IGNORABLE ); 44 ut_coll_set_attribute( $coll, Collator::ALTERNATE_HANDLING, Collator::SHIFTED ); 48 ut_coll_set_strength( $coll, Collator::QUATERNARY );
|
H A D | bug60192-getlocale.phpt | 2 Bug #60192 (SegFault when Collator not constructed properly) 8 class Collator2 extends Collator{ 20 #0 %s(%d): Collator->getLocale(0)
|
H A D | bug60192-getsortkey.phpt | 2 Bug #60192 (SegFault when Collator not constructed properly) 8 class Collator2 extends Collator{ 20 #0 %s(%d): Collator->getSortKey('h')
|
H A D | bug60192-sort.phpt | 2 Bug #60192 (SegFault when Collator not constructed properly) 8 class Collator2 extends Collator{ 21 #0 %s(%d): Collator->sort(Array)
|
H A D | bug60192-compare.phpt | 2 Bug #60192 (SegFault when Collator not constructed properly) 7 class Collator2 extends Collator{ 19 #0 %s(%d): Collator->compare('h', 'H')
|
H A D | bug60192-sortwithsortkeys.phpt | 2 Bug #60192 (SegFault when Collator not constructed properly) 8 class Collator2 extends Collator{ 21 #0 %s(%d): Collator->sortWithSortKeys(Array)
|
H A D | collator_get_set_strength.phpt | 28 $res .= check_set_strength( $coll, Collator::PRIMARY ); 29 $res .= check_set_strength( $coll, Collator::SECONDARY ); 30 $res .= check_set_strength( $coll, Collator::TERTIARY );
|
H A D | bug74705.phpt | 2 Bug #74705 Wrong reflection on Collator::getSortKey 7 $rm = new ReflectionMethod(Collator::class, 'getSortKey');
|
H A D | bug71020.phpt | 2 Bug #71020 (Use after free in Collator::sortWithSortKeys) 8 $var_3=new Collator("Whatever");
|
H A D | bug74468.phpt | 2 Bug #74468 Wrong reflection on Collator::sortWithSortKeys 9 $rm = new ReflectionMethod(Collator::class, 'sortWithSortKeys');
|
H A D | bug75193.phpt | 7 $a = new \Collator('en_US');
|
H A D | bug62070_3.phpt | 2 Bug #62070: Collator::getSortKey() returns garbage
|
H A D | intl_get_error_code.phpt | 14 if( collator_get_locale(new Collator('en_US'), -1) !== false )
|
H A D | bug62070.phpt | 2 Bug #62070: Collator::getSortKey() returns garbage
|
H A D | intl_get_error_message.phpt | 14 if( collator_get_locale(new Collator('en_US'), -1) !== false )
|
H A D | bug62070_2.phpt | 2 Bug #62070: Collator::getSortKey() returns garbage
|
H A D | gh8115.phpt | 20 new \Collator(null); 35 Caught (8192): Collator::__construct(): Passing null to parameter #1 ($locale) of type string is de…
|
H A D | collator_get_error_message.phpt | 19 ut_coll_get_attribute( $coll, Collator::NORMALIZATION_MODE );
|
H A D | ut_common.inc | 43 * Wrappers around Collator methods to run them in either OO- or procedural mode. 48 return $GLOBALS['oo-mode'] ? Collator::create( $locale ) : collator_create( $locale ); 54 function ut_coll_sort( $coll, &$arr, $sort_flag = Collator::SORT_REGULAR ) 66 function ut_coll_asort( $coll, &$arr, $sort_flag = Collator::SORT_REGULAR ) 76 …return $GLOBALS['oo-mode'] ? Collator::getDisplayName( $obj_loc, $disp_loc ) : collator_get_displa… 80 return $GLOBALS['oo-mode'] ? Collator::getAvailableLocales() : collator_get_available_locales(); 120 return $GLOBALS['oo-mode'] ? Collator::getDefault() : collator_get_default(); 124 return $GLOBALS['oo-mode'] ? Collator::setDefault( $coll ) : collator_set_default( $coll ); 228 * Wrappers around Collator methods to run them in either OO- or procedural mode.
|
H A D | collator_get_error_code.phpt | 27 ut_coll_get_attribute( $coll, Collator::NORMALIZATION_MODE );
|
/PHP-8.1/ext/intl/ |
H A D | php_intl.stub.php | 126 function collator_create(string $locale): ?Collator {} 130 function collator_get_attribute(Collator $object, int $attribute): int|false {} 134 function collator_get_strength(Collator $object): int {} 136 function collator_set_strength(Collator $object, int $strength): bool {} 138 function collator_sort(Collator $object, array &$array, int $flags = Collator::SORT_REGULAR): bool … 140 function collator_sort_with_sort_keys(Collator $object, array &$array): bool {} 142 function collator_asort(Collator $object, array &$array, int $flags = Collator::SORT_REGULAR): bool… 144 function collator_get_locale(Collator $object, int $type): string|false {} 146 function collator_get_error_code(Collator $object): int|false {} 148 function collator_get_error_message(Collator $object): string|false {} [all …]
|