/packages/apps/Settings/tests/robotests/src/com/android/settings/widget/ |
D | EntityHeaderControllerTest.java | 67 private LayoutInflater mLayoutInflater; field in EntityHeaderControllerTest 78 mLayoutInflater = LayoutInflater.from(mShadowContext); in setUp() 102 View inputView = mLayoutInflater.inflate(R.layout.settings_entity_header, null /* root */); in testBuildView_constructedWithView_shouldReturnSameView() 113 mLayoutInflater.inflate(R.layout.settings_entity_header, null /* root */); in bindViews_shouldBindAllData() 139 final View view = mLayoutInflater in bindButton_hasEditClickListener_shouldShowButton() 167 final View view = mLayoutInflater.inflate(R.layout.settings_entity_header, null /* root */); in bindButton_noEditClickListener_shouldNotShowButton() 184 mLayoutInflater.inflate(R.layout.settings_entity_header, null /* root */); in bindButton_noAppInfo_shouldNotAttachClickListener() 209 mLayoutInflater.inflate(R.layout.settings_entity_header, null /* root */); in bindButton_hasAppInfo_shouldAttachClickListener() 231 mLayoutInflater.inflate(R.layout.settings_entity_header, null /* root */); in iconContentDescription_shouldWorkWithSetIcon() 244 final View view = mLayoutInflater in iconContentDescription_shouldWorkWithoutSetIcon() [all …]
|
/packages/apps/Launcher3/src/com/android/launcher3/allapps/ |
D | BaseAllAppsAdapter.java | 140 protected final LayoutInflater mLayoutInflater; field in BaseAllAppsAdapter 151 mLayoutInflater = inflater; in BaseAllAppsAdapter() 192 BubbleTextView icon = (BubbleTextView) mLayoutInflater.inflate( in onCreateViewHolder() 206 return new ViewHolder(mLayoutInflater.inflate(R.layout.all_apps_empty_search, in onCreateViewHolder() 209 return new ViewHolder(mLayoutInflater.inflate( in onCreateViewHolder() 212 return new ViewHolder(mLayoutInflater.inflate( in onCreateViewHolder() 215 return new ViewHolder(mLayoutInflater.inflate( in onCreateViewHolder() 219 return mAdapterProvider.onCreateViewHolder(mLayoutInflater, parent, viewType); in onCreateViewHolder()
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/wifi/calling/ |
D | WifiCallingDisclaimerFragmentTest.java | 67 private LayoutInflater mLayoutInflater; field in WifiCallingDisclaimerFragmentTest 97 when(mLayoutInflater.inflate(anyInt(), any(), anyBoolean())).thenReturn(mView); in setUp() 138 mFragment.onCreateView(mLayoutInflater, mViewGroup, null /* savedInstanceState */); in onScrolled_canNotScroll_shouldEnableAgreeButton() 155 mFragment.onCreateView(mLayoutInflater, mViewGroup, null /* savedInstanceState */); in onScrolled_canScroll_shouldNotEnableAgreeButton() 171 mFragment.onCreateView(mLayoutInflater, mViewGroup, null /* savedInstanceState */); in onClick_agreeButton_shouldFinishFragment()
|
D | DisclaimerItemListAdapterTest.java | 55 private LayoutInflater mLayoutInflater; field in DisclaimerItemListAdapterTest 78 when(mLayoutInflater.inflate(anyInt(), any(), anyBoolean())).thenReturn(mView); in setUp() 81 mLayoutInflater); in setUp()
|
/packages/modules/IntentResolver/java/src/com/android/intentresolver/grid/ |
D | ChooserGridAdapter.java | 126 private final LayoutInflater mLayoutInflater; field in ChooserGridAdapter 151 mLayoutInflater = LayoutInflater.from(context); in ChooserGridAdapter() 369 View profileRow = mLayoutInflater.inflate(R.layout.chooser_profile_row, parent, false); in createProfileView() 375 return mLayoutInflater.inflate(R.layout.chooser_az_label_row, parent, false); in createAzLabelView() 447 ViewGroup parentGroup = (ViewGroup) mLayoutInflater.inflate( in createItemGroupViewHolder() 449 ViewGroup row1 = (ViewGroup) mLayoutInflater.inflate( in createItemGroupViewHolder() 451 ViewGroup row2 = (ViewGroup) mLayoutInflater.inflate( in createItemGroupViewHolder() 463 ViewGroup row = (ViewGroup) mLayoutInflater.inflate( in createItemGroupViewHolder()
|
/packages/apps/Settings/src/com/android/settings/development/tare/ |
D | TareFactorExpandableListAdapter.java | 36 private final LayoutInflater mLayoutInflater; field in TareFactorExpandableListAdapter 45 mLayoutInflater = layoutInflater; in TareFactorExpandableListAdapter() 114 convertView = mLayoutInflater.inflate(android.R.layout.simple_list_item_1, parent, in getGroupView() 129 convertView = mLayoutInflater.inflate(R.layout.tare_child_item, null); in getChildView()
|
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/ |
D | BaseTaskbarContext.java | 35 protected final LayoutInflater mLayoutInflater; field in BaseTaskbarContext 41 mLayoutInflater = LayoutInflater.from(this).cloneInContext(this); in BaseTaskbarContext() 47 return mLayoutInflater; in getLayoutInflater()
|
/packages/apps/Launcher3/src/com/android/launcher3/widget/picker/ |
D | WidgetsListHeaderViewHolderBinder.java | 33 private final LayoutInflater mLayoutInflater; field in WidgetsListHeaderViewHolderBinder 39 mLayoutInflater = layoutInflater; in WidgetsListHeaderViewHolderBinder() 46 return new WidgetsListHeaderHolder((WidgetsListHeader) mLayoutInflater.inflate( in newViewHolder()
|
D | WidgetsListTableViewHolderBinder.java | 53 private final LayoutInflater mLayoutInflater; field in WidgetsListTableViewHolderBinder 65 mLayoutInflater = layoutInflater; in WidgetsListTableViewHolderBinder() 80 return new WidgetsRowViewHolder(mLayoutInflater.inflate( in newViewHolder() 159 WidgetCell widget = (WidgetCell) mLayoutInflater.inflate( in recycleTableBeforeBinding()
|
/packages/apps/Settings/src/com/android/settings/widget/ |
D | SlidingTabLayout.java | 40 private final LayoutInflater mLayoutInflater; field in SlidingTabLayout 48 mLayoutInflater = LayoutInflater.from(context); in SlidingTabLayout() 51 mIndicatorView = mLayoutInflater.inflate(R.layout.sliding_tab_indicator_view, this, false); in SlidingTabLayout() 131 final TextView tabTitleView = (TextView) mLayoutInflater.inflate( in populateTabStrip()
|
/packages/apps/Contacts/src/com/android/contacts/editor/ |
D | KindSectionView.java | 161 private LayoutInflater mLayoutInflater; field in KindSectionView 190 mLayoutInflater = (LayoutInflater) getContext().getSystemService( in onFinishInflate() 335 final View nameView = mLayoutInflater.inflate( in addNameEditorViews() 357 final StructuredNameEditorView nameView = (StructuredNameEditorView) mLayoutInflater in addNameEditorViews() 378 final TextFieldsEditorView phoneticNameView = (TextFieldsEditorView) mLayoutInflater in addNameEditorViews() 397 final GroupMembershipView view = (GroupMembershipView) mLayoutInflater.inflate( in addGroupEditorView() 412 final View view = mLayoutInflater.inflate( in addNonNameEditorView()
|
D | RawContactEditorView.java | 198 private LayoutInflater mLayoutInflater; field in RawContactEditorView 250 mLayoutInflater = (LayoutInflater) in onFinishInflate() 730 final View field = mLayoutInflater.inflate(R.layout.item_read_only_field, mKindSectionViews, in bindData() 898 mLayoutInflater.inflate(R.layout.item_kind_section, viewGroup, in inflateKindSectionView()
|
/packages/services/Telecomm/testapps/carmodedialer/src/com/android/server/telecom/carmodedialer/ |
D | CallListAdapter.java | 50 private final LayoutInflater mLayoutInflater; field in CallListAdapter 64 mLayoutInflater = in CallListAdapter() 92 convertView = mLayoutInflater.inflate(R.layout.call_list_item, parent, false); in getView()
|
/packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/ |
D | CallListAdapter.java | 50 private final LayoutInflater mLayoutInflater; field in CallListAdapter 64 mLayoutInflater = in CallListAdapter() 92 convertView = mLayoutInflater.inflate(R.layout.call_list_item, parent, false); in getView()
|
D | SelfManagedCallListAdapter.java | 133 private final LayoutInflater mLayoutInflater; field in SelfManagedCallListAdapter 140 mLayoutInflater = layoutInflater; in SelfManagedCallListAdapter() 162 ? mLayoutInflater.inflate(R.layout.self_managed_call_list_item, parent, false) in getView()
|
/packages/apps/Contacts/src/com/android/contacts/list/ |
D | AccountFilterActivity.java | 139 private final LayoutInflater mLayoutInflater; field in AccountFilterActivity.FilterListAdapter 145 mLayoutInflater = (LayoutInflater) context.getSystemService in FilterListAdapter() 172 view = (ContactListFilterView) mLayoutInflater.inflate( in getView()
|
/packages/apps/TV/src/com/android/tv/menu/ |
D | ItemListRowView.java | 129 private final LayoutInflater mLayoutInflater; field in ItemListRowView.ItemListAdapter 136 mLayoutInflater = LayoutInflater.from(context); in ItemListAdapter() 217 .getOrCreateView(mLayoutInflater, getLayoutResId(viewType), parent); in onCreateViewHolder()
|
D | MenuView.java | 40 private final LayoutInflater mLayoutInflater; field in MenuView 58 mLayoutInflater = LayoutInflater.from(context); in MenuView() 96 MenuRowView view = (MenuRowView) mLayoutInflater.inflate(row.getLayoutResId(), this, false); in createMenuRowView()
|
/packages/apps/ManagedProvisioning/tests/instrumentation/src/com/android/managedprovisioning/preprovisioning/terms/adapters/ |
D | TermsListAdapterTest.java | 48 @Mock private LayoutInflater mLayoutInflater; field in TermsListAdapterTest 76 mLayoutInflater, mContextMenuMaker, mTermsBridge, mUtils, mStylerHelper); in getItemCount_hasExpectedNumberOfDocuments()
|
/packages/apps/Settings/src/com/android/settings/nfc/ |
D | NfcPaymentPreferenceController.java | 179 private final LayoutInflater mLayoutInflater; field in NfcPaymentPreferenceController.NfcPaymentAdapter 185 mLayoutInflater = (LayoutInflater) context.getSystemService( in NfcPaymentAdapter() 215 convertView = mLayoutInflater.inflate( in getView()
|
/packages/apps/TV/src/com/android/tv/ui/sidepanel/ |
D | SideFragment.java | 258 private final LayoutInflater mLayoutInflater; field in SideFragment.ItemAdapter 262 mLayoutInflater = layoutInflater; in ItemAdapter() 273 View view = ViewCache.getInstance().getOrCreateView(mLayoutInflater, viewType, parent); in onCreateViewHolder()
|
/packages/apps/TV/src/com/android/tv/ui/ |
D | KeypadChannelSwitchView.java | 70 private final LayoutInflater mLayoutInflater; field in KeypadChannelSwitchView 121 mLayoutInflater = LayoutInflater.from(context); in KeypadChannelSwitchView() 404 v = mLayoutInflater.inflate(R.layout.keypad_channel_switch_item, parent, false); in getView()
|
/packages/apps/Car/systemlibs/car-qc-lib/src/com/android/car/qc/view/ |
D | QCRowView.java | 66 private LayoutInflater mLayoutInflater; field in QCRowView 186 mLayoutInflater = LayoutInflater.from(context); in init() 188 mLayoutInflater.inflate(R.layout.qc_row_view, /* root= */ this); in init() 400 actionView = mLayoutInflater.inflate(resId, /* root= */ null); in createActionView()
|
/packages/apps/Nfc/src/com/android/nfc/beam/ |
D | SendUi.java | 143 final LayoutInflater mLayoutInflater; field in SendUi 213 mLayoutInflater = (LayoutInflater) in SendUi() 215 mScreenshotLayout = mLayoutInflater.inflate(R.layout.screenshot, null); in SendUi()
|
/packages/apps/DeskClock/src/com/android/deskclock/alarms/dataadapter/ |
D | ExpandedAlarmViewHolder.kt | 487 private val mLayoutInflater: LayoutInflater = LayoutInflater.from(context) in <lambda>() constant 492 val itemView: View = mLayoutInflater.inflate(viewType, parent, false) in <lambda>()
|