Home
last modified time | relevance | path

Searched refs:bindView (Results 1 – 25 of 81) sorted by relevance

1234

/aosp12/packages/apps/Settings/tests/robotests/src/com/android/settings/homepage/contextualcards/slices/
H A DSliceContextualCardRendererTest.java92 mRenderer.bindView(viewHolder, buildContextualCard(invalidUri)); in bindView_invalidScheme_sliceShouldBeNull()
103 mRenderer.bindView(viewHolder, buildContextualCard(TEST_SLICE_URI)); in bindView_viewTypeFullWidth_shouldSetCachedSlice()
152 mRenderer.bindView(viewHolder, card); in bindView_isPendingDismiss_shouldShowDismissalView()
163 mRenderer.bindView(viewHolder, card); in bindView_isPendingDismiss_shouldAddViewHolderToSet()
174 mRenderer.bindView(viewHolder, card); in bindView_beforeSuccessfulSliceBinding_shouldHideSwipeBackground()
187 mRenderer.bindView(viewHolder, card); in bindView_reuseViewHolder_shouldHideSwipeBackgroundBeforeSliceBinding()
200 mRenderer.bindView(viewHolder, card); in viewClick_keepCard_shouldShowSlice()
214 mRenderer.bindView(viewHolder, card); in viewClick_keepCard_shouldRemoveViewHolderFromSet()
228 mRenderer.bindView(viewHolder, card); in viewClick_removeCard_shouldRemoveViewHolderFromSet()
244 mRenderer.bindView(viewHolder, contextualCard); in viewClick_removeCard_sliceLiveDataShouldRemoveObservers()
[all …]
H A DSliceFullCardRendererHelperTest.java79 mHelper.bindView(viewHolder, buildContextualCard(), buildSlice()); in bindView_shouldSetScrollableToFalse()
89 mHelper.bindView(viewHolder, card, buildSlice()); in bindView_shouldSetTagToSliceUri()
98 mHelper.bindView(viewHolder, buildContextualCard(), buildSlice()); in bindView_shouldSetModeToLarge()
108 mHelper.bindView(viewHolder, buildContextualCard(), buildSlice()); in bindView_shouldSetSlice()
/aosp12/packages/apps/Contacts/src/com/android/contacts/list/
H A DContactListFilterView.java85 public void bindView(AccountTypeManager accountTypes) { in bindView() method in ContactListFilterView
102 bindView(0, R.string.list_filter_all_accounts); in bindView()
106 bindView(R.drawable.quantum_ic_star_vd_theme_24, R.string.list_filter_all_starred); in bindView()
110 bindView(0, R.string.list_filter_customize); in bindView()
114 bindView(0, R.string.list_filter_phones); in bindView()
118 bindView(0, R.string.list_filter_single); in bindView()
139 private void bindView(int iconResource, int textResource) { in bindView() method in ContactListFilterView
H A DHeaderEntryContactListAdapter.java92 protected void bindView(View itemView, int partition, Cursor cursor, int position) { in bindView() method in HeaderEntryContactListAdapter
93 super.bindView(itemView, partition, cursor, position + getHeaderEntryCount()); in bindView()
H A DLegacyContactListAdapter.java81 protected void bindView(View itemView, int partition, Cursor cursor, int position) { in bindView() method in LegacyContactListAdapter
82 super.bindView(itemView, partition, cursor, position); in bindView()
H A DLegacyPhoneNumberListAdapter.java86 protected void bindView(View itemView, int partition, Cursor cursor, int position) { in bindView() method in LegacyPhoneNumberListAdapter
87 super.bindView(itemView, partition, cursor, position); in bindView()
H A DLegacyPostalAddressListAdapter.java86 protected void bindView(View itemView, int partition, Cursor cursor, int position) { in bindView() method in LegacyPostalAddressListAdapter
87 super.bindView(itemView, partition, cursor, position); in bindView()
H A DMultiSelectEntryContactListAdapter.java154 protected void bindView(View itemView, int partition, Cursor cursor, int position) { in bindView() method in MultiSelectEntryContactListAdapter
155 super.bindView(itemView, partition, cursor, position); in bindView()
/aosp12/frameworks/base/core/tests/coretests/src/android/preference/
H A DPreferenceIconSpaceTest.java66 mPreference.bindView(mViewGroup); in bindView_iconSpaceReserved_shouldReserveIconSpace()
75 mPreference.bindView(mViewGroup); in bindView_iconSpaceNotReserved_shouldNotReserveIconSpace()
84 mPreference.bindView(mViewGroup); in bindView_hasIcon_shouldDisplayIcon()
96 public void bindView(View view) { in bindView() method in PreferenceIconSpaceTest.TestPreference
/aosp12/packages/apps/Dialer/java/com/android/dialer/callcomposer/
H A DGalleryGridAdapter.java70 bindView(view, context, getCursor(), position); in getView()
74 private void bindView(View view, Context context, Cursor cursor, int position) { in bindView() method in GalleryGridAdapter
79 bindView(view, context, cursor); in bindView()
84 public void bindView(View view, Context context, Cursor cursor) { in bindView() method in GalleryGridAdapter
/aosp12/packages/apps/Settings/tests/robotests/src/com/android/settings/homepage/contextualcards/legacysuggestion/
H A DLegacySuggestionContextualCardRendererTest.java79 mRenderer.bindView(viewHolder, buildContextualCard()); in bindView_shouldSetListener()
98 mRenderer.bindView(viewHolder, buildContextualCard()); in bindView_closeButton_shouldSetListener()
116 mRenderer.bindView(viewHolder, buildContextualCard()); in viewClick_shouldInvokeControllerPrimaryClick()
137 mRenderer.bindView(viewHolder, buildContextualCard()); in viewClick_closeButton_shouldInvokeControllerDismissClick()
/aosp12/frameworks/base/core/java/android/widget/
H A DSimpleCursorTreeAdapter.java212 private void bindView(View view, Context context, Cursor cursor, int[] from, int[] to) { in bindView() method in SimpleCursorTreeAdapter
254 bindView(view, context, cursor, mChildFrom, mChildTo); in bindChildView()
264 bindView(view, context, cursor, mGroupFrom, mGroupTo); in bindGroupView()
H A DSimpleExpandableListAdapter.java229 bindView(v, mChildData.get(groupPosition).get(childPosition), mChildFrom, mChildTo); in getChildView()
243 private void bindView(View view, Map<String, ?> data, String[] from, int[] to) { in bindView() method in SimpleExpandableListAdapter
278 bindView(v, mGroupData.get(groupPosition), mGroupFrom, mGroupTo); in getGroupView()
H A DCursorAdapter.java296 bindView(v, mContext, mCursor); in getView()
311 bindView(v, context, mCursor); in getDropDownView()
347 public abstract void bindView(View view, Context context, Cursor cursor); in bindView() method in CursorAdapter
/aosp12/packages/apps/Dialer/java/com/android/dialer/app/filterednumber/
H A DViewNumbersToImportAdapter.java49 public void bindView(View view, Context context, Cursor cursor) { in bindView() method in ViewNumbersToImportAdapter
50 super.bindView(view, context, cursor); in bindView()
H A DBlockedNumbersAdapter.java53 public void bindView(View view, final Context context, Cursor cursor) { in bindView() method in BlockedNumbersAdapter
54 super.bindView(view, context, cursor); in bindView()
/aosp12/packages/apps/DocumentsUI/src/com/android/documentsui/sidebar/
H A DItem.java58 bindView(convertView); in getView()
62 abstract void bindView(View convertView); in bindView() method in Item
/aosp12/packages/apps/Settings/src/com/android/settings/security/
H A DCredentialManagementAppAdapter.java84 public void bindView() { in bindView() method in CredentialManagementAppAdapter.HeaderViewHolder
145 public void bindView(int position) { in bindView() method in CredentialManagementAppAdapter.AppAuthenticationViewHolder
265 ((HeaderViewHolder) viewHolder).bindView(); in onBindViewHolder()
268 ((AppAuthenticationViewHolder) viewHolder).bindView(position); in onBindViewHolder()
/aosp12/packages/apps/Settings/tests/robotests/src/com/android/settings/homepage/contextualcards/conditional/
H A DConditionFooterContextualCardRendererTest.java72 mRenderer.bindView(viewHolder, card); in bindView_shouldSetClickListener()
90 mRenderer.bindView(viewHolder, card); in bindView_clickView_shouldSetTrueToIsConditionExpanded()
H A DConditionContextualCardRendererTest.java79 mRenderer.bindView(viewHolder, card); in bindView_shouldSetListener()
98 mRenderer.bindView(viewHolder, card); in viewClick_shouldInvokeControllerPrimaryClick()
H A DConditionHeaderContextualCardRendererTest.java80 mRenderer.bindView(viewHolder, generateConditionHeaderContextualCard()); in bindView_shouldSetClickListener()
98 mRenderer.bindView(viewHolder, generateConditionHeaderContextualCard()); in bindView_clickView_shouldSetTrueToIsConditionExpanded()
/aosp12/packages/apps/Settings/src/com/android/settings/homepage/contextualcards/slices/
H A DSliceContextualCardRenderer.java98 public void bindView(RecyclerView.ViewHolder holder, ContextualCard card) { in bindView() method in SliceContextualCardRenderer
147 mHalfCardHelper.bindView(holder, card, slice); in bindView()
149 mFullCardHelper.bindView(holder, card, slice); in bindView()
/aosp12/packages/services/Telecomm/src/com/android/server/telecom/settings/
H A DBlockedNumbersAdapter.java41 public void bindView(View view, final Context context, final Cursor cursor) { in bindView() method in BlockedNumbersAdapter
42 super.bindView(view, context, cursor); in bindView()
/aosp12/packages/apps/Messaging/src/com/android/messaging/ui/contact/
H A DContactDropdownLayouter.java71 public View bindView(final View convertView, final ViewGroup parent, final RecipientEntry entry, in bindView() method in ContactDropdownLayouter
81 return super.bindView(convertView, parent, entry, position, type, substring, in bindView()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/people/
H A DPeopleHubViewController.kt33 fun bindView(viewBoundary: PeopleHubViewBoundary): Subscription regex
76 override fun bindView(viewBoundary: PeopleHubViewBoundary): Subscription =

1234