/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/ManagedProvisioning/src/com/android/managedprovisioning/preprovisioning/terms/adapters/ |
D | TermsListAdapter.java | 42 private final LayoutInflater mInflater; field in TermsListAdapter 56 mInflater = checkNotNull(layoutInflater); in TermsListAdapter() 104 View groupView = convertView != null ? convertView : mInflater.inflate( in getGroupView() 132 View view = convertView != null ? convertView : mInflater.inflate( in getChildView()
|
/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/DeskClock/src/com/android/deskclock/ringtone/ |
D | HeaderViewHolder.java | 45 private final LayoutInflater mInflater; field in HeaderViewHolder.Factory 48 mInflater = inflater; in Factory() 53 return new HeaderViewHolder(mInflater.inflate(viewType, parent, false)); in createViewHolder()
|
D | AddCustomRingtoneViewHolder.java | 59 private final LayoutInflater mInflater; field in AddCustomRingtoneViewHolder.Factory 62 mInflater = inflater; in Factory() 67 final View itemView = mInflater.inflate(R.layout.ringtone_item_sound, parent, false); in createViewHolder()
|
/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/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/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/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/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/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/Settings/src/com/android/settings/sim/ |
D | SimListDialogFragment.java | 134 private LayoutInflater mInflater; field in SimListDialogFragment.SelectSubscriptionAdapter 164 if (mInflater == null) { in getView() 165 mInflater = LayoutInflater.from(parent.getContext()); in getView() 167 convertView = mInflater.inflate(R.layout.select_account_list_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/Car/Settings/src/com/android/car/settings/quicksettings/ |
D | QuickSettingGridAdapter.java | 47 private final LayoutInflater mInflater; field in QuickSettingGridAdapter 54 mInflater = LayoutInflater.from(context); in QuickSettingGridAdapter() 158 return new BrightnessViewHolder(mInflater.inflate( in onCreateViewHolder() 161 return new TileViewHolder(mInflater.inflate( in onCreateViewHolder()
|
/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/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/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/services/Car/tests/SecondaryHomeApp/src/com/android/car/secondaryhome/launcher/ |
D | AppListAdapter.java | 36 private final LayoutInflater mInflater; field in AppListAdapter 40 mInflater = LayoutInflater.from(context); in AppListAdapter() 63 view = mInflater.inflate(R.layout.app_grid_item, parent, false); 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/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/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()
|