Home | History | Annotate | Download | only in preference

Lines Matching refs:mFactory

51     private Factory<T> mFactory;
122 mFactory = original.mFactory;
174 return mFactory;
200 if (mFactory == null) {
201 mFactory = factory;
203 mFactory = new FactoryMerger<T>(factory, mFactory);
424 T item = (mFactory == null) ? null : mFactory.onCreateItem(name, mContext, attrs);