HomeSort by relevance Sort by last modified time
    Searched defs:locale (Results 1 - 25 of 64) sorted by null

1 2 3

  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/
locale.pm 1 package locale; package
7 locale - Perl pragma to use and avoid POSIX locales for built-in operations
13 use locale;
14 @x = sort @y; # Locale-defined sorting order
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;
  /onnv/onnv-gate/usr/src/lib/libgen/common/
isencrypt.c 33 #include <locale.h>
47 char *locale; local
63 locale = setlocale(LC_CTYPE, 0);
64 if (strcmp(locale, "C") == 0 || strcmp(locale, "ascii") == 0)
  /onnv/onnv-gate/usr/src/cmd/svc/startd/
specials.c 44 #include <locale.h>
64 char *locale; local
67 * /usr, with timezone and locale data, is now available.
75 locale = st->st_locale;
82 free(locale);
84 st->st_locale = locale;
  /onnv/onnv-gate/usr/src/lib/libslp/javalib/com/sun/slp/
AttributeString.java 54 Locale locale; // the locale in which this string was created. field in class:AttributeString
56 // Create an attribute string. Use the passed in locale to determine
59 AttributeString(String str, Locale nlocale) {
62 locale = nlocale;
70 private String parse(String str, Locale nlocale) {
SARequester.java 58 private Locale locale; field in class:SARequester
61 SARequester(Locale nlocale) {
63 Assert.nonNullParameter(nlocale, "locale");
69 locale = nlocale;
94 * Return the Locator's locale object. All requests are made in
95 * this locale.
97 * @return The Locale object.
100 public Locale getLocale() {
101 return locale;
    [all...]
  /onnv/onnv-gate/usr/src/lib/libxcurses/src/libc/i18n/
m_text.c 44 #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, nlocale) == 0)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/ldap/common/
ldapmodrdn.c 13 #include <locale.h>
17 #include <locale.h>
48 char *locale = setlocale(LC_ALL, ""); local
ldapdelete.c 32 #include <locale.h>
83 char *locale = setlocale(LC_ALL, ""); local
convutf8.c 31 #include <locale.h>
221 char *locale; local
223 locale = setlocale(LC_CTYPE, "");
224 if (locale && *locale) {
225 len = strlen(locale);
227 locale = "C";
231 if ((!strncmp(locale, "/\x03:", 3)) &&
232 (!strcmp(&locale[len - 2], ";/"))) {
233 locale += 3
655 char *locale, *newcharset; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/sgs/moe/common/
moe.c 33 #include <locale.h>
38 locale() function
104 locale();
206 locale();
  /onnv/onnv-gate/usr/src/cmd/expand/
expand.c 44 #include <locale.h>
70 char *locale; local
78 locale = setlocale(LC_CTYPE, NULL);
79 isClocale = (strcmp(locale, "C") == 0);
  /onnv/onnv-gate/usr/src/cmd/krb5/kadmin/gui/visualrt/sunsoft/jws/visual/rt/props/
MessageCatalog.java 42 public MessageCatalog(String domainname, Locale locale)
46 this.locale = locale;
49 resource = ResourceBundle.getBundle(domainname, locale);
59 this(domainname, Locale.getDefault());
201 private Locale locale; field in class:MessageCatalog
  /onnv/onnv-gate/usr/src/cmd/print/printmgr/com/sun/admin/pm/server/
DoPrinterNS.c 48 const char *locale);
83 const char *locale; local
94 locale = (*env)->GetStringUTFChars(env, jlocale, 0);
96 ret = _dorexec(host, user, passwd, cmd, locale);
  /onnv/onnv-gate/usr/src/lib/libc/port/gen/
catopen.c 46 #include <locale.h>
94 char *nlspath, *lang, *territory, *codeset, *locale; local
99 * locale=language_territory.codeset
107 locale = setlocale(LC_MESSAGES, NULL);
109 locale = getenv("LANG");
117 * extract lang, territory and codeset from locale name
119 if (locale) {
120 lang = s = libc_strdup(locale);
138 } /* if (locale) */
158 s = replace_nls_option(s, name, pathname, locale,
    [all...]
  /onnv/onnv-gate/usr/src/cmd/ldapcachemgr/
cachemgr_discovery.c 109 * Returns the locale specified by the SLP locale property, or just
110 * returns the default SLP locale if the property was not set.
113 const char *locale = SLPGetProperty("net.slp.locale"); local
114 return (locale ? locale : "en");
  /onnv/onnv-gate/usr/src/cmd/srchtxt/
srchtxt.c 38 #include <locale.h>
45 #define P_locale "/usr/lib/locale/"
75 static int lflg; /* set if locale is specified on command line */
78 static char locale[15]; /* save name of current locale */ variable
115 (void) strcpy(locale, optarg);
136 (void) strcpy(locale, setlocale(LC_MESSAGES, ""));
138 (void) strcpy(&pathname[L_locale - 1], locale);
210 "usage: srchtxt [-s]\n srchtxt [-s] -l locale\n"
211 " srchtxt [-s] [-l locale] [-m msgfile,...] [text]\n")
    [all...]
  /onnv/onnv-gate/usr/src/lib/libadt_jni/common/
adt_jni.c 86 char *locale; local
89 locale = I18N_SETUP;
91 (void) setlocale(LC_MESSAGES, locale);
107 char *locale; local
115 locale = I18N_SETUP;
118 (void) setlocale(LC_MESSAGES, locale);
199 char *locale; local
209 locale = I18N_SETUP;
212 (void) setlocale(LC_MESSAGES, locale);
226 char *locale; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libldap4/common/
open.c 23 #include <locale.h>
194 char *locale; local
196 locale = setlocale(LC_ALL, "");
  /onnv/onnv-gate/usr/src/cmd/svr4pkg/pkgremove/
wsreg_pkgrm.c 85 #include <locale.h>
158 char *locale = get_locale(); local
159 if (locale == NULL)
160 locale = "en";
162 if (locale == NULL) {
191 locale);
206 get_all_dependents_r(&id, &nm, ppws[i], &depth, locale);
215 free(locale);
362 * locale The locale to use for querying for display names
    [all...]
  /onnv/onnv-gate/usr/src/lib/libparted/common/lib/
localcharset.c 1 /* Determine a canonical name for the current locale's character encoding.
45 # include <locale.h>
276 /* Determine the current locale's character encoding, and canonicalize it
301 of the locale name from the environment variables (if present) or
305 const char *locale; local
308 locale = getenv ("LC_ALL");
309 if (locale == NULL || locale[0] == '\0')
311 locale = getenv ("LC_CTYPE");
312 if (locale == NULL || locale[0] == '\0'
348 const char *locale = NULL; local
385 const char *locale; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libast/common/regex/
regcache.c 57 char* locale; member in struct:State_s
125 * flush the cache if the locale changed
130 if ((s = setlocale(LC_CTYPE, NiL)) != matchstate.locale)
132 matchstate.locale = s;
  /onnv/onnv-gate/usr/src/cmd/zoneadmd/
zoneadmd.h 79 char *locale; /* locale to use for gettext() */ member in struct:zlog
98 extern char *localize_msg(char *locale, const char *msg);
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sbin/snoop/
fw.h 95 char _TKFAR *locale; member in struct:invk_request
  /onnv/onnv-gate/usr/src/cmd/fs.d/nfs/lib/
nfslog_config.c 31 #include <locale.h>
113 char *locale; local
116 * Set the locale correctly so that we can correctly identify
119 if ((locale = getenv("LC_ALL")) != NULL)
120 (void) setlocale(LC_ALL, locale);
121 else if ((locale = getenv("LC_CTYPE")) != NULL)
122 (void) setlocale(LC_CTYPE, locale);
123 else if ((locale = getenv("LANG")) != NULL)
124 (void) setlocale(LC_CTYPE, locale);
  /onnv/onnv-gate/usr/src/cmd/lp/filter/postscript/postprint/
postprint.c 122 char *locale = NULL; variable
296 if (((locale = getenv("LC_MONETARY")) != NULL) ||
297 ((locale = getenv("LANG")) != NULL)) {
300 /* if there is a locale specific prologue, use it as the default */
301 if ((tmp = calloc(1, strlen(POSTPRINT) + strlen(locale) + 2)) != NULL) {
302 sprintf(tmp, "%s-%s", POSTPRINT, locale);
309 /* if the locale has 8859-15 or euro in it, add the symbol to font */
310 if ((strstr(locale, "8859-15") != NULL) ||
311 (strstr(locale, "euro") != NULL))

Completed in 8398 milliseconds

1 2 3