OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LocaleDataPakExists
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/ui/base/resource/
resource_bundle_unittest.cc
212
EXPECT_FALSE(resource_bundle->
LocaleDataPakExists
(locale));
220
EXPECT_TRUE(resource_bundle->
LocaleDataPakExists
(locale));
340
TEST_F(ResourceBundleTest,
LocaleDataPakExists
) {
343
// Check that ResourceBundle::
LocaleDataPakExists
returns the correct results.
344
EXPECT_TRUE(resource_bundle->
LocaleDataPakExists
("en-US"));
345
EXPECT_FALSE(resource_bundle->
LocaleDataPakExists
("not_a_real_locale"));
resource_bundle.h
158
bool
LocaleDataPakExists
(const std::string& locale);
resource_bundle.cc
231
bool ResourceBundle::
LocaleDataPakExists
(const std::string& locale) {
/external/chromium_org/ui/base/l10n/
l10n_util.cc
244
// TODO(hshi): make ResourceBundle::
LocaleDataPakExists
() a static function
247
return ResourceBundle::GetSharedInstance().
LocaleDataPakExists
(locale);
Completed in 54 milliseconds