Searched refs:mFactory (Results 1 - 22 of 22) 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
85 View child = mFactory.makeView();
103 mFactory = factory;
H A DTabHost.java684 private TabContentFactory mFactory; field in class:TabHost.FactoryContentStrategy
688 mFactory = factory;
693 mTabContent = mFactory.createTabContent(mTag.toString());
/frameworks/base/media/mca/effect/java/android/media/effect/
H A DEffectContext.java44 private EffectFactory mFactory; field in class:EffectContext
71 return mFactory;
92 mFactory = new EffectFactory(this);
/frameworks/av/drm/libmediadrm/
H A DCrypto.cpp49 mFactory(NULL),
60 delete mFactory;
61 mFactory = NULL;
75 * mFactory is set to the library's factory method
79 * mLibrary is cleared and mFactory are set to NULL
166 (mFactory = createCryptoFactory()) == NULL ||
167 !mFactory->isCryptoSchemeSupported(uuid)) {
178 if (mFactory && mFactory->isCryptoSchemeSupported(uuid)) {
194 if (!mFactory || !mFactor
[all...]
H A DDrm.cpp92 mFactory(NULL),
104 delete mFactory;
105 mFactory = NULL;
193 * mFactory is set to the library's factory method
197 * mLibrary is cleared and mFactory are set to NULL
280 (mFactory = createDrmFactory()) == NULL ||
281 !mFactory->isCryptoSchemeSupported(uuid)) {
292 if (!mFactory || !mFactory->isCryptoSchemeSupported(uuid)) {
300 return mFactory
[all...]
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteOpenHelper.java55 private final CursorFactory mFactory; field in class:SQLiteOpenHelper
103 mFactory = factory;
220 db = SQLiteDatabase.openDatabase(path, mFactory,
225 mFactory, mErrorHandler);
234 db = SQLiteDatabase.openDatabase(path, mFactory,
H A DSQLiteQueryBuilder.java47 private SQLiteDatabase.CursorFactory mFactory; field in class:SQLiteQueryBuilder
52 mFactory = null;
147 mFactory = factory;
400 mFactory, sql, selectionArgs,
/frameworks/base/core/java/android/preference/
H A DGenericInflater.java52 private Factory<T> mFactory; field in class:GenericInflater
123 mFactory = original.mFactory;
175 return mFactory;
201 if (mFactory == null) {
202 mFactory = factory;
204 mFactory = new FactoryMerger<T>(factory, mFactory);
426 T item = (mFactory == null) ? null : mFactory
[all...]
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/items/
H A DGenericInflater.java52 private Factory<T> mFactory; field in class:GenericInflater
119 mFactory = original.mFactory;
171 return mFactory;
197 if (mFactory == null) {
198 mFactory = factory;
200 mFactory = new FactoryMerger<>(factory, mFactory);
413 T item = (mFactory == null) ? null : mFactory
[all...]
/frameworks/base/core/tests/coretests/src/com/android/internal/net/
H A DNetworkStatsFactoryTest.java48 private NetworkStatsFactory mFactory; field in class:NetworkStatsFactoryTest
59 mFactory = new NetworkStatsFactory(mTestProc);
64 mFactory = null;
76 final NetworkStats stats = mFactory.readNetworkStatsDetail();
102 final NetworkStats stats = mFactory.readNetworkStatsDetail();
111 final NetworkStats stats = mFactory.readNetworkStatsSummaryDev();
122 final NetworkStats stats = mFactory.readNetworkStatsSummaryXt();
/frameworks/opt/net/ethernet/java/com/android/server/ethernet/
H A DEthernetNetworkFactory.java90 private LocalNetworkFactory mFactory; field in class:EthernetNetworkFactory
165 mFactory.setScoreFilter(up ? NETWORK_SCORE : -1);
345 mFactory.setScoreFilter(-1);
365 mNetworkAgent = new NetworkAgent(mFactory.getLooper(), mContext,
423 mFactory = new LocalNetworkFactory(NETWORK_TYPE, context, target.getLooper());
424 mFactory.setCapabilityFilter(mNetworkCapabilities);
425 mFactory.setScoreFilter(-1); // this set high when we have an iface
426 mFactory.register();
479 mFactory.unregister();
/frameworks/av/include/media/
H A DCrypto.h68 CryptoFactory *mFactory; member in struct:android::Crypto
H A DDrm.h155 DrmFactory *mFactory; member in struct:android::Drm
/frameworks/base/core/java/android/view/
H A DLayoutInflater.java86 private Factory mFactory; field in class:LayoutInflater
221 mFactory = original.mFactory;
267 return mFactory;
304 if (mFactory == null) {
305 mFactory = factory;
307 mFactory = new FactoryMerger(factory, null, mFactory, mFactory2);
323 if (mFactory == null) {
324 mFactory
[all...]
/frameworks/base/core/tests/coretests/src/android/app/backup/
H A DFullBackupTest.java40 private XmlPullParserFactory mFactory; field in class:FullBackupTest
49 mFactory = XmlPullParserFactory.newInstance();
50 mXpp = mFactory.newPullParser();
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DSystemUIFactory.java60 static SystemUIFactory mFactory; field in class:SystemUIFactory
63 return mFactory;
75 mFactory = (SystemUIFactory) cls.newInstance();
/frameworks/base/media/mca/filterfw/java/android/filterfw/io/
H A DTextGraphReader.java46 private FilterFactory mFactory; field in class:TextGraphReader
62 reader.mFactory.addPackage(mPackageName);
78 reader.mFactory.addFilterLibrary(mLibraryName);
95 filter = reader.mFactory.createFilterByClassName(mClassName, mFilterName);
166 mFactory = new FilterFactory();
/frameworks/opt/bitmap/src/com/android/bitmap/
H A DDecodeTask.java53 private final FileDescriptorFactory mFactory; field in class:DecodeTask
102 mFactory = factory;
125 if (mFactory != null) {
127 fd = mFactory.createFileDescriptor();
168 final ParcelFileDescriptor orientationFd = mFactory.createFileDescriptor();
/frameworks/base/core/java/android/content/res/
H A DColorStateList.java135 private ColorStateListFactory mFactory; field in class:ColorStateList
662 if (mFactory == null) {
663 mFactory = new ColorStateListFactory(this);
665 return mFactory;
H A DGradientColor.java86 private GradientColorFactory mFactory; field in class:GradientColor
497 if (mFactory == null) {
498 mFactory = new GradientColorFactory(this);
500 return mFactory;
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DGraphReader.java48 private FilterFactory mFactory; field in class:GraphReader.CommandStack
54 mFactory = new FilterFactory();
68 return mFactory;

Completed in 619 milliseconds