/PHP-5.5/ext/intl/tests/ |
H A D | breakiter_getLocale_error.phpt | 2 IntlBreakIterator::getLocale(): arg errors 14 var_dump($bi->getLocale(1, 2)); 15 var_dump($bi->getLocale(array())); 16 var_dump($bi->getLocale()); 20 Warning: IntlBreakIterator::getLocale() expects exactly 1 parameter, 2 given in %s on line %d 22 Warning: IntlBreakIterator::getLocale(): breakiter_get_locale: bad arguments in %s on line %d 25 Warning: IntlBreakIterator::getLocale() expects parameter 1 to be long, array given in %s on line %d 27 Warning: IntlBreakIterator::getLocale(): breakiter_get_locale: bad arguments in %s on line %d 30 Warning: IntlBreakIterator::getLocale() expects exactly 1 parameter, 0 given in %s on line %d 32 Warning: IntlBreakIterator::getLocale(): breakiter_get_locale: bad arguments in %s on line %d
|
H A D | calendar_getLocale_error.phpt | 2 IntlCalendar::getLocale(): bad arguments 15 var_dump($c->getLocale()); 16 var_dump($c->getLocale(2)); 17 var_dump($c->getLocale(2, 3)); 24 Warning: IntlCalendar::getLocale() expects exactly 1 parameter, 0 given in %s on line %d 26 Warning: IntlCalendar::getLocale(): intlcal_get_locale: bad arguments in %s on line %d 29 Warning: IntlCalendar::getLocale(): intlcal_get_locale: invalid locale type in %s on line %d 32 Warning: IntlCalendar::getLocale() expects exactly 1 parameter, 2 given in %s on line %d 34 Warning: IntlCalendar::getLocale(): intlcal_get_locale: bad arguments in %s on line %d
|
H A D | gregoriancalendar___construct_basic.phpt | 18 var_dump($intlcal->getLocale(1)); 22 var_dump($intlcal->getLocale(1)); 26 var_dump($intlcal->getLocale(1)); 30 var_dump($intlcal->getLocale(1)); 34 var_dump($intlcal->getLocale(1));
|
H A D | breakiter_getLocale_basic.phpt | 2 IntlBreakIterator::getLocale(): basic test 14 var_dump($bi->getLocale(0)); 15 var_dump($bi->getLocale(1));
|
H A D | calendar_createInstance_variation1.phpt | 18 print_R($cal->getLocale(Locale::ACTUAL_LOCALE)); 23 print_R($cal->getLocale(Locale::ACTUAL_LOCALE)); 28 print_R($cal->getLocale(Locale::ACTUAL_LOCALE)); 33 print_R($cal->getLocale(Locale::ACTUAL_LOCALE)); 38 print_R($cal->getLocale(Locale::ACTUAL_LOCALE));
|
H A D | bug60192-getlocale.phpt | 17 $c->getLocale(Locale::ACTUAL_LOCALE); 20 Catchable fatal error: Collator::getLocale(): Object not initialized in %s on line %d
|
H A D | calendar_getLocale_basic.phpt | 2 IntlCalendar::getLocale() basic test 15 var_dump($intlcal->getLocale(Locale::ACTUAL_LOCALE));
|
H A D | calendar_fromDateTime_basic.phpt | 18 $cal->getLocale(1) 27 $cal->getLocale(1)
|
H A D | calendar_createInstance_basic.phpt | 18 print_R($cal->getLocale(Locale::ACTUAL_LOCALE));
|
H A D | ut_common.inc | 72 return $GLOBALS['oo-mode'] ? $coll->getLocale( $type ) : collator_get_locale( $coll, $type ); 195 return $GLOBALS['oo-mode'] ? $fmt->getLocale( $type ) : numfmt_get_locale( $fmt, $type ); 321 return $GLOBALS['oo-mode'] ? $fmt->getLocale( ) : msgfmt_get_locale( $fmt ); 370 return $GLOBALS['oo-mode'] ? $fmt->getLocale($type ) : datefmt_get_locale( $fmt ,$type);
|
/PHP-5.5/ext/intl/doc/ |
H A D | msgfmt_api.php | 108 public function getLocale() {} function in MessageFormatter
|
H A D | collator_api.php | 242 public function getLocale( $type ) {} function in Collator
|
H A D | datefmt_api.php | 169 public function getLocale($type = ULOC_ACTUAL_LOCALE) {} function in DateFormatter
|
H A D | formatter_api.php | 308 public function getLocale($type = 0) {} function in NumberFormatter
|
/PHP-5.5/ext/intl/collator/ |
H A D | collator_class.c | 127 PHP_NAMED_FE( getLocale, ZEND_FN( collator_get_locale ), collator_1_arg )
|
/PHP-5.5/ext/intl/msgformat/ |
H A D | msgformat_class.c | 153 PHP_NAMED_FE( getLocale, ZEND_FN( msgfmt_get_locale ), arginfo_messageformatter_geterrormessage )
|
/PHP-5.5/ext/intl/formatter/ |
H A D | formatter_class.c | 187 PHP_NAMED_FE( getLocale, ZEND_FN( numfmt_get_locale ), arginfo_numberformatter_getlocale )
|
/PHP-5.5/ext/intl/dateformat/ |
H A D | dateformat_class.c | 184 PHP_NAMED_FE( getLocale, ZEND_FN( datefmt_get_locale ), arginfo_intldateformatter_getdatetype )
|
/PHP-5.5/ext/intl/calendar/ |
H A D | calendar_class.cpp | 191 Locale locale = cal->getLocale(ULOC_VALID_LOCALE, uec); in Calendar_get_debug_info() 422 PHP_ME_MAPPING(getLocale, intlcal_get_locale, ainfo_cal_get_locale, ZEND_ACC_PUBLIC)
|
H A D | calendar_methods.cpp | 729 Locale locale = co->ucal->getLocale((ULocDataLocaleType)locale_type, in PHP_FUNCTION()
|
/PHP-5.5/ext/intl/breakiterator/ |
H A D | breakiterator_methods.cpp | 378 Locale locale = bio->biter->getLocale((ULocDataLocaleType)locale_type, in PHP_FUNCTION()
|
H A D | breakiterator_class.cpp | 299 PHP_ME_MAPPING(getLocale, breakiter_get_locale, ainfo_biter_get_locale, ZEND_ACC_PUBLIC)
|