/PHP-5.5/ext/intl/tests/ |
H A D | locale_get_region.phpt | 89 root: region='' 91 Hindi: region='' 92 de: region='' 93 fr: region='' 94 ja: region='' 96 zh-Hant: region='' 97 zh-Hans: region='' 98 sr-Cyrl: region='' 99 sr-Latn: region='' 112 zh-min: region='' [all …]
|
H A D | locale_parse_locale.phpt | 137 language : 'zh' , script : 'Hans' , region : 'CN' , 140 language : 'sr' , script : 'Latn' , region : 'CS' , 143 language : 'sl' ,%r( region : 'ROZAJ' ,)?%r 146 language : 'sl' ,%r( region : 'NEDIS' ,)?%r 158 language : 'de' , region : 'DE' , 161 language : 'en' , region : 'US' , 164 language : 'es' , region : '419' , 182 language : 'sr' , script : 'Latn' , region : 'QM' , 185 language : 'sr' , script : 'Qaaa' , region : 'CS' , 188 language : 'en' , region : 'US' , [all …]
|
H A D | locale_parse_locale2.phpt | 138 language : 'zh' , script : 'Hans' , region : 'CN' , 141 language : 'sr' , script : 'Latn' , region : 'CS' , 150 language : 'de' , region : 'CH' , variant0 : '1901' , 153 language : 'sl' , region : 'IT' , variant0 : 'NEDIS' , 159 language : 'de' , region : 'DE' , 162 language : 'en' , region : 'US' , 165 language : 'es' , region : '419' , 183 language : 'sr' , script : 'Latn' , region : 'QM' , 186 language : 'sr' , script : 'Qaaa' , region : 'CS' , 189 language : 'en' , region : 'US' , [all …]
|
H A D | resourcebundle_internal.phpt | 7 $b = new ResourceBundle('de_DE', 'ICUDATA-region');
|
H A D | timezone_createTimeZoneIDEnumeration_variant2.phpt | 2 IntlTimeZone::createTimeZoneIDEnumeration(): variant without region
|
H A D | timezone_getRegion_error.phpt | 41 Warning: IntlTimeZone::getRegion(): intltz_get_region: Error obtaining region in %s on line %d
|
/PHP-5.5/ext/mbstring/oniguruma/doc/ |
H A D | API | 255 Create a region. 263 1 region: target region 269 Copy contents of region. 272 1 to: target region 273 2 from: source region 278 Clear contents of region. 281 1 region: target region 291 1 region: target region 325 4 region: search/match result region. 393 1 region: matching result. [all …]
|
/PHP-5.5/ext/mbstring/oniguruma/ |
H A D | regtrav.c | 67 onig_capture_tree_traverse(OnigRegion* region, int at, in onig_capture_tree_traverse() argument 71 return capture_tree_traverse(region->history_root, at, in onig_capture_tree_traverse()
|
H A D | regexec.c | 164 region->beg[i] = region->end[i] = ONIG_REGION_NOTPOS; in onig_region_clear() 183 if (region->beg == 0 || region->end == 0) in onig_region_resize() 189 region->beg = (int* )xrealloc(region->beg, n * sizeof(int)); in onig_region_resize() 190 region->end = (int* )xrealloc(region->end, n * sizeof(int)); in onig_region_resize() 192 if (region->beg == 0 || region->end == 0) in onig_region_resize() 1319 OnigRegion* region; in match_at() local 1331 region = msa->region; in match_at() 1332 if (region) { in match_at() 1371 region->beg[i] = region->end[i] = ONIG_REGION_NOTPOS; in match_at() 3089 if (region in onig_match() [all …]
|
H A D | testc.c | 31 static OnigRegion* region; variable 104 region, ONIG_OPTION_NONE); in xx() 129 if (region->beg[mem] == from && region->end[mem] == to) { in xx() 135 from, to, region->beg[mem], region->end[mem]); in xx() 166 region = onig_region_new(); in main() 858 onig_region_free(region, 1); in main()
|
H A D | testu.c | 19 static OnigRegion* region; variable 150 region, ONIG_OPTION_NONE); in xx() 175 if (region->beg[mem] == from && region->end[mem] == to) { in xx() 181 from, to, region->beg[mem], region->end[mem]); in xx() 210 region = onig_region_new(); in main() 906 onig_region_free(region, 1); in main()
|
H A D | oniguruma.h | 741 …gUChar* end, const OnigUChar* start, const OnigUChar* range, OnigRegion* region, OnigOptionType op… 743 …t OnigUChar* str, const OnigUChar* end, const OnigUChar* at, OnigRegion* region, OnigOptionType op… 747 void onig_region_init P_((OnigRegion* region)); 749 void onig_region_free P_((OnigRegion* region, int free_self)); 753 void onig_region_clear P_((OnigRegion* region)); 755 int onig_region_resize P_((OnigRegion* region, int n)); 757 int onig_region_set P_((OnigRegion* region, int at, int beg, int end)); 761 …f_number P_((OnigRegex reg, const OnigUChar* name, const OnigUChar* name_end, OnigRegion *region)); 771 OnigCaptureTreeNode* onig_get_capture_tree P_((OnigRegion* region)); 773 int onig_capture_tree_traverse P_((OnigRegion* region, int at, int(*callback_func)(int,int,int,int,…
|
H A D | HISTORY | 1142 return invalid capture region value if capture history 1451 2003/08/11: [bug] should clear region->list in regex_region_resize(). 1806 2003/02/01: [tune] remove region argument from match_at(). 1827 remove region member from POSIX regex_t. 1829 (region argument is treated as regmatch_t[] type) 1844 2003/01/16: [impl] add region member to POSIX regex_t struct. 1865 2003/01/08: [spec] region arg can be NULL in regex_search() and regex_match().
|
H A D | regint.h | 737 OnigRegion* region; member
|
H A D | regparse.c | 843 const UChar* name_end, OnigRegion *region) in onig_name_to_backref_number() argument 855 if (IS_NOT_NULL(region)) { in onig_name_to_backref_number() 857 if (region->beg[nums[i]] != ONIG_REGION_NOTPOS) in onig_name_to_backref_number() 876 const UChar* name_end, OnigRegion* region) in onig_name_to_backref_number() argument
|
/PHP-5.5/ext/intl/doc/ |
H A D | locale_api.php | 188 public static function getDisplayRegion($region, $in_locale = null) {} argument 371 function locale_get_display_region($region, $in_locale = null) {} argument
|
H A D | Tutorial.txt | 112 In short attribute names, <language>_<script>_<region>_<keyword>.
|
/PHP-5.5/ext/mbstring/oniguruma/win32/ |
H A D | testc.c | 31 static OnigRegion* region; variable 104 region, ONIG_OPTION_NONE); in xx() 129 if (region->beg[mem] == from && region->end[mem] == to) { in xx() 135 from, to, region->beg[mem], region->end[mem]); in xx() 166 region = onig_region_new(); in main() 858 onig_region_free(region, 1); in main()
|
/PHP-5.5/ext/intl/timezone/ |
H A D | timezone_methods.cpp | 241 char *region = NULL; in PHP_FUNCTION() local 256 &zoneType, ®ion, ®ion_len, &offset_arg) == FAILURE) { in PHP_FUNCTION() 285 region, offsetp, uec); in PHP_FUNCTION()
|
H A D | timezone_class.cpp | 416 ZEND_ARG_INFO(0, region)
|
/PHP-5.5/ext/intl/ |
H A D | php_intl.c | 461 ZEND_ARG_INFO( 0, region )
|
/PHP-5.5/ext/fileinfo/ |
H A D | libmagic.patch | 3077 const char *last; /* end of search region */ 3078 const char *buf; /* start of search region */
|