HomeSort by relevance Sort by last modified time
    Searched refs:locale (Results 251 - 275 of 1427) sorted by null

<<11121314151617181920>>

  /external/libcxx/test/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.statics/
Android.mk 17 test_makefile := external/libcxx/test/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.statics/Android.mk
19 test_name := localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.statics/classic_table
  /external/libcxx/test/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.virtuals/
Android.mk 17 test_makefile := external/libcxx/test/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.virtuals/Android.mk
19 test_name := localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.virtuals/tested_elsewhere
  /external/libcxx/test/localization/locale.stdcvt/
codecvt_utf16.pass.cpp 53 std::locale loc(std::locale::classic(), new C);
codecvt_utf8.pass.cpp 53 std::locale loc(std::locale::classic(), new C);
  /external/libcxx/test/localization/locales/locale/locale.operators/
eq.pass.cpp 10 // <locale>
14 #include <locale>
17 #include "platform_support.h" // locale name macros
21 std::locale cloc;
22 std::locale copy(cloc);
23 std::locale n1(LOCALE_en_US_UTF_8);
24 std::locale n2(LOCALE_en_US_UTF_8);
25 std::locale noname1 = n1.combine<std::ctype<char> >(cloc);
26 std::locale nonamec = noname1;
27 std::locale noname2 = n1.combine<std::ctype<char> >(cloc)
    [all...]
  /external/libcxx/test/localization/locales/locale.convenience/classification/
isalnum.pass.cpp 10 // <locale>
12 // template <class charT> bool isalnum (charT c, const locale& loc);
14 #include <locale>
19 std::locale l;
isalpha.pass.cpp 10 // <locale>
12 // template <class charT> bool isalpha (charT c, const locale& loc);
14 #include <locale>
19 std::locale l;
iscntrl.pass.cpp 10 // <locale>
12 // template <class charT> bool iscntrl (charT c, const locale& loc);
14 #include <locale>
19 std::locale l;
isdigit.pass.cpp 10 // <locale>
12 // template <class charT> bool isdigit (charT c, const locale& loc);
14 #include <locale>
19 std::locale l;
isgraph.pass.cpp 10 // <locale>
12 // template <class charT> bool isgraph (charT c, const locale& loc);
14 #include <locale>
19 std::locale l;
islower.pass.cpp 10 // <locale>
12 // template <class charT> bool islower (charT c, const locale& loc);
14 #include <locale>
19 std::locale l;
isprint.pass.cpp 10 // <locale>
12 // template <class charT> bool isprint (charT c, const locale& loc);
14 #include <locale>
19 std::locale l;
ispunct.pass.cpp 10 // <locale>
12 // template <class charT> bool ispunct (charT c, const locale& loc);
14 #include <locale>
19 std::locale l;
isspace.pass.cpp 10 // <locale>
12 // template <class charT> bool isspace (charT c, const locale& loc);
14 #include <locale>
19 std::locale l;
isupper.pass.cpp 10 // <locale>
12 // template <class charT> bool isupper (charT c, const locale& loc);
14 #include <locale>
19 std::locale l;
isxdigit.pass.cpp 10 // <locale>
12 // template <class charT> bool isxdigit (charT c, const locale& loc);
14 #include <locale>
19 std::locale l;
  /external/libcxx/test/localization/locales/locale.convenience/conversions/conversions.character/
tolower.pass.cpp 10 // <locale>
12 // template <class charT> charT tolower(charT c, const locale& loc);
14 #include <locale>
19 std::locale l;
toupper.pass.cpp 10 // <locale>
12 // template <class charT> charT toupper(charT c, const locale& loc);
14 #include <locale>
19 std::locale l;
  /external/chromium_org/chrome/browser/importer/
importer_list.cc 59 // |locale|: The application locale used for lookups in Firefox's
60 // locale-specific search engines feature (see firefox_importer.cc for
62 void DetectFirefoxProfiles(const std::string locale,
98 firefox->locale = locale;
103 const std::string& locale,
113 DetectFirefoxProfiles(locale, &profiles);
117 DetectFirefoxProfiles(locale, &profiles);
121 DetectFirefoxProfiles(locale, &profiles)
    [all...]
  /external/libcxx/test/localization/locales/locale/locale.members/
combine.pass.cpp 10 // <locale>
12 // template <class Facet> locale combine(const locale& other) const;
14 #include <locale>
32 void check(const std::locale& loc)
68 : public std::locale::facet
72 static std::locale::id id;
75 std::locale::id my_facet::id;
81 std::locale loc;
82 std::locale loc2(loc, new my_facet)
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/messages/
msgs.js 34 * Return the current locale.
35 * @return {string} The locale.
38 return chrome.i18n.getMessage('locale');
85 * @return {string} The number in the correct locale.
92 * Gets a localized display name for a locale.
93 * NOTE: Only a subset of locale identifiers are supported. See the
95 * @param {string} locale On the form |ll| or |ll_CC|, where |ll| is
99 cvox.Msgs.prototype.getLocaleDisplayName = function(locale) {
104 var name = this.localeNameDict_[locale];
106 throw Error('Unsupported locale identifier: ' + locale)
    [all...]
  /external/chromium_org/third_party/libxslt/libxslt/
xsltlocale.c 2 * xsltlocale.c: locale handling
73 * Creates a new locale of an opaque system dependent type based on the
76 * Returns the locale or NULL on error or if no matching locale was found
81 xsltLocale locale; local
113 locale = newlocale(LC_COLLATE_MASK, localeName, NULL);
114 if (locale != NULL)
115 return(locale);
122 /* Try locale without territory, e.g. for Esperanto (eo) */
125 locale = newlocale(LC_COLLATE_MASK, localeName, NULL)
149 xsltLocale locale = (xsltLocale)0; local
    [all...]
  /external/chromium_org/v8/test/intl/collator/
default-locale.js 28 // Constructing Collator with no locale arguments or with []
29 // creates one with default locale.
36 assertFalse(options.locale === 'und');
37 assertFalse(options.locale === '');
38 assertFalse(options.locale === undefined);
41 assertEquals(options.locale, %GetDefaultICULocale());
44 assertEquals(options.locale, collatorNone.resolvedOptions().locale);
48 assertEquals(options.locale, collatorBraket.resolvedOptions().locale);
    [all...]
  /development/ndk/platforms/android-3/include/
locale.h 52 extern char *setlocale(int category, const char *locale);
  /external/chromium_org/chrome/browser/chromeos/base/
locale_util.h 5 // This file contains utility functions for locale change.
27 // locale - (copy of) locale argument to SwitchLanguage(). Expected locale.
28 // loaded_locale - actual locale name loaded.
29 // success - if locale load succeeded.
30 // (const std::string* locale, const std::string* loaded_locale, bool success)
37 // currently in use may not be supported by the new locale. Using the new locale
41 void SwitchLanguage(const std::string& locale,
    [all...]

Completed in 75 milliseconds

<<11121314151617181920>>