Searched refs:mDropDownInflater (Results 1 - 4 of 4) sorted by relevance

/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DThemedSpinnerAdapter.java108 private LayoutInflater mDropDownInflater; field in class:ThemedSpinnerAdapter.Helper
124 mDropDownInflater = null;
126 mDropDownInflater = mInflater;
129 mDropDownInflater = LayoutInflater.from(context);
139 return mDropDownInflater == null ? null : mDropDownInflater.getContext().getTheme();
151 return mDropDownInflater != null ? mDropDownInflater : mInflater;
/frameworks/base/core/java/android/widget/
H A DResourceCursorAdapter.java38 private LayoutInflater mDropDownInflater; field in class:ResourceCursorAdapter
58 mDropDownInflater = mInflater;
81 mDropDownInflater = mInflater;
99 mDropDownInflater = mInflater;
118 mDropDownInflater = null;
120 mDropDownInflater = mInflater;
123 mDropDownInflater = LayoutInflater.from(context);
140 return mDropDownInflater.inflate(mDropDownLayout, parent, false);
H A DSimpleAdapter.java67 private LayoutInflater mDropDownInflater; field in class:SimpleAdapter
162 mDropDownInflater = null;
164 mDropDownInflater = mInflater;
167 mDropDownInflater = LayoutInflater.from(context);
173 return mDropDownInflater == null ? null : mDropDownInflater.getContext().getTheme();
178 final LayoutInflater inflater = mDropDownInflater == null ? mInflater : mDropDownInflater;
H A DArrayAdapter.java103 private LayoutInflater mDropDownInflater; field in class:ArrayAdapter
431 mDropDownInflater = null;
433 mDropDownInflater = mInflater;
436 mDropDownInflater = LayoutInflater.from(context);
442 return mDropDownInflater == null ? null : mDropDownInflater.getContext().getTheme();
447 final LayoutInflater inflater = mDropDownInflater == null ? mInflater : mDropDownInflater;

Completed in 141 milliseconds