/packages/apps/Launcher3/src/com/android/launcher3/util/ |
D | ViewPool.java | 38 private final LayoutInflater mInflater; field in ViewPool 48 mInflater = LayoutInflater.from(context); in ViewPool() 63 LayoutInflater inflater = mInflater.cloneInContext(mInflater.getContext()); in initPool() 101 return inflateNewView(mInflater); in getView()
|
/packages/apps/Contacts/src/com/android/contacts/drawer/ |
D | DrawerAdapter.java | 60 private final LayoutInflater mInflater; field in DrawerAdapter 92 mInflater = LayoutInflater.from(activity); in DrawerAdapter() 213 result = mInflater.inflate(layoutResID, parent, false); in getBaseItemView() 220 result = mInflater.inflate(R.layout.drawer_primary_item, parent, false); in getPrimaryItemView() 238 result = mInflater.inflate(R.layout.drawer_header, parent, false); in getHeaderItemView() 248 result = mInflater.inflate(R.layout.drawer_item, parent, false); in getGroupEntryView() 270 result = mInflater.inflate(R.layout.drawer_item, parent, false); in getAccountItemView() 296 result = mInflater.inflate(R.layout.drawer_item, parent, false); in getDrawerItemView()
|
/packages/apps/Car/Launcher/src/com/android/car/carlauncher/ |
D | AppGridAdapter.java | 43 private final LayoutInflater mInflater; field in AppGridAdapter 51 mInflater = LayoutInflater.from(context); in AppGridAdapter() 115 mInflater.inflate(R.layout.recent_apps_row, parent, /* attachToRoot= */ false); in onCreateViewHolder() 118 View view = mInflater.inflate(R.layout.app_item, parent, /* attachToRoot= */ false); in onCreateViewHolder()
|
/packages/apps/DocumentsUI/src/com/android/documentsui/inspector/ |
D | TableView.java | 43 private final LayoutInflater mInflater; field in TableView 60 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); in TableView() 74 (LinearLayout) mInflater.inflate(R.layout.inspector_section_title, null); in putTitle() 93 KeyValueRow row = (KeyValueRow) mInflater.inflate(R.layout.table_key_value_row, null); in createKeyValueRow()
|
/packages/apps/Gallery2/src/com/android/gallery3d/ingest/adapter/ |
D | MtpAdapter.java | 49 private LayoutInflater mInflater; field in MtpAdapter 55 mInflater = LayoutInflater.from(context); in MtpAdapter() 142 imageView = (MtpThumbnailTileView) mInflater.inflate( in getView() 153 dateTile = (DateTileView) mInflater.inflate( in getView()
|
D | MtpPagerAdapter.java | 39 private LayoutInflater mInflater; field in MtpPagerAdapter 49 mInflater = LayoutInflater.from(context); in MtpPagerAdapter() 102 v = (MtpFullscreenView) mInflater.inflate(R.layout.ingest_fullsize, container, false); in instantiateItem()
|
/packages/apps/Settings/src/com/android/settings/applications/appops/ |
D | BackgroundCheckSummary.java | 34 private LayoutInflater mInflater; field in BackgroundCheckSummary 50 mInflater = inflater; in onCreateView() 52 View rootView = mInflater.inflate(R.layout.background_check_summary, in onCreateView()
|
/packages/apps/Car/tests/RotaryPlayground/src/com/android/car/rotaryplayground/ |
D | RotaryGridAdapter.java | 36 private final LayoutInflater mInflater; field in RotaryGridAdapter 40 this.mInflater = LayoutInflater.from(context); in RotaryGridAdapter() 46 View view = mInflater.inflate( in onCreateViewHolder()
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/bluetooth/ |
D | BluetoothDeviceDetailsFragmentTest.java | 65 private MenuInflater mInflater; field in BluetoothDeviceDetailsFragmentTest 98 mInflater = new MenuInflater(mContext); in setUp() 110 mFragment.onCreateOptionsMenu(mMenu, mInflater); in getTitle_displayEditTitle() 119 mFragment.onCreateOptionsMenu(mMenu, mInflater); in editMenu_clicked_showDialog()
|
/packages/services/Car/tests/MultiDisplaySecondaryHomeTestLauncher/src/com/android/car/multidisplay/launcher/ |
D | AppListAdapter.java | 33 private final LayoutInflater mInflater; field in AppListAdapter 37 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); in AppListAdapter() 52 view = mInflater.inflate(R.layout.app_grid_item, parent, false); in getView()
|
/packages/apps/Stk/src/com/android/stk/ |
D | StkMenuAdapter.java | 35 private final LayoutInflater mInflater; field in StkMenuAdapter 41 mInflater = LayoutInflater.from(context); in StkMenuAdapter() 50 convertView = mInflater.inflate(R.layout.stk_menu_item, parent, in getView()
|
/packages/apps/Gallery2/src/com/android/photos/adapters/ |
D | PhotoThumbnailAdapter.java | 35 private LayoutInflater mInflater; field in PhotoThumbnailAdapter 40 mInflater = LayoutInflater.from(context); in PhotoThumbnailAdapter() 59 View view = mInflater.inflate(R.layout.photo_set_item, parent, false); in newView()
|
/packages/apps/Settings/src/com/android/settings/sim/ |
D | SimListDialogFragment.java | 141 private LayoutInflater mInflater; field in SimListDialogFragment.SelectSubscriptionAdapter 171 if (mInflater == null) { in getView() 172 mInflater = LayoutInflater.from(parent.getContext()); in getView() 174 convertView = mInflater.inflate(R.layout.select_account_list_item, parent, false); in getView()
|
/packages/apps/Settings/src/com/android/settings/accessibility/ |
D | ListDialogPreference.java | 261 private LayoutInflater mInflater; field in ListDialogPreference.ListPreferenceAdapter 286 if (mInflater == null) { in getView() 287 mInflater = LayoutInflater.from(parent.getContext()); in getView() 289 convertView = mInflater.inflate(mListItemLayout, parent, false); in getView()
|
/packages/apps/Messaging/src/com/android/messaging/ui/ |
D | VCardDetailAdapter.java | 35 private final LayoutInflater mInflater; field in VCardDetailAdapter 39 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); in VCardDetailAdapter() 115 final PersonItemView v = (PersonItemView) mInflater.inflate(R.layout.people_list_item_view, in instantiateView()
|
/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/preprovisioning/terms/adapters/ |
D | TermsListAdapter.java | 53 private final LayoutInflater mInflater; field in TermsListAdapter 66 mInflater = requireNonNull(layoutInflater); in TermsListAdapter() 89 View rootView = mInflater.inflate( in createRegularDisclaimerView() 97 View rootView = mInflater.inflate( in createGeneralDisclaimerView()
|
/packages/apps/Settings/src/com/android/settings/development/storage/ |
D | LeaseInfoListView.java | 57 private LayoutInflater mInflater; field in LeaseInfoListView 64 mInflater = (LayoutInflater) getSystemService(LayoutInflater.class); in onCreate() 93 final LinearLayout headerView = (LinearLayout) mInflater.inflate( in getHeaderView() 159 mInflater, convertView);
|
/packages/apps/Calendar/src/com/android/calendar/ |
D | CalendarViewAdapter.java | 55 private final LayoutInflater mInflater; field in CalendarViewAdapter 96 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); in CalendarViewAdapter() 172 v = mInflater.inflate(R.layout.actionbar_pulldown_menu_top_button, parent, false); in getView() 208 v = mInflater.inflate( in getView() 253 View v = mInflater.inflate(R.layout.actionbar_pulldown_menu_button, parent, false); in getDropDownView()
|
/packages/apps/Car/Notification/src/com/android/car/notification/ |
D | CarNotificationViewAdapter.java | 54 private final LayoutInflater mInflater; field in CarNotificationViewAdapter 85 mInflater = LayoutInflater.from(context); in CarNotificationViewAdapter() 116 view = mInflater.inflate(R.layout.notification_header_template, parent, false); in onCreateViewHolderImpl() 121 view = mInflater.inflate(R.layout.notification_footer_template, parent, false); in onCreateViewHolderImpl() 128 view = mInflater.inflate( in onCreateViewHolderImpl()
|
/packages/apps/Car/Settings/src/com/android/car/settings/quicksettings/ |
D | QuickSettingGridAdapter.java | 51 private final LayoutInflater mInflater; field in QuickSettingGridAdapter 59 mInflater = LayoutInflater.from(context); in QuickSettingGridAdapter() 163 return new BrightnessViewHolder(mInflater.inflate( in onCreateViewHolder() 166 return new TileViewHolder(mInflater.inflate( in onCreateViewHolder()
|
/packages/apps/Contacts/src/com/android/contacts/util/ |
D | AccountsListAdapter.java | 40 private final LayoutInflater mInflater; field in AccountsListAdapter 58 mInflater = LayoutInflater.from(context); in AccountsListAdapter() 89 mInflater.inflate(mCustomLayout > 0 ? mCustomLayout : in getView()
|
/packages/apps/ThemePicker/src/com/android/customization/picker/ |
D | BasePreviewAdapter.java | 49 private final LayoutInflater mInflater; field in BasePreviewAdapter 55 mInflater = LayoutInflater.from(mContext); in BasePreviewAdapter() 78 CardView card = (CardView) mInflater.inflate(mPreviewCardResId, container, false); in instantiateItem()
|
/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
D | GalleryActionBar.java | 52 private LayoutInflater mInflater; field in GalleryActionBar 130 convertView = mInflater.inflate(R.layout.action_bar_text, in getView() 158 convertView = mInflater.inflate(R.layout.action_bar_two_line_text, in getView() 170 convertView = mInflater.inflate(R.layout.action_bar_text, in getDropDownView() 192 mInflater = ((Activity) mActivity).getLayoutInflater(); in GalleryActionBar()
|
/packages/apps/LegacyCamera/src/com/android/camera/ui/ |
D | OtherSettingsPopup.java | 52 LayoutInflater mInflater; field in OtherSettingsPopup.OtherSettingsAdapter 56 mInflater = LayoutInflater.from(getContext()); in OtherSettingsAdapter() 80 mInflater.inflate(viewLayoutId, parent, false); in getView()
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/presets/ |
D | UserPresetsAdapter.java | 39 private LayoutInflater mInflater; field in UserPresetsAdapter 49 mInflater = LayoutInflater.from(context); in UserPresetsAdapter() 96 convertView = mInflater.inflate(R.layout.filtershow_presets_management_row, null); in getView()
|