OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:themeStyleSet
(Results
1 - 3
of
3
) sorted by null
/external/robolectric-shadows/resources/src/test/java/org/robolectric/res/
ThemeStyleSetTest.java
14
private
ThemeStyleSet
themeStyleSet
;
18
themeStyleSet
= new
ThemeStyleSet
();
23
themeStyleSet
= new
ThemeStyleSet
();
24
themeStyleSet
.apply(createStyle("style1",
28
themeStyleSet
.apply(createStyle("style2", createAttribute("string2", "string2 value from style2")), false);
29
assertThat(
themeStyleSet
.getAttrValue(attrName("string1")).value).isEqualTo("string1 value from style1");
30
assertThat(
themeStyleSet
.getAttrValue(attrName("string2")).value).isEqualTo("string2 value from style1")
[
all
...]
/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/
ThemeStyleSet.java
9
public class
ThemeStyleSet
implements Style {
37
public
ThemeStyleSet
copy() {
38
ThemeStyleSet
themeStyleSet
= new
ThemeStyleSet
();
39
themeStyleSet
.styles.addAll(this.styles);
40
return
themeStyleSet
;
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowLegacyAssetManager.java
76
import org.robolectric.res.
ThemeStyleSet
;
125
private
ThemeStyleSet
themeStyleSet
;
127
public NativeTheme(
ThemeStyleSet
themeStyleSet
) {
128
this.
themeStyleSet
=
themeStyleSet
;
360
ThemeStyleSet
themeStyleSet
= getNativeTheme(themePtr).
themeStyleSet
;
[
all
...]
Completed in 140 milliseconds