Searched refs:loc (Results 1 – 3 of 3) sorted by relevance
/bootable/recovery/minui/ |
D | resources.cpp | 366 static int matches_locale(const char* loc, const char* locale) { in matches_locale() argument 369 if (strcmp(loc, locale) == 0) return 1; in matches_locale() 377 for (i = 0; loc[i] != 0 && loc[i] != '_'; ++i); in matches_locale() 378 if (loc[i] == '_') return 0; in matches_locale() 380 return (strncmp(locale, loc, i) == 0 && locale[i] == '_'); in matches_locale() 420 char* loc = (char*)row+5; in res_create_localized_alpha_surface() local 422 if (y+1+h >= height || matches_locale(loc, locale)) { in res_create_localized_alpha_surface() 423 printf(" %20s: %s (%d x %d @ %d)\n", name, loc, w, h, y); in res_create_localized_alpha_surface()
|
/bootable/recovery/edify/ |
D | expr.h | 97 Expr* Build(Function fn, YYLTYPE loc, int count, ...);
|
D | expr.c | 325 Expr* Build(Function fn, YYLTYPE loc, int count, ...) { in Build() argument 338 e->start = loc.start; in Build() 339 e->end = loc.end; in Build()
|