/php-src/ext/intl/resourcebundle/ |
H A D | resourcebundle_arginfo.h | 10 …ARG_WITH_TENTATIVE_RETURN_OBJ_INFO_EX(arginfo_class_ResourceBundle_create, 0, 2, ResourceBundle, 1) 16 …TIVE_RETURN_OBJ_TYPE_MASK_EX(arginfo_class_ResourceBundle_get, 0, 1, ResourceBundle, MAY_BE_ARRAY|… 36 ZEND_METHOD(ResourceBundle, __construct); 38 ZEND_METHOD(ResourceBundle, get); 43 ZEND_METHOD(ResourceBundle, getIterator); 46 ZEND_ME(ResourceBundle, __construct, arginfo_class_ResourceBundle___construct, ZEND_ACC_PUBLIC) 48 ZEND_ME(ResourceBundle, get, arginfo_class_ResourceBundle_get, ZEND_ACC_PUBLIC) 53 ZEND_ME(ResourceBundle, getIterator, arginfo_class_ResourceBundle_getIterator, ZEND_ACC_PUBLIC)
|
H A D | resourcebundle.stub.php | 6 class ResourceBundle implements IteratorAggregate, Countable class 14 …static function create(?string $locale, ?string $bundle, bool $fallback = true): ?ResourceBundle {} 17 …public function get(string|int $index, bool $fallback = true): ResourceBundle|array|string|int|nul…
|
H A D | resourcebundle_class.h | 38 #define RESOURCEBUNDLE_METHOD_INIT_VARS INTL_METHOD_INIT_VARS(ResourceBundle, rb)
|
H A D | resourcebundle_class.c | 143 PHP_METHOD( ResourceBundle, __construct ) in PHP_METHOD() argument 284 PHP_METHOD(ResourceBundle , get) in PHP_METHOD() argument 411 PHP_METHOD(ResourceBundle, getIterator) { in PHP_METHOD() argument
|
/php-src/ext/intl/tests/ |
H A D | resourcebundle_internal.phpt | 2 Test ResourceBundle::__construct() with internal ICU bundles 10 $b = new ResourceBundle('de_DE', 'ICUDATA-region'); 13 $b = new ResourceBundle('icuver', 'ICUDATA'); 16 $b = new ResourceBundle('supplementalData', 'ICUDATA', false);
|
H A D | resourcebundle_dimension_errors.phpt | 2 Test ResourceBundle errors with [] 10 $r = new ResourceBundle( 'en_US', BUNDLE ); 55 Error: Cannot apply [] to ResourceBundle object 56 Error: Cannot use object of type ResourceBundle as array 58 TypeError: Cannot access offset of type float on ResourceBundle 59 TypeError: Cannot access offset of type stdClass on ResourceBundle
|
H A D | resourcebundle_double_ctor.phpt | 2 ResourceBundle double construction should not be allowed 9 $r = new ResourceBundle('en_US', BUNDLE); 18 ResourceBundle object is already constructed
|
H A D | resourcebundle_iterator.phpt | 2 Test ResourceBundle iterator 10 $r = new ResourceBundle( 'en_US', BUNDLE ); 37 ResourceBundle Object 51 ResourceBundle Object
|
H A D | resourcebundle_create.phpt | 2 Test ResourceBundle::__construct() - existing/missing bundles/locales 42 ResourceBundle Object 48 ResourceBundle Object 54 ResourceBundle Object
|
H A D | resourcebundle_null_mandatory_args_variant_icu72-1.phpt | 2 ResourceBundle constructor bundle accepts NULL for first two arguments 13 $r = new ResourceBundle('en_US', NULL); 18 $r = new ResourceBundle(NULL, NULL);
|
H A D | resourcebundle_null_mandatory_args_variant2.phpt | 2 ResourceBundle constructor bundle accepts NULL for first two arguments 13 $r = new ResourceBundle('en_US', NULL); 18 $r = new ResourceBundle(NULL, NULL);
|
H A D | resourcebundle_countable.phpt | 2 Test ResourceBundle implements Countable 9 $r = new ResourceBundle( 'es', BUNDLE );
|
H A D | resourcebundle_traversable.phpt | 2 Bug #55610: ResourceBundle does not implement Traversable 9 $r = new ResourceBundle( 'es', BUNDLE );
|
H A D | resourcebundle_arrayaccess.phpt | 2 Test ResourceBundle array access and count - existing/missing keys 10 $r = new ResourceBundle( 'en_US', BUNDLE );
|
H A D | resourcebundle_locales.phpt | 2 Test ResourceBundle::getLocales
|
H A D | gh8115.phpt | 27 new \ResourceBundle(null, null, null); 40 Caught (8192): ResourceBundle::__construct(): Passing null to parameter #3 ($fallback) of type bool…
|
H A D | resourcebundle.build | 3 // THIS SCRIPT WILL REBUILD ResourceBundle bundles from source files
|
H A D | resourcebundle_individual.phpt | 2 Test ResourceBundle::get() and length() - existing/missing keys
|
H A D | ut_common.inc | 409 return new ResourceBundle($locale, $bundle, $fallback); 423 … return $GLOBALS['oo-mode'] ? ResourceBundle::getLocales($bundle):resourcebundle_locales($bundle);
|
/php-src/ext/intl/ |
H A D | php_intl.stub.php | 544 … resourcebundle_create(?string $locale, ?string $bundle, bool $fallback = true): ?ResourceBundle {} 546 function resourcebundle_get(ResourceBundle $bundle, string|int $index, bool $fallback = true): Reso… 548 function resourcebundle_count(ResourceBundle $bundle): int {} 556 function resourcebundle_get_error_code(ResourceBundle $bundle): int {} 558 function resourcebundle_get_error_message(ResourceBundle $bundle): string {}
|
H A D | php_intl_arginfo.h | 630 ZEND_BEGIN_ARG_WITH_RETURN_OBJ_INFO_EX(arginfo_resourcebundle_create, 0, 2, ResourceBundle, 1) 636 ZEND_BEGIN_ARG_WITH_RETURN_OBJ_TYPE_MASK_EX(arginfo_resourcebundle_get, 0, 2, ResourceBundle, MAY_B… 637 ZEND_ARG_OBJ_INFO(0, bundle, ResourceBundle, 0) 643 ZEND_ARG_OBJ_INFO(0, bundle, ResourceBundle, 0) 653 ZEND_ARG_OBJ_INFO(0, bundle, ResourceBundle, 0)
|