Searched defs:mFactory (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DViewSwitcher.java34 ViewFactory mFactory; field in class:ViewSwitcher
80 View child = mFactory.makeView();
98 mFactory = factory;
H A DTabHost.java611 private TabContentFactory mFactory; field in class:TabHost.FactoryContentStrategy
615 mFactory = factory;
620 mTabContent = mFactory.createTabContent(mTag.toString());
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteOpenHelper.java37 private final CursorFactory mFactory; field in class:SQLiteOpenHelper
59 mFactory = factory;
98 db = mContext.openOrCreateDatabase(mName, 0, mFactory);
168 db = SQLiteDatabase.openDatabase(path, mFactory, SQLiteDatabase.OPEN_READONLY);
H A DSQLiteQueryBuilder.java45 private SQLiteDatabase.CursorFactory mFactory; field in class:SQLiteQueryBuilder
50 mFactory = null;
144 mFactory = factory;
331 mFactory, sql, selectionArgs,
H A DSQLiteDatabase.java249 private CursorFactory mFactory; field in class:SQLiteDatabase
1346 cursorFactory != null ? cursorFactory : mFactory,
1811 mFactory = factory;
/frameworks/base/core/java/android/preference/
H A DGenericInflater.java51 private Factory<T> mFactory; field in class:GenericInflater
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
[all...]
/frameworks/base/core/java/android/view/
H A DLayoutInflater.java69 private Factory mFactory; field in class:LayoutInflater
163 mFactory = original.mFactory;
207 return mFactory;
233 if (mFactory == null) {
234 mFactory = factory;
236 mFactory = new FactoryMerger(factory, mFactory);
558 View view = (mFactory == null) ? null : mFactory
[all...]

Completed in 1043 milliseconds