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

12

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Locale/
H A Dsetlocale1.c44 #include <locale.h>
48 "warning: reference to compatibility setlocale(); include <locale.h> for correct reference")
51 * Preparation for the future import of multibyte locale.
55 setlocale(int category, const char *locale) argument
57 /* locale may be NULL */
60 return __setlocale(category, locale);
H A Dsetlocale32.c36 #include <locale.h>
40 __setlocale_mb_len_max_32(int category, const char *locale) argument
42 /* locale may be NULL */
45 return __setlocale(category, locale);
H A D_def_messages.c14 #include <locale.h>
H A D_def_numeric.c14 #include <locale.h>
H A D_def_time.c14 #include <locale.h>
H A D_def_monetary.c15 #include <locale.h>
H A Dsetlocale.c64 #include <locale.h>
131 __setlocale(int category, const char *locale) argument
144 if (!locale)
149 * Default to the current locale for everything.
156 * Now go fill up new_categories from the locale argument
158 if (!*locale) {
172 (void)strncpyX(new_categories[category], locale,
175 if ((r = strchr(locale, '/')) == 0) {
177 (void)strncpyX(new_categories[i], locale,
183 _DIAGASSERT(*locale !
[all...]
H A Dlocaleconv.c14 #include <locale.h>
23 * locale has been changed.
29 * Return the current locale conversion.
H A Dnl_langinfo.c14 #include <locale.h>
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/
H A Dsitecustomize.py12 import locale namespace
15 DefaultLocal = locale.getdefaultlocale()[1]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/
H A Dlocale.h40 * @(#)locale.h 8.1 (Berkeley) 6/2/93
41 * $NetBSD: locale.h,v 1.14 2005/02/03 04:39:32 perry Exp
48 Each member of this structure is commented with its value in the "C" locale.
52 in the current locale, or that it is of zero length. Except for grouping and mon_grouping, the
56 the value is not available in the current locale.
94 char *currency_symbol; /**< "" The local currency symbol for the current locale. */
139 #define LC_ALL 0 ///< The application's entire locale.
151 /** @fn char *setlocale(int category, const char *locale)
153 @brief The setlocale function is used to retrieve or change parts or all of the current locale.
155 @details If locale i
[all...]
/vbox/src/apps/svnsync-vbox/
H A Dsvn_private_config.h70 #define SVN_LOCALE_RELATIVE_PATH "../share/locale"
71 #include <locale.h>
/vbox/src/VBox/Additions/linux/lightdm-greeter/liblightdm-gobject-1.5.0/
H A Dlanguage.c12 #include <locale.h>
43 gchar *command = "locale -a";
76 if (strcmp (command, "locale -a") == 0 && !g_strrstr (code, ".utf8"))
98 /* Get a valid locale name that can be passed to setlocale(), so we always can use nl_langinfo() to get language and country names. */
102 gchar *locale = NULL, *language; local
120 if (g_spawn_command_line_sync ("locale -a", &locales, NULL, NULL, &error))
127 g_warning ("Failed to run 'locale -a': %s", error->message);
141 locale = g_strdup (loc);
149 return locale;
227 gchar *locale local
270 gchar *locale = get_locale_name (priv->code); local
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/
H A DDiPrint.h38 * request will allow us to build it with the description in the locale of
63 char *locale);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/
H A DDiPrint.h38 * request will allow us to build it with the description in the locale of
63 char *locale);
/vbox/src/VBox/Additions/common/crOpenGL/pack/
H A Dpackspu_getstring.c13 #include <locale.h>
/vbox/src/VBox/RDP/client-1.8.3/
H A Drdesktop.c51 #include <locale.h>
579 char *locale = NULL; local
587 /* Set locale according to environment */
588 locale = setlocale(LC_ALL, "");
589 if (locale)
591 locale = xstrdup(locale);
1126 if (locale && xkeymap_from_locale(locale))
1135 if (locale)
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Python/PyMod-2.7.1/Objects/stringlib/
H A Dlocaleutil.h1 /* stringlib: locale related helpers implementation */
6 #include <locale.h>
69 the locale into unicode. */
200 * Reads thee current locale and calls _Py_InsertThousandsGrouping().
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Python/PyMod-2.7.2/Objects/stringlib/
H A Dlocaleutil.h2 stringlib: locale related helpers implementation.
17 #include <locale.h>
80 the locale into unicode. */
211 * Reads thee current locale and calls _Py_InsertThousandsGrouping().
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/msvcrt/
H A Dcrtdefs.h227 char *locale; member in struct:threadlocaleinfostruct::__anon13690
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/
H A Ddtoa.c52 #include <locale.h>
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Ddwrite.idl997 HRESULT SetLocaleName(WCHAR const* locale, DWRITE_TEXT_RANGE range);
1146 WCHAR const** locale);
1221 WCHAR const* locale,
1246 WCHAR const* locale,
1269 WCHAR const* locale,
1357 WCHAR const *locale,
1391 WCHAR const* locale,
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Time/
H A Dstrptime.c62 #include <locale.h>
135 case 'c': /* Date and time, using the locale's format. */
164 case 'X': /* The time, using the locale's format. */
168 case 'x': /* The date, using the locale's format. */
179 case 'A': /* The day of week, using the locale's form. */
186 case 'B': /* The month, using the locale's form. */
249 case 'p': /* The locale's equivalent of AM/PM. */
/vbox/src/VBox/Runtime/r3/posix/
H A Dutf8-posix.cpp40 #include <locale.h>
80 * Gets the codeset of the current locale (LC_CTYPE).
/vbox/src/VBox/Runtime/r3/
H A Dinit.cpp51 #include <locale.h>
387 * Init C runtime locale before we do anything that may end up converting
388 * paths or we'll end up using the "C" locale for path conversion.

Completed in 770 milliseconds

12