OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:matches_locale
(Results
1 - 4
of
4
) sorted by null
/bootable/recovery/tests/unit/
locale_test.cpp
22
EXPECT_TRUE(
matches_locale
("zh-CN", "zh-Hans-CN"));
23
EXPECT_TRUE(
matches_locale
("zh", "zh-Hans-CN"));
24
EXPECT_FALSE(
matches_locale
("zh-HK", "zh-Hans-CN"));
25
EXPECT_TRUE(
matches_locale
("en-GB", "en-GB"));
26
EXPECT_TRUE(
matches_locale
("en", "en-GB"));
27
EXPECT_FALSE(
matches_locale
("en-GB", "en"));
28
EXPECT_FALSE(
matches_locale
("en-GB", "en-US"));
29
EXPECT_FALSE(
matches_locale
("en-US", ""));
31
EXPECT_TRUE(
matches_locale
("", "en-US"));
32
EXPECT_TRUE(
matches_locale
("sr-Latn", "sr-Latn-BA"))
[
all
...]
/bootable/recovery/minui/include/minui/
minui.h
109
bool
matches_locale
(const std::string& prefix, const std::string& locale);
/bootable/recovery/minui/
resources.cpp
390
bool
matches_locale
(const std::string& prefix, const std::string& locale) {
function
467
if (y + 1 + h >= height ||
matches_locale
(loc, locale)) {
/bootable/recovery/tests/manual/
recovery_test.cpp
211
if (
matches_locale
(loc, kLocale.c_str())) {
Completed in 71 milliseconds