Home
last modified time | relevance | path

Searched refs:themes (Results 1 – 4 of 4) sorted by relevance

/frameworks/opt/setupwizard/library/test/instrumentation/src/com/android/setupwizardlib/test/
DItemLayoutTest.java46 int[] themes = in data() local
62 for (int theme : themes) { in data()
/frameworks/libs/systemui/monet/tests/com/android/systemui/monet/
DColorSchemeTest.kt88 val themes = document.createElement("themes") in generateThemeStyles() constant
89 document.appendWithBreak(themes) in generateThemeStyles()
98 themes.appendChild(theme) in generateThemeStyles()
/frameworks/base/core/java/android/content/res/
DResourcesImpl.java1523 final String[] themes = new String[n * 2];
1524 for (int i = 0, j = n - 1; i < themes.length; i += 2, --j) {
1528 themes[i] = getResourceName(resId);
1530 themes[i] = Integer.toHexString(i);
1532 themes[i + 1] = forced ? "forced" : "not forced";
1534 return themes;
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
DBridgeContext.java2291 List<StyleResourceValue> themes, int resId) { in get() argument
2297 cacheFromThemes.get(themes); in get()
2305 public void put(int[] attrs, List<StyleResourceValue> themes, int resId, in put() argument
2311 cacheFromThemes.computeIfAbsent(themes, k -> new HashMap<>()); in put()