Home
last modified time | relevance | path

Searched defs:mixin (Results 1 – 14 of 14) sorted by relevance

/frameworks/opt/setupwizard/library/test/instrumentation/src/com/android/setupwizardlib/template/
DProgressBarMixinTest.java61 ProgressBarMixin mixin = new ProgressBarMixin(mTemplateLayout); in testSetShown() local
71 ProgressBarMixin mixin = new ProgressBarMixin(mTemplateLayout); in testNotShown() local
81 ProgressBarMixin mixin = new ProgressBarMixin(mTemplateLayout); in testIsShown() local
92 ProgressBarMixin mixin = new ProgressBarMixin(mTemplateLayout); in testPeekProgressBar() local
103 ProgressBarMixin mixin = new ProgressBarMixin(mTemplateLayout); in testSetColorBeforeSetShown() local
120 ProgressBarMixin mixin = new ProgressBarMixin(mTemplateLayout); in testSetColorAfterSetShown() local
137 ProgressBarMixin mixin = new ProgressBarMixin(mTemplateLayout); in testDeterminateProgressBarNullTint() local
DListMixinTest.java77 ListMixin mixin = new ListMixin(mTemplateLayout, null, 0); in testGetListView() local
85 ListMixin mixin = new ListMixin(mTemplateLayout, null, 0); in testGetAdapter() local
93 ListMixin mixin = new ListMixin(mTemplateLayout, null, 0); in testSetAdapter() local
101 ListMixin mixin = new ListMixin(mTemplateLayout, null, 0); in testDividerInsetLegacy() local
116 ListMixin mixin = new ListMixin(mTemplateLayout, null, 0); in testDividerInsets() local
135 ListMixin mixin = new ListMixin(mTemplateLayout, null, 0); in testDividerInsetLegacyRtl() local
155 ListMixin mixin = new ListMixin(mTemplateLayout, null, 0); in testDividerInsetsRtl() local
175 ListMixin mixin = new ListMixin(mTemplateLayout, null, 0); in testNoList() local
DIconMixinTest.java66 IconMixin mixin = new IconMixin(mTemplateLayout, null, 0); in testGetIconView() local
73 IconMixin mixin = new IconMixin(mTemplateLayout, null, 0); in testSetIcon() local
83 IconMixin mixin = new IconMixin(mTemplateLayout, null, 0); in setIcon_resourceId_shouldSetIcon() local
93 IconMixin mixin = new IconMixin(mTemplateLayout, null, 0); in setIcon_shouldSetVisibilityToGone_whenIconIsNull() local
104 IconMixin mixin = new IconMixin(mTemplateLayout, null, 0); in testGetIcon() local
128 IconMixin mixin = new IconMixin(mTemplateLayout, null, 0); in setContentDescription_shouldSetContentDescriptionOnIconView() local
135 IconMixin mixin = new IconMixin(mTemplateLayout, null, 0); in getContentDescription_shouldReturnContentDescriptionFromView() local
DButtonFooterMixinTest.java69 ButtonFooterMixin mixin = new ButtonFooterMixin(mTemplateLayout); in testAddButton() local
86 ButtonFooterMixin mixin = new ButtonFooterMixin(mTemplateLayout); in testAddButtonTextRes() local
103 ButtonFooterMixin mixin = new ButtonFooterMixin(mTemplateLayout); in testAddSpace() local
119 ButtonFooterMixin mixin = new ButtonFooterMixin(mTemplateLayout); in testRemoveButton() local
136 ButtonFooterMixin mixin = new ButtonFooterMixin(mTemplateLayout); in testRemoveSpace() local
153 ButtonFooterMixin mixin = new ButtonFooterMixin(mTemplateLayout); in testRemoveAllViews() local
DNavigationBarMixinTest.java62 NavigationBarMixin mixin = new NavigationBarMixin(mTemplateLayout); in testGetNavigationBar() local
68 NavigationBarMixin mixin = new NavigationBarMixin(mTemplateLayout); in testSetNextButtonText() local
81 NavigationBarMixin mixin = new NavigationBarMixin(mTemplateLayout); in testGetNextButtonText() local
88 NavigationBarMixin mixin = new NavigationBarMixin(mTemplateLayout); in testSetNavigationBarListener() local
DHeaderMixinTest.java61 HeaderMixin mixin = new HeaderMixin(mTemplateLayout, null, 0); in testGetTextView() local
67 HeaderMixin mixin = new HeaderMixin(mTemplateLayout, null, 0); in testSetTextId() local
75 HeaderMixin mixin = new HeaderMixin(mTemplateLayout, null, 0); in testSetText() local
86 HeaderMixin mixin = new HeaderMixin(mTemplateLayout, null, 0); in testGetText() local
DColoredHeaderMixinTest.java61 ColoredHeaderMixin mixin = new ColoredHeaderMixin(mTemplateLayout, null, 0); in testSetColor() local
69 ColoredHeaderMixin mixin = new ColoredHeaderMixin(mTemplateLayout, null, 0); in testGetColor() local
DTemplateLayoutMixinTest.java46 final TestMixin mixin = mLayout.getMixin(TestMixin.class); in testGetMixin() local
/frameworks/opt/setupwizard/library/recyclerview/test/instrumentation/src/com/android/setupwizardlib/template/
DRecyclerMixinTest.java73 RecyclerMixin mixin = new RecyclerMixin(mTemplateLayout, mRecyclerView); in testGetRecyclerView() local
81 RecyclerMixin mixin = new RecyclerMixin(mTemplateLayout, mRecyclerView); in testGetAdapter() local
89 RecyclerMixin mixin = new RecyclerMixin(mTemplateLayout, mRecyclerView); in testSetAdapter() local
97 RecyclerMixin mixin = new RecyclerMixin(mTemplateLayout, mRecyclerView); in testDividerLegacyInset() local
112 RecyclerMixin mixin = new RecyclerMixin(mTemplateLayout, mRecyclerView); in testDividerInsets() local
131 RecyclerMixin mixin = new RecyclerMixin(mTemplateLayout, mRecyclerView); in testDividerInsetLegacyRtl() local
151 RecyclerMixin mixin = new RecyclerMixin(mTemplateLayout, mRecyclerView); in testDividerInsetsRtl() local
/frameworks/opt/setupwizard/library/test/instrumentation/src/com/android/setupwizardlib/
DTemplateLayoutTest.java99 final HeaderMixin mixin = layout.getMixin(HeaderMixin.class); in testGetMixin() local
/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/core/instrumentation/
DVisibilityLoggerMixinTest.java133 VisibilityLoggerMixin mixin = new VisibilityLoggerMixin( in onCreate() local
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/
DGlifLayout.java219 final ColoredHeaderMixin mixin = (ColoredHeaderMixin) getMixin(HeaderMixin.class); in setHeaderColor() local
224 final ColoredHeaderMixin mixin = (ColoredHeaderMixin) getMixin(HeaderMixin.class); in getHeaderColor() local
DTemplateLayout.java95 protected <M extends Mixin> void registerMixin(Class<M> cls, M mixin) { in registerMixin()
/frameworks/base/packages/SettingsLib/AvatarPicker/src/
DAvatarPickerActivity.java119 FooterBarMixin mixin = glifLayout.getMixin(FooterBarMixin.class); in setUpButtons() local