Searched refs:mFactory (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DRemoteViewsService.java134 mFactory = factory;
142 mFactory.onDataSetChanged();
154 count = mFactory.getCount();
164 rv = mFactory.getViewAt(position);
177 rv = mFactory.getLoadingView();
187 count = mFactory.getViewTypeCount();
197 id = mFactory.getItemId(position);
207 hasStableIds = mFactory.hasStableIds();
230 private RemoteViewsFactory mFactory; field in class:RemoteViewsService.RemoteViewsFactoryAdapter
H A DViewSwitcher.java34 ViewFactory mFactory; field in class:ViewSwitcher
80 View child = mFactory.makeView();
98 mFactory = factory;
H A DTabHost.java642 private TabContentFactory mFactory; field in class:TabHost.FactoryContentStrategy
646 mFactory = factory;
651 mTabContent = mFactory.createTabContent(mTag.toString());
/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/tests/coretests/src/com/android/internal/net/
H A DNetworkStatsFactoryTest.java45 private NetworkStatsFactory mFactory; field in class:NetworkStatsFactoryTest
56 mFactory = new NetworkStatsFactory(mTestProc);
61 mFactory = null;
73 final NetworkStats stats = mFactory.readNetworkStatsDetail();
85 final NetworkStats stats = mFactory.readNetworkStatsSummary();
103 final NetworkStats stats = mFactory.readNetworkStatsSummary();
117 final NetworkStats stats = mFactory.readNetworkStatsSummary();
130 final NetworkStats stats = mFactory.readNetworkStatsSummary();
145 final NetworkStats stats = mFactory.readNetworkStatsDetail();
154 final NetworkStats stats = mFactory
[all...]
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteOpenHelper.java48 private final CursorFactory mFactory; field in class:SQLiteOpenHelper
97 mFactory = factory;
157 db = mContext.openOrCreateDatabase(mName, 0, mFactory, mErrorHandler);
241 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;
355 mFactory, sql, selectionArgs,
H A DSQLiteDatabase.java273 private final CursorFactory mFactory; field in class:SQLiteDatabase
1565 cursorFactory != null ? cursorFactory : mFactory,
1944 mFactory = factory;
2393 SQLiteDatabase db = openDatabase(mPath, mFactory, mFlags, mErrorHandler, connectionNum);
/frameworks/base/core/java/android/view/
H A DLayoutInflater.java73 private Factory mFactory; field in class:LayoutInflater
200 mFactory = original.mFactory;
246 return mFactory;
283 if (mFactory == null) {
284 mFactory = factory;
286 mFactory = new FactoryMerger(factory, null, mFactory, mFactory2);
302 if (mFactory == null) {
303 mFactory
[all...]

Completed in 247 milliseconds