Searched defs:mInflater (Results 26 - 39 of 39) sorted by relevance

12

/frameworks/base/core/tests/coretests/src/com/android/internal/widget/
H A DSizeAdaptiveLayoutTest.java34 private LayoutInflater mInflater; field in class:SizeAdaptiveLayoutTest
48 mInflater = LayoutInflater.from(context);
54 mSizeAdaptiveLayout = (SizeAdaptiveLayout) mInflater.inflate(resource, null);
70 assertNotNull(mInflater);
/frameworks/base/core/java/android/app/
H A DLauncherActivity.java101 protected final LayoutInflater mInflater; field in class:LauncherActivity.ActivityAdapter
110 mInflater = (LayoutInflater) LauncherActivity.this.getSystemService(
153 view = mInflater.inflate(
/frameworks/base/core/java/com/android/internal/view/menu/
H A DMenuPopupHelper.java51 private LayoutInflater mInflater; field in class:MenuPopupHelper
78 mInflater = LayoutInflater.from(context);
339 convertView = mInflater.inflate(ITEM_LAYOUT, parent, false);
/frameworks/base/core/java/android/widget/
H A DAppSecurityPermissions.java70 private LayoutInflater mInflater; field in class:AppSecurityPermissions
474 mInflater = (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
476 LinearLayout permsView = (LinearLayout) mInflater.inflate(R.layout.app_perms_summary, null);
524 return getPermissionItemView(mContext, mInflater, grp, perm, first, newPermPrefix);
H A DEditor.java2261 private LayoutInflater mInflater = (LayoutInflater) mTextView.getContext(). field in class:Editor.SuggestionsPopupWindow.SuggestionAdapter
2284 textView = (TextView) mInflater.inflate(mTextView.mTextEditSuggestionItemLayout,
/frameworks/base/core/java/com/android/internal/app/
H A DResolverActivity.java403 private final LayoutInflater mInflater; field in class:ResolverActivity.ResolveListAdapter
415 mInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
631 view = mInflater.inflate(
H A DAlertController.java751 public final LayoutInflater mInflater; field in class:AlertController.AlertParams
807 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
870 mInflater.inflate(dialog.mListLayout, null);
910 return mInflater.inflate(dialog.mMultiChoiceItemLayout,
H A DMediaRouteChooserDialogFragment.java76 private LayoutInflater mInflater; field in class:MediaRouteChooserDialogFragment
113 mInflater = null;
173 mInflater = inflater;
414 convertView = mInflater.inflate(ITEM_LAYOUTS[viewType], parent, false);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DRenderSessionImpl.java117 private BridgeInflater mInflater; field in class:RenderSessionImpl
203 mInflater = new BridgeInflater(context, params.getProjectCallback());
204 context.setBridgeInflater(mInflater);
385 View view = mInflater.inflate(mBlockParser, mContentRoot);
697 final View child = mInflater.inflate(blockParser, parentView, false /*attachToRoot*/);
/frameworks/base/core/java/android/preference/
H A DPreferenceActivity.java255 private LayoutInflater mInflater; field in class:PreferenceActivity.HeaderAdapter
259 mInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
268 view = mInflater.inflate(com.android.internal.R.layout.preference_header_item,
/frameworks/ex/chips/src/com/android/ex/chips/
H A DBaseRecipientAdapter.java434 private final LayoutInflater mInflater; field in class:BaseRecipientAdapter
524 mInflater = LayoutInflater.from(context);
876 final View itemView = convertView != null ? convertView : mInflater.inflate(
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DRecentsPanelView.java123 private LayoutInflater mInflater; field in class:RecentsPanelView.TaskDescriptionAdapter
126 mInflater = LayoutInflater.from(context);
142 View convertView = mInflater.inflate(mRecentItemLayoutId, parent, false);
/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodService.java256 LayoutInflater mInflater; field in class:InputMethodService
648 mInflater = (LayoutInflater)getSystemService(
682 mRootView = mInflater.inflate(
801 return mInflater;
1230 return mInflater.inflate(
/frameworks/base/services/java/com/android/server/
H A DInputMethodManagerService.java2749 private final LayoutInflater mInflater; field in class:InputMethodManagerService.ImeSubtypeListAdapter
2759 mInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
2765 : mInflater.inflate(mTextViewResourceId, null);

Completed in 376 milliseconds

12