Searched refs:territory (Results 1 - 23 of 23) sorted by relevance

/macosx-10.9.5/bash-92/bash-3.2/lib/intl/
H A Dexplodename.c53 _nl_explode_name (name, language, modifier, territory, codeset,
58 const char **territory;
70 *territory = NULL;
91 /* Next is the territory. */
93 *territory = ++cp;
181 if (*territory != NULL && (*territory)[0] == '\0')
H A Dloadinfo.h112 const char *language, const char *territory,
125 territory, codeset, special, sponsor, revision.
144 const char **territory,
H A Dfinddomain.c59 const char *territory; local
85 (6) territory
140 mask = _nl_explode_name (locale, &language, &modifier, &territory,
147 strlen (dirname) + 1, mask, language, territory,
H A Dl10nflist.c189 territory, codeset, normalized_codeset, modifier, special,
196 const char *territory;
223 ? strlen (territory) + 1 : 0)
259 cp = stpcpy (cp, territory);
360 first the modifier, then the territory, then the codeset, then the
376 cnt, language, territory, codeset,
383 cnt, language, territory, codeset,
/macosx-10.9.5/cxxfilt-11/cxxfilt/intl/
H A Dexplodename.c53 _nl_explode_name (name, language, modifier, territory, codeset,
58 const char **territory;
70 *territory = NULL;
91 /* Next is the territory. */
93 *territory = ++cp;
181 if (*territory != NULL && (*territory)[0] == '\0')
H A Dloadinfo.h112 const char *language, const char *territory,
125 territory, codeset, special, sponsor, revision.
144 const char **territory,
H A Dfinddomain.c59 const char *territory; local
85 (6) territory
140 mask = _nl_explode_name (locale, &language, &modifier, &territory,
147 strlen (dirname) + 1, mask, language, territory,
H A Dl10nflist.c189 territory, codeset, normalized_codeset, modifier, special,
196 const char *territory;
223 ? strlen (territory) + 1 : 0)
259 cp = stpcpy (cp, territory);
360 first the modifier, then the territory, then the codeset, then the
376 cnt, language, territory, codeset,
383 cnt, language, territory, codeset,
/macosx-10.9.5/ruby-104/ruby/lib/irb/
H A Dlocale.rb17 (?:_ (?<territory>[[:alpha:]]{2,3}) )?
26 @lang = @territory = @encoding_name = @modifier = nil
29 @lang, @territory, @encoding_name, @modifier = m[:language], m[:territory], m[:codeset], m[:modifier]
34 warn "%s is obsolete. use %s" % ["#{@lang}_#{@territory}.#{@encoding_name}", "#{@lang}_#{@territory}.#{@encoding.name}"]
42 attr_reader :lang, :territory, :encoding, :modifieer
164 if @territory
166 yield "#{@lang}_#{@territory}.#{@encoding_name}@#{@modifier}" if @modifier
167 yield "#{@lang}_#{@territory}
[all...]
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/comp/
H A Dlocaleconv.c98 return locales[AST_LC_NUMERIC]->territory == &lc_territories[0] ? &default_lconv : &debug_lconv;
H A Dsetlocale.c122 for (i = 0; i < elementsof(lc->territory->languages); i++)
123 if (lc->territory->languages[i] == lc->language)
125 ctry = lc->territory->indices[i];
2329 dp = locales[cp->internal]->territory == &lc_territories[0] ? &default_numeric : *locales[cp->internal]->territory->code == 'e' ? &eu_numeric : &us_numeric;
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/port/
H A Dlc.c411 return canonical(lc->language, lc->territory, lc->charset, lc->attributes, flags, buf, siz);
458 tp = mp->territory;
547 sfprintf(sfstderr, "locale make %s language=%s territory=%s charset=%s attributes=%s\n", name, language_name, territory_name, charset_name, attributes_name);
634 * territory
790 lc->territory = tp ? tp : &lc_territories[0];
811 sfprintf(sfstderr, "locale make %17s %16s %16s %16s language=%s territory=%s charset=%s%s\n", "", lc->name, lc->code, "", lc->language->name, lc->territory->name, lc->charset->code, (lc->flags & LC_local) ? " local" : "");
826 int territory; member in struct:Lc_scan_s
842 ls->territory = -1;
843 ls->language = elementsof(ls->lc.territory
[all...]
H A Dlcgen.c32 * :territory:
109 Territory_t* territory; member in struct:Map_s
119 Table_t territory; member in struct:State_s
314 state.territory.count = 3;
371 fprintf(stderr, "%s: %d: %s: must be specified after :territory:\n", command, line, arg[0]);
387 else if (!strcmp(arg[0], ":territory:"))
484 if (tp != (Territory_t*)enter(&state.territory, (Link_t*)tp))
486 fprintf(stderr, "%s: %d: %s: duplicate territory\n", command, line, tp->link.code);
569 fprintf(stderr, "%s: %d: territory code expected\n", command, line);
577 if (!(mp->territory
[all...]
H A Dmc.c146 v = lc->territory->code;
H A Dlc.tab168 :territory:
/macosx-10.9.5/CPANInternal-140/DateTime-Locale/lib/DateTime/
H A DLocale.pm74 foreach my $p (qw( language script territory variant )) {
223 my ( $language, $script, $territory, $variant ) = _parse_id($name);
232 $guess .= '_' . uc $territory if defined $territory;
239 push @guesses, join '_', lc $language, uc $territory, uc $variant;
242 if ( defined $territory ) {
243 push @guesses, join '_', lc $language, uc $territory;
257 (?: _([A-Z]+) )? # territory - ALL CAPS - optional
358 {language}_{script}_{territory}
360 {language}_{territory}
[all...]
/macosx-10.9.5/tcl-102/tcl84/tcl/library/msgcat/
H A Dmsgcat.tcl395 # Assume $value is of form: $language[_$territory][.$codeset][@modifier]
396 # Convert to form: $language[_$territory][_$modifier]
402 # (_([^.@]*))? # Match (optional) "territory"; starts with _
406 # } $value -> language _ territory _ codeset _ modifier
408 -> language _ territory _ codeset _ modifier]} {
412 if {[string length $territory]} {
413 append ret _$territory
467 # more precise information, such as territory. For example,
/macosx-10.9.5/CPANInternal-140/DateTime-Locale/tools/lib/
H A DLDML.pm93 has 'territory' => (
314 for my $thing (qw( language script territory variant )) {
656 (?: _([A-Z]+) )? # territory - ALL CAPS - optional
670 $self->territory(),
731 my $terr = $self->territory();
/macosx-10.9.5/tcl-102/tcl/tcl/library/msgcat/
H A Dmsgcat.tcl417 # Assume $value is of form: $language[_$territory][.$codeset][@modifier]
418 # Convert to form: $language[_$territory][_$modifier]
424 # (_([^.@]*))? # Match (optional) "territory"; starts with _
428 # } $value -> language _ territory _ codeset _ modifier
430 -> language _ territory _ codeset _ modifier]} {
434 if {[string length $territory]} {
435 append ret _$territory
493 # more precise information, such as territory. For example,
/macosx-10.9.5/CPANInternal-140/DateTime-Locale/lib/DateTime/Locale/
H A DBase.pm531 The territory portion of the id, if any.
549 =item * $locale->territory()
551 The territory name for the locale in English, if any.
571 The territory name for the locale in its native language, if any.
H A DCatalog.pm3418 identifying any or all of territory, script, or variant.
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dfdcc.vim28 syn keyword fdccKeywordIdentification title source address contact email tel fax language territory revision date category
/macosx-10.9.5/CPANInternal-140/DateTime-Locale/tools/
H A Dgenerate-from-cldr297 my $glibc_id = join '_', grep { defined } $ldml->language(), $ldml->territory();
732 identifying any or all of territory, script, or variant.
792 $three, $ldml->territory(), $ldml->script(),

Completed in 175 milliseconds