HomeSort by relevance Sort by last modified time
    Searched defs:default_locale (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/chrome/common/extensions/api/i18n/
default_locale_handler.h 18 std::string default_locale; member in struct:extensions::LocaleInfo
23 // Parses the "default_locale" manifest key.
default_locale_handler.cc 30 return info ? info->default_locale : base::EmptyString();
42 &info->default_locale) ||
43 !l10n_util::IsValidLocaleSyntax(info->default_locale)) {
55 // default_locale and _locales have to be both present or both missing.
58 std::string default_locale = local
62 if (default_locale.empty() && !path_exists)
65 if (default_locale.empty() && path_exists) {
69 } else if (!default_locale.empty() && !path_exists) {
79 const base::FilePath default_locale_path = path.AppendASCII(default_locale);
  /external/chromium_org/chrome/browser/ui/search/
local_ntp_browsertest.cc 57 std::string default_locale = g_browser_process->GetApplicationLocale(); local
58 EXPECT_NE("fr", default_locale);
  /external/stlport/test/unit/
locale_test.cpp 224 void LocaleTest::default_locale() function in class:LocaleTest
  /ndk/tests/device/test-gnustl-full/unit/
locale_test.cpp 224 void LocaleTest::default_locale() function in class:LocaleTest
  /ndk/tests/device/test-stlport/unit/
locale_test.cpp 224 void LocaleTest::default_locale() function in class:LocaleTest
  /external/chromium_org/base/i18n/
string_search_unittest.cc 24 std::string default_locale(uloc_getDefault());
25 bool locale_is_posix = (default_locale == "en_US_POSIX");
62 SetICUDefaultLocale(default_locale.data());
85 std::string default_locale(uloc_getDefault());
86 bool locale_is_posix = (default_locale == "en_US_POSIX");
180 SetICUDefaultLocale(default_locale.data());
193 const char* default_locale = uloc_getDefault(); local
199 SetICUDefaultLocale(default_locale);
203 std::string default_locale(uloc_getDefault());
204 bool locale_is_posix = (default_locale == "en_US_POSIX")
    [all...]
  /external/chromium_org/chrome/browser/renderer_host/
chrome_extension_message_filter.cc 252 std::string default_locale; local
255 default_locale = extensions::LocaleInfo::GetDefaultLocale(extension);
262 this, extension_path, extension_id, default_locale, reply_msg));
268 const std::string& default_locale,
274 extension_path, extension_id, default_locale));
  /external/chromium_org/extensions/common/
extension_l10n_util.cc 113 std::string default_locale; local
114 if (manifest.GetString(keys::kDefaultLocale, &default_locale))
115 return default_locale;
263 std::string default_locale = GetDefaultLocaleFromManifest(*manifest, error); local
267 extension_path, default_locale, error));
328 const std::string& default_locale,
331 if (!application_locale.empty() && application_locale != default_locale)
333 all_fallback_locales->push_back(default_locale);
368 const std::string& default_locale,
374 application_locale, default_locale, &all_fallback_locales)
398 std::string default_locale = GetDefaultLocaleFromManifest(*manifest, error); local
    [all...]

Completed in 317 milliseconds