| /PHP_5_4/ext/intl/collator/ |
| H A D | collator_create.c | 30 char* locale; local 39 &locale, &locale_len ) == FAILURE ) 51 locale = INTL_G(default_locale); 55 co->ucoll = ucol_open( locale, COLLATOR_ERROR_CODE_P( co ) ); 60 /* {{{ proto Collator collator_create( string $locale ) 70 /* {{{ proto Collator Collator::__construct( string $locale )
|
| /PHP_5_4/ext/intl/dateformat/ |
| H A D | dateformat.c | 73 char* locale; local 94 &locale, &locale_len, &date_type, &time_type, &timezone_str, &timezone_str_len, &calendar,&pattern_str, &pattern_str_len ) == FAILURE ) 106 "IntlDateFormatter::TRADITIONAL (locale's default calendar) " 145 locale = INTL_G(default_locale); 149 DATE_FORMAT_OBJECT(dfo) = udat_open(UDAT_IGNORE, UDAT_IGNORE, locale, timezone_utf16, timezone_utf16_len, svalue, slength, &INTL_DATA_ERROR_CODE(dfo)); 151 DATE_FORMAT_OBJECT(dfo) = udat_open(time_type, date_type, locale, timezone_utf16, timezone_utf16_len, svalue, slength, &INTL_DATA_ERROR_CODE(dfo)); 156 ucal_obj = ucal_open(timezone_utf16, timezone_utf16_len, locale, 196 /* {{{ proto IntlDateFormatter IntlDateFormatter::create(string $locale, long date_type, long time_type[, string $timezone_str, long $calendar, string $pattern] ) 198 /* {{{ proto IntlDateFormatter datefmt_create(string $locale, long date_type, long time_type[, string $timezone_str, long $calendar, string $pattern] ) 209 /* {{{ proto void IntlDateFormatter::__construct(string $locale, lon [all...] |
| H A D | dateformat_attr.c | 33 char* locale = NULL; local 49 /* Get the locale for the dateformatter */ 50 locale = (char *)udat_getLocaleByType(DATE_FORMAT_OBJECT(dfo), ULOC_ACTUAL_LOCALE, &INTL_DATA_ERROR_CODE(dfo)); 53 ucal_obj = ucal_open(timezone_utf16, timezone_utf16_len, locale, calendar, &INTL_DATA_ERROR_CODE(dfo) ); 290 * Get formatter locale. }}} */ 292 * Get formatter locale. 315 INTL_METHOD_CHECK_STATUS(dfo, "Error getting locale"); 323 * Get formatter locale.
|
| H A D | dateformat_class.c | 150 ZEND_ARG_INFO(0, locale)
|
| /PHP_5_4/ext/intl/doc/ |
| H A D | collator_api.php | 80 * @param string $locale The locale whose collation rules 83 * passed for the locale, the default 84 * locale collation rules will be used. If 90 public function __construct( $locale ) {} 106 public static function create( $locale ) {} 227 * Get the locale name of the collator. 232 * and actual locale 237 * @return string Real locale name from which the 252 * @param string $locale Th [all...] |
| H A D | datefmt_api.php | 4 * Date Formatter class - locale-dependent formatting/parsing of dates using pattern strings and/or canned patterns. 43 * Non-Gregorian calendars need to be specified in locale. 44 * Examples might include locale="hi@calendar=BUDDHIST" 46 const TRADITIONAL = 0; // non-Gregorian calendar that is locale-defined, required by ICU 55 * @param string $locale Locale to use when formatting or parsing 66 public function __construct($locale, $datetype, $timetype, $timezone = null, $calendar= null , $pattern= null) {} 71 * @param string $locale Locale to use when formatting or parsing 82 public static function create($locale, $datetype, $timetype, $timezone = null, $calendar= null , $pattern= null) {} 161 * Gets the locale in use 162 * @param [integer] which locale shoul [all...] |
| H A D | formatter_api.php | 4 * Number formatter class - locale-dependent number formatting/parsing. 142 * Creates a number formatter from locale and pattern. This formatter would be used to 146 * @param string $locale Locale in which the number would be formatted 150 public function __construct($locale, $style, $pattern = null) {} 155 * Creates a number formatter from locale and pattern. This formatter would be used to 162 * @param string $locale Locale in which the number would be formatted 168 public static function create($locale, $style, $pattern = null) {} 303 * Get the locale for which the formatter was created. 306 * @return string locale name 331 * Creates a number formatter from locale an [all...] |
| H A D | locale_api.php | 19 * with locale identifiers--to verify that an ID is well-formed, valid, 26 * * The null or empty string obtains the "root" locale. 27 * The "root" locale is equivalent to "en_US_POSIX" in CLDR. 28 * * Language tags (and thus locale identifiers) are case insensitive. There 43 * the various locale affected classes, such as numfmt. 48 * identifiers for the actual locale, valid locale 60 * Valid locale tag and subtag values 76 * Gets the default locale value from the INTL global 'default_locale' 82 * @return string the current runtime locale [all...] |
| H A D | msgfmt_api.php | 8 * replaced in a locale-sensitive manner using items in the arguments array. 18 * @param string $locale the locale to use when formatting arguments 21 public function __construct($locale, $pattern) {} 26 * @param string $locale the locale to use when formatting arguments 29 public static function create($locale, $pattern) {} 52 * according to $locale. This is the static implementation. 54 * @param string $locale the locale t [all...] |
| /PHP_5_4/ext/intl/formatter/ |
| H A D | formatter_class.c | 153 ZEND_ARG_INFO(0, locale)
|
| H A D | formatter_main.c | 30 char* locale; local 40 &locale, &locale_len, &style, &pattern, &pattern_len ) == FAILURE ) 59 locale = INTL_G(default_locale); 63 FORMATTER_OBJECT(nfo) = unum_open(style, spattern, spattern_len, locale, NULL, &INTL_DATA_ERROR_CODE(nfo)); 73 /* {{{ proto NumberFormatter NumberFormatter::create( string $locale, int style[, string $pattern ] ) 75 /* {{{ proto NumberFormatter numfmt_create( string $locale, int style[, string $pattern ] ) 85 /* {{{ proto void NumberFormatter::__construct( string $locale, int style[, string $pattern ] )
|
| H A D | formatter_parse.c | 22 #include <locale.h>
|
| /PHP_5_4/ext/intl/msgformat/ |
| H A D | msgformat.c | 31 char* locale; local 43 &locale, &locale_len, &pattern, &pattern_len ) == FAILURE ) 64 locale = INTL_G(default_locale); 81 MSG_FORMAT_OBJECT(mfo) = umsg_open(spattern, spattern_len, locale, NULL, &INTL_DATA_ERROR_CODE(mfo)); 91 /* {{{ proto MessageFormatter MesssageFormatter::create( string $locale, string $pattern ) 93 /* {{{ proto MessageFormatter msgfmt_create( string $locale, string $pattern ) 103 /* {{{ proto void MessageFormatter::__construct( string $locale, string $pattern )
|
| H A D | msgformat_class.c | 115 ZEND_ARG_INFO(0, locale) 123 ZEND_ARG_INFO(0, locale)
|
| /PHP_5_4/ext/intl/ |
| H A D | php_intl.c | 54 #include "locale/locale.h" 55 #include "locale/locale_class.h" 56 #include "locale/locale_methods.h" 219 ZEND_ARG_INFO(0, locale) 268 ZEND_ARG_INFO(0, locale) 286 ZEND_ARG_INFO(0, locale) 297 ZEND_ARG_INFO(0, locale) 327 ZEND_ARG_INFO(0, locale) 350 ZEND_ARG_INFO( 0, locale ) [all...] |
| /PHP_5_4/ext/intl/resourcebundle/ |
| H A D | resourcebundle_class.c | 84 char * locale; local 96 &locale, &locale_len, &bundlename, &bundlename_len, &fallback ) == FAILURE ) 106 if (locale == NULL) { 107 locale = INTL_G(default_locale); 111 rb->me = ures_open(bundlename, locale, &INTL_DATA_ERROR_CODE(rb)); 113 rb->me = ures_openDirect(bundlename, locale, &INTL_DATA_ERROR_CODE(rb)); 123 bundlename ? bundlename : "(default data)", locale, 136 ZEND_ARG_INFO( 0, locale ) 142 /* {{{ proto void ResourceBundle::__construct( string $locale [, string $bundlename [, bool $fallback = true ]] ) 152 /* {{{ proto ResourceBundle ResourceBundle::create( string $locale [, strin 203 const char * locale = ures_getLocaleByType( rb->me, ULOC_ACTUAL_LOCALE, &icuerror ); local [all...] |
| /PHP_5_4/ext/date/lib/ |
| H A D | parse_tz.c | 26 #include <locale.h>
|
| /PHP_5_4/ext/pcre/ |
| H A D | php_pcre.h | 33 #include <locale.h> 48 char *locale; member in struct:__anon142
|
| H A D | php_pcre.c | 97 pefree(pce->locale, 1); 247 char *locale; local 257 locale = setlocale(LC_CTYPE, NULL); 271 if (!strcmp(pce->locale, locale)) { 394 if (strcmp(locale, "C")) 446 new_entry.locale = pestrdup(locale, 1);
|
| /PHP_5_4/ext/readline/ |
| H A D | readline_cli.c | 36 #include <locale.h>
|
| /PHP_5_4/ext/standard/ |
| H A D | formatted_print.c | 29 #include <locale.h>
|
| H A D | scanf.c | 74 #include <locale.h>
|
| /PHP_5_4/main/ |
| H A D | snprintf.c | 40 #include <locale.h>
|
| H A D | spprintf.c | 95 #include <locale.h>
|
| /PHP_5_4/ext/pcre/pcrelib/ |
| H A D | dftables.c | 43 locale. Now that pcre_maketables is a function visible to the outside world, we 53 #include <locale.h> 68 /* By default, the default C locale is used rather than what the building user 69 happens to have set. However, if the -L option is given, set the locale from
|