Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DRemoteViewsService.java134 mFactory = factory; in RemoteViewsFactoryAdapter()
142 mFactory.onDataSetChanged(); in onDataSetChanged()
151 count = mFactory.getCount(); in getCount()
161 rv = mFactory.getViewAt(position); in getViewAt()
174 rv = mFactory.getLoadingView(); in getLoadingView()
184 count = mFactory.getViewTypeCount(); in getViewTypeCount()
194 id = mFactory.getItemId(position); in getItemId()
204 hasStableIds = mFactory.hasStableIds(); in hasStableIds()
227 private RemoteViewsFactory mFactory; field in RemoteViewsService.RemoteViewsFactoryAdapter
DViewSwitcher.java34 ViewFactory mFactory; field in ViewSwitcher
80 View child = mFactory.makeView(); in obtainView()
98 mFactory = factory; in setFactory()
DTabHost.java642 private TabContentFactory mFactory; field in TabHost.FactoryContentStrategy
646 mFactory = factory; in FactoryContentStrategy()
651 mTabContent = mFactory.createTabContent(mTag.toString()); in getContentView()
/frameworks/base/core/tests/coretests/src/com/android/internal/net/
DNetworkStatsFactoryTest.java45 private NetworkStatsFactory mFactory; field in NetworkStatsFactoryTest
56 mFactory = new NetworkStatsFactory(mTestProc); in setUp()
61 mFactory = null; in tearDown()
73 final NetworkStats stats = mFactory.readNetworkStatsDetail(); in testNetworkStatsDetail()
85 final NetworkStats stats = mFactory.readNetworkStatsDetail(); in testNetworkStatsDetailExtended()
94 final NetworkStats stats = mFactory.readNetworkStatsSummary(); in testNetworkStatsSummary()
112 final NetworkStats stats = mFactory.readNetworkStatsSummary(); in testNetworkStatsSummaryDown()
126 final NetworkStats stats = mFactory.readNetworkStatsSummary(); in testNetworkStatsCombined()
139 final NetworkStats stats = mFactory.readNetworkStatsSummary(); in testNetworkStatsCombinedInactive()
154 final NetworkStats stats = mFactory.readNetworkStatsDetail(); in testNetworkStatsWithSet()
[all …]
/frameworks/base/core/java/android/preference/
DGenericInflater.java51 private Factory<T> mFactory; field in GenericInflater
122 mFactory = original.mFactory; in GenericInflater()
174 return mFactory; in getFactory()
200 if (mFactory == null) { in setFactory()
201 mFactory = factory; in setFactory()
203 mFactory = new FactoryMerger<T>(factory, mFactory); in setFactory()
424 T item = (mFactory == null) ? null : mFactory.onCreateItem(name, mContext, attrs); in createItemFromTag()
/frameworks/base/core/java/android/view/
DLayoutInflater.java73 private Factory mFactory; field in LayoutInflater
200 mFactory = original.mFactory; in LayoutInflater()
246 return mFactory; in getFactory()
283 if (mFactory == null) { in setFactory()
284 mFactory = factory; in setFactory()
286 mFactory = new FactoryMerger(factory, null, mFactory, mFactory2); in setFactory()
302 if (mFactory == null) { in setFactory2()
303 mFactory = mFactory2 = factory; in setFactory2()
305 mFactory = new FactoryMerger(factory, factory, mFactory, mFactory2); in setFactory2()
669 else if (mFactory != null) view = mFactory.onCreateView(name, mContext, attrs); in createViewFromTag()
/frameworks/base/core/java/android/database/sqlite/
DSQLiteOpenHelper.java48 private final CursorFactory mFactory; field in SQLiteOpenHelper
97 mFactory = factory; in SQLiteOpenHelper()
157 db = mContext.openOrCreateDatabase(mName, 0, mFactory, mErrorHandler); in getWritableDatabase()
241 db = SQLiteDatabase.openDatabase(path, mFactory, SQLiteDatabase.OPEN_READONLY, in getReadableDatabase()
DSQLiteQueryBuilder.java45 private SQLiteDatabase.CursorFactory mFactory; field in SQLiteQueryBuilder
50 mFactory = null; in SQLiteQueryBuilder()
144 mFactory = factory; in setCursorFactory()
355 mFactory, sql, selectionArgs, in query()
DSQLiteDatabase.java273 private final CursorFactory mFactory; field in SQLiteDatabase
1574 cursorFactory != null ? cursorFactory : mFactory,
1972 mFactory = factory; in SQLiteDatabase()
2421 SQLiteDatabase db = openDatabase(mPath, mFactory, mFlags, mErrorHandler, connectionNum); in createPoolConnection()