Home
last modified time | relevance | path

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

/aosp12/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 …]
/aosp12/frameworks/base/core/java/android/app/
H A DNotification.java5798 buildCustomContentIntoTemplate(mContext, standard, customContent, in minimallyDecoratedContentView()
5811 buildCustomContentIntoTemplate(mContext, standard, customContent, in minimallyDecoratedBigContentView()
5818 @NonNull RemoteViews customContent) { in minimallyDecoratedHeadsUpContentView()
5858 private boolean useExistingRemoteView(RemoteViews customContent) { in useExistingRemoteView() argument
5859 if (customContent == null) { in useExistingRemoteView()
6946 if (customContent != null) { in buildCustomContentIntoTemplate()
6949 customContent = customContent.clone(); in buildCustomContentIntoTemplate()
9720 if (customContent == null) { in makeStandardTemplateWithCustomContent()
9822 RemoteViews customContent = mBuilder.mN.bigContentView != null in makeBigContentView() local
9825 return makeMediaBigContentView(customContent); in makeBigContentView()
[all …]
/aosp12/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
H A DNotificationRecordTest.java186 private StatusBarNotification getStyledNotification(boolean customContent, boolean customBig, in getStyledNotification() argument
194 if (customContent) { in getStyledNotification()