Home
last modified time | relevance | path

Searched refs:customContent (Results 1 – 3 of 3) sorted by relevance

/aosp14/frameworks/base/packages/SettingsLib/tests/integ/src/com/android/settingslib/widget/
H A DUsageProgressBarPreferenceTest.java165 final FrameLayout customContent = in setCustomContent_setNullImageView_noChild() local
167 assertThat(customContent.getChildCount()).isEqualTo(0); in setCustomContent_setNullImageView_noChild()
168 assertThat(customContent.getVisibility()).isEqualTo(View.GONE); in setCustomContent_setNullImageView_noChild()
178 final FrameLayout customContent = in setCustomContent_setImageView_oneChild() local
180 assertThat(customContent.getChildCount()).isEqualTo(1); in setCustomContent_setImageView_oneChild()
181 assertThat(customContent.getChildAt(0)).isEqualTo(imageView); in setCustomContent_setImageView_oneChild()
182 assertThat(customContent.getVisibility()).isEqualTo(View.VISIBLE); in setCustomContent_setImageView_oneChild()
194 final FrameLayout customContent = in setCustomContent_setImageViewTwice_oneAndLatestChild() local
196 assertThat(customContent.getChildCount()).isEqualTo(1); in setCustomContent_setImageViewTwice_oneAndLatestChild()
197 assertThat(customContent.getChildAt(0)).isEqualTo(imageViewNew); in setCustomContent_setImageViewTwice_oneAndLatestChild()
[all …]
/aosp14/frameworks/base/core/java/android/app/
H A DNotification.java5961 buildCustomContentIntoTemplate(mContext, standard, customContent, in minimallyDecoratedContentView()
5974 buildCustomContentIntoTemplate(mContext, standard, customContent, in minimallyDecoratedBigContentView()
5981 @NonNull RemoteViews customContent) { in minimallyDecoratedHeadsUpContentView()
6021 private boolean useExistingRemoteView(RemoteViews customContent) { in useExistingRemoteView() argument
6022 if (customContent == null) { in useExistingRemoteView()
7138 if (customContent != null) { in buildCustomContentIntoTemplate()
7141 customContent = customContent.clone(); in buildCustomContentIntoTemplate()
10054 if (customContent == null) { in makeStandardTemplateWithCustomContent()
10156 RemoteViews customContent = mBuilder.mN.bigContentView != null in makeBigContentView() local
10159 return makeMediaBigContentView(customContent); in makeBigContentView()
[all …]
/aosp14/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
H A DNotificationRecordTest.java190 private StatusBarNotification getStyledNotification(boolean customContent, boolean customBig, in getStyledNotification() argument
198 if (customContent) { in getStyledNotification()