Home
last modified time | relevance | path

Searched refs:loc (Results 1 – 5 of 5) sorted by relevance

/bootable/recovery/tools/recovery_l10n/src/com/android/recovery_l10n/
DMain.java190 for (Locale loc : locales) { in buildSequence()
191 head = new TextCapture(loc, prev, head); in buildSequence()
192 prev = loc; in buildSequence()
229 for (Locale loc : locales) {
230 Bitmap b = savedBitmaps.get(loc);
237 String lang = loc.getLanguage();
251 for (Locale loc : locales) {
252 Bitmap bm = savedBitmaps.get(loc);
297 String lang = loc.getLanguage();
300 lang = loc.toString();
[all …]
/bootable/recovery/tests/component/
Dresources_test.cpp105 char* loc = reinterpret_cast<char*>(&row[5]); in TEST_P() local
106 if (matches_locale(loc, kLocale.c_str())) { in TEST_P()
107 EXPECT_TRUE(android::base::StartsWith(loc, kLocale)); in TEST_P()
Dupdater_test.cpp1057 auto loc = [](const std::string& range_text) { in GenerateTransferList() local
1103 "stash " + b_hash + " " + loc("1"), in GenerateTransferList()
1105 "stash " + c_hash + " " + loc("2"), in GenerateTransferList()
1107 "new " + loc("1-2"), in GenerateTransferList()
1109 "zero " + loc("0"), in GenerateTransferList()
1118 loc("3").c_str(), // target range in GenerateTransferList()
1119 loc("3").c_str(), loc("1").c_str(), // load "d" from block 3, into buffer at offset 1 in GenerateTransferList()
1120 b_hash.c_str(), loc("0").c_str(), // load "b" from stash, into buffer at offset 0 in GenerateTransferList()
1121 c_hash.c_str(), loc("2").c_str()), // load "c" from stash, into buffer at offset 2 in GenerateTransferList()
1128 "stash " + a_hash + " " + loc("5"), in GenerateTransferList()
[all …]
/bootable/recovery/minui/
Dresources.cpp378 std::string loc(reinterpret_cast<char*>(&row[5])); in get_locales_in_png()
379 if (!loc.empty()) { in get_locales_in_png()
380 result.push_back(loc); in get_locales_in_png()
415 char* loc = reinterpret_cast<char*>(&row[5]); in res_create_localized_alpha_surface() local
417 if (y + 1 + h >= height || matches_locale(loc, locale)) { in res_create_localized_alpha_surface()
418 printf(" %20s: %s (%d x %d @ %d)\n", name, loc, w, h, y); in res_create_localized_alpha_surface()
/bootable/recovery/edify/
Dparser.yy44 static Expr* Build(Function fn, YYLTYPE loc, size_t count, ...) {
47 Expr* e = new Expr(fn, "(operator)", loc.start, loc.end);