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/unit/
Dresources_test.cpp121 char* loc = reinterpret_cast<char*>(&row[5]); in TEST_P() local
122 if (matches_locale(loc, kLocale.c_str())) { in TEST_P()
123 EXPECT_TRUE(android::base::StartsWith(loc, kLocale)); in TEST_P()
Dupdater_test.cpp1059 auto loc = [](const std::string& range_text) { in GenerateTransferList() local
1105 "stash " + b_hash + " " + loc("1"), in GenerateTransferList()
1107 "stash " + c_hash + " " + loc("2"), in GenerateTransferList()
1109 "new " + loc("1-2"), in GenerateTransferList()
1111 "zero " + loc("0"), in GenerateTransferList()
1120 loc("3").c_str(), // target range in GenerateTransferList()
1121 loc("3").c_str(), loc("1").c_str(), // load "d" from block 3, into buffer at offset 1 in GenerateTransferList()
1122 b_hash.c_str(), loc("0").c_str(), // load "b" from stash, into buffer at offset 0 in GenerateTransferList()
1123 c_hash.c_str(), loc("2").c_str()), // load "c" from stash, into buffer at offset 2 in GenerateTransferList()
1130 "stash " + a_hash + " " + loc("5"), in GenerateTransferList()
[all …]
/bootable/recovery/minui/
Dresources.cpp382 std::string loc(reinterpret_cast<char*>(&row[5])); in get_locales_in_png()
383 if (!loc.empty()) { in get_locales_in_png()
384 result.push_back(loc); in get_locales_in_png()
419 char* loc = reinterpret_cast<char*>(&row[5]); in res_create_localized_alpha_surface() local
427 if (matches_locale(loc, locale)) { in res_create_localized_alpha_surface()
428 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);