Searched refs:locale (Results 1 - 25 of 308) sorted by relevance

1234567891011>>

/osnet-11/usr/src/lib/libintl/common/
H A Dllib-lintl37 #include <locale.h>
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A Dlocale.pm1 package locale; package
7 locale - Perl pragma to use and avoid POSIX locales for built-in operations
13 use locale;
22 LC_COLLATE for string comparison). Each "use locale" or "no locale"
30 $locale::hint_bits = 0x4;
33 $^H |= $locale::hint_bits;
37 $^H &= ~$locale::hint_bits;
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/et/
H A Dkdc5_err.c5 #include <locale.h>
H A Dasn1_err.c5 #include <locale.h>
H A Dpty_err.c5 #include <locale.h>
H A Dadb_err.c12 #include <locale.h>
H A Dchpass_util_strings.c8 #include <locale.h>
/osnet-11/usr/src/lib/libparted/common/lib/
H A Dlocalcharset.c3 /* Determine a canonical name for the current locale's character encoding.
55 # include <locale.h>
351 /* Determine the current locale's character encoding, and canonicalize it
375 returns "US-ASCII". Return the suffix of the locale name from the
379 const char *locale; local
382 locale = getenv ("LC_ALL");
383 if (locale == NULL || locale[0] == '\0')
385 locale = getenv ("LC_CTYPE");
386 if (locale
432 const char *locale = NULL; local
475 const char *locale; local
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/gnulib/
H A Dlocalcharset.c1 /* Determine a canonical name for the current locale's character encoding.
53 # include <locale.h>
349 /* Determine the current locale's character encoding, and canonicalize it
373 returns "US-ASCII". Return the suffix of the locale name from the
377 const char *locale; local
380 locale = getenv ("LC_ALL");
381 if (locale == NULL || locale[0] == '\0')
383 locale = getenv ("LC_CTYPE");
384 if (locale
430 const char *locale = NULL; local
473 const char *locale; local
[all...]
H A Dnl_langinfo.c1 /* nl_langinfo() replacement: query locale dependent information.
27 # include <locale.h>
40 const char *locale; local
43 locale = setlocale (LC_CTYPE, NULL);
44 if (locale != NULL && locale[0] != '\0')
46 /* If the locale name contains an encoding after the dot, return
48 const char *dot = strchr (locale, '.');
81 /* The %Ex conversion in strftime behaves like %x if the locale does not
86 /* The %Ec conversion in strftime behaves like %c if the locale doe
[all...]
/osnet-11/usr/src/lib/libgen/common/
H A Disencrypt.c33 #include <locale.h>
47 char *locale; local
63 locale = setlocale(LC_CTYPE, 0);
64 if (strcmp(locale, "C") == 0 || strcmp(locale, "ascii") == 0)
/osnet-11/usr/src/lib/libslp/javalib/com/sun/slp/
H A DServiceStore.java108 * Return the locale in which this record is registered.
110 * @return The language locale in which this record is registered.
183 * @param locale The Locale.
196 Vector scopes, Locale locale,
201 * Deregister a ServiceURL from the database for every locale
203 * and locale deregistered, regardless of the number of scopes in
205 * same in each scope if the locale is the same.
226 * @param locale The Locale.
235 Vector scopes, Locale locale)
240 * Delete for every locale tha
195 register(ServiceURL url, Vector attrs, Vector scopes, Locale locale, Hashtable urlSig, Hashtable attrSig) argument
234 updateRegistration(ServiceURL url, Vector attrs, Vector scopes, Locale locale) argument
258 deleteAttributes(ServiceURL url, Vector scopes, Vector attrTags, Locale locale) argument
312 findServices(String serviceType, Vector scopes, String query, Locale locale) argument
344 findAttributes(ServiceURL url, Vector scopes, Vector attrTags, Locale locale) argument
372 findAttributes(String serviceType, Vector scopes, Vector attrTags, Locale locale) argument
394 getServiceRecord(ServiceURL URL, Locale locale) argument
[all...]
H A DServerAttribute.java60 ServerAttribute(String id_in, Vector values_in, Locale locale) argument
65 idPattern = new AttributeString(id, locale);
78 AttributeString as = new AttributeString(s, locale);
90 ServerAttribute(ServiceLocationAttribute attr, Locale locale) { argument
91 this(attr.id, attr.getValues(), locale);
H A DCSrvDereg.java53 CSrvDereg(Locale locale, argument
70 this.initialize(locale, url, scopes, tags, auth);
76 void initialize(Locale locale, argument
85 new SLPHeaderV2(SrvLocHeader.SrvDereg, false, locale);
H A DParser.java123 * @param locale Locale in which to interpret query strings.
130 Locale locale,
159 ParserRecord rec = parseFilter(tk, ev, locale, false, true);
284 Locale locale,
310 ret = parseFilterlist(tk, ev, locale, (char)tok, invert, eval);
313 ret = parseFilter(tk, ev, locale, !invert, eval);
317 ret = parseItem(tk, ev, locale, invert, eval);
326 ret = parseItem(tk, ev, locale, invert, eval);
351 Locale locale,
367 prex = parseFilter(tk, ev, locale, inver
128 parseAndEvaluateQuery(String query, Parser.QueryEvaluator ev, Locale locale, ParserRecord ret) argument
282 parseFilter(StreamTokenizer tk, Parser.QueryEvaluator ev, Locale locale, boolean invert, boolean eval) argument
349 parseFilterlist(StreamTokenizer tk, Parser.QueryEvaluator ev, Locale locale, char op, boolean invert, boolean eval) argument
406 parseItem(StreamTokenizer tk, Parser.QueryEvaluator ev, Locale locale, boolean invert, boolean eval) argument
514 parseAttr(StreamTokenizer tk, Locale locale) argument
582 parseValue(StreamTokenizer tk, Locale locale) argument
[all...]
H A DServiceLocationManager.java66 * @param locale The Locale of the Locator object. Use null for default.
73 public static Locator getLocator(Locale locale) argument
77 if (locale == null) {
78 locale = config.getLocale();
82 String lang = locale.getLanguage();
96 locator = (Locator)getInstance(locatorClass, locale);
111 * @param locale The Locale of the Advertiser object. Use null for default.
118 public static Advertiser getAdvertiser(Locale locale) argument
121 if (locale == null) {
122 locale
293 getInstance(Class cobj, Locale locale) argument
[all...]
H A DSARequester.java58 private Locale locale; field in class:SARequester
63 Assert.nonNullParameter(nlocale, "locale");
69 locale = nlocale;
94 * Return the Locator's locale object. All requests are made in
95 * this locale.
101 return locale;
107 * the Advertiser's locale.
145 * Add attributes to a service URL in the locale of the Advertiser.
167 * Delete the attributes from a service URL in the locale of
230 locale,
[all...]
H A DCAttrMsg.java98 CAttrMsg(Locale locale, ServiceURL url, Vector scopes, Vector tags) argument
101 this.hdr = new SLPHeaderV2(SrvLocHeader.AttrRqst, false, locale);
110 CAttrMsg(Locale locale, ServiceType type, Vector scopes, Vector tags) argument
113 this.hdr = new SLPHeaderV2(SrvLocHeader.AttrRqst, false, locale);
H A DCSrvReg.java55 Locale locale,
98 locale,
110 Locale locale,
119 SLPHeaderV2 hdr = new SLPHeaderV2(SrvLocHeader.SrvReg, fresh, locale);
54 CSrvReg(boolean fresh, Locale locale, ServiceURL urlEntry, Vector scopes, Vector attrs, Hashtable URLSignatures, Hashtable attrSignatures) argument
109 initialize(boolean fresh, Locale locale, ServiceURL urlEntry, Vector scopes, Vector attrs, Hashtable URLSignatures, Hashtable attrSignatures) argument
/osnet-11/usr/src/lib/libxcurses/src/libc/i18n/
H A Dm_text.c44 #include <locale.h>
52 static char *locale = NULL; /* remember locale loaded */ variable
120 nlocale = setlocale(LC_MESSAGES, NULL); /* Query current locale */
123 || locale == NULL /* locale never set */
124 || strcmp(locale, nlocale)!=0) { /* locale changed */
127 if (locale != NULL && nlocale != NULL && domain != NULL
128 && strcmp(locale, nlocal
[all...]
/osnet-11/usr/src/lib/libpkg/common/
H A Dpkglocale.h35 #include <locale.h>
/osnet-11/usr/src/lib/libdhcpsvc/private/
H A Derrmsgs.c35 #include <locale.h>
/osnet-11/usr/src/cmd/ldap/common/
H A Dconvutf8.c30 #include <locale.h>
220 char *locale; local
222 locale = setlocale(LC_CTYPE, "");
223 if (locale && *locale) {
224 len = strlen(locale);
226 locale = "C";
230 if ((!strncmp(locale, "/\x03:", 3)) &&
231 (!strcmp(&locale[len - 2], ";/"))) {
232 locale
564 GetCharsetFromLocale(char *locale) argument
654 char *locale, *newcharset; local
[all...]
/osnet-11/usr/src/lib/libc/port/gen/
H A Dcatopen.c43 #include <locale.h>
88 find_catalog_using_nlspath_locale(char *name, char *locale, char *nlspath, argument
101 * Extract language, territory, and codeset codes from a locale
106 if (locale) {
107 l = s = libc_strdup(locale);
148 s = replace_nls_option(s, name, path, locale, l, t, c,
171 find_catalog_from_system_default_location(char *pathname, char *locale, argument
176 len_locale = strlen(locale);
181 (void) memcpy(saved, locale, len_locale);
197 * the current locale nam
208 char *locale; local
322 replace_nls_option(char *s, char *name, char *path, char *locale, char *lang, char *territory, char *codeset, int *ltc_defined) argument
[all...]
/osnet-11/usr/src/lib/libast/common/misc/
H A Dtranslate.c48 int debug; /* special debug locale */
49 const char* locale; /* message catalog locale */ member in struct:__anon1171
126 * find catalog in locale and return catopen() descriptor
130 find(const char* locale, const char* catalog) argument
136 if (!mcfind(locale, catalog, LC_MESSAGES, 0, path, sizeof(path)) || (d = catopen(path, NL_CAT_LOCALE)) == NOCAT)
138 if (locale == (const char*)lc_categories[AST_LC_MESSAGES].prev)
142 ast.locale.set |= AST_LC_internal;
143 setlocale(LC_MESSAGES, locale);
149 ast.locale
[all...]

Completed in 58 milliseconds

1234567891011>>