/packages/apps/Gallery2/src/com/android/gallery3d/gadget/ |
D | MediaSetSource.java | 40 private WidgetSource mSource; field in MediaSetSource 48 mSource = new CheckedMediaSetSource(mediaSet); in MediaSetSource() 55 mSource = new EmptySource(); in MediaSetSource() 61 return mSource.size(); in size() 66 return mSource.getImage(index); in getImage() 71 return mSource.getContentUri(index); in getContentUri() 79 mSource.setContentListener(listener); in setContentListener() 85 mSource.reload(); in reload() 90 mSource.close(); in close() 112 mSource = new CheckedMediaSetSource(mediaSet); in resolveAlbumPath() [all …]
|
D | WidgetService.java | 60 private WidgetSource mSource; field in WidgetService.PhotoRVFactory 72 mSource = new MediaSetSource(mApp.getDataManager(), mAlbumPath); in onCreate() 74 mSource = new LocalPhotoSource(mApp.getAndroidContext()); in onCreate() 76 mSource.setContentListener(this); in onCreate() 84 mSource.close(); in onDestroy() 85 mSource = null; in onDestroy() 90 return mSource.size(); in getCount() 119 Bitmap bitmap = mSource.getImage(position); in getViewAt() 127 .setData(mSource.getContentUri(position))); in getViewAt() 133 mSource.reload(); in onDataSetChanged()
|
/packages/apps/TV/tuner/src/com/android/tv/tuner/exoplayer/ |
D | Cea708TextTrackRenderer.java | 44 private final SampleSource.SampleSourceReader mSource; field in Cea708TextTrackRenderer 65 mSource = source.register(); in Cea708TextTrackRenderer() 83 boolean sourcePrepared = mSource.prepare(positionUs); in doPrepare() 87 int trackCount = mSource.getTrackCount(); in doPrepare() 89 MediaFormat trackFormat = mSource.getFormat(i); in doPrepare() 103 mSource.enable(mTrackIndex, positionUs); in onEnabled() 111 mSource.disable(mTrackIndex); in onDisabled() 116 mSource.release(); in onReleased() 140 return mSource.getFormat(mTrackIndex); in getFormat() 146 mSource.maybeThrowError(); in maybeThrowError() [all …]
|
/packages/apps/TV/tuner/src/com/android/tv/tuner/source/ |
D | FileTsStreamer.java | 71 private StreamProvider mSource; field in FileTsStreamer 154 mSource = new StreamProvider(filepath); in startStream() 155 if (!mSource.isReady()) { in startStream() 158 mEventDetector.start(mSource, FileSourceEventDetector.ALL_PROGRAM_NUMBERS); in startStream() 159 mSource.addPidFilter(TsParser.PAT_PID); in startStream() 160 mSource.addPidFilter(TsParser.ATSC_SI_BASE_PID); in startStream() 162 mSource.addPidFilter(TsParser.DVB_EIT_PID); in startStream() 163 mSource.addPidFilter(TsParser.DVB_SDT_PID); in startStream() 181 mSource = new StreamProvider(channel.getFilepath()); in startStream() 182 if (!mSource.isReady()) { in startStream() [all …]
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
D | PhotoFallbackEffect.java | 56 private RectF mSource = new RectF(); field in PhotoFallbackEffect 116 mSource.set((w - h) / 2, 0, (w + h) / 2, h); in drawEntry() 117 canvas.drawTexture(entry.texture, mSource, mTarget); in drawEntry() 124 mSource.set(0, 0, (w - h) / 2, h); in drawEntry() 125 canvas.drawTexture(entry.texture, mSource, mTarget); in drawEntry() 129 mSource.set((w + h) / 2, 0, w, h); in drawEntry() 130 canvas.drawTexture(entry.texture, mSource, mTarget); in drawEntry() 136 mSource.set(0, (h - w) / 2, w, (h + w) / 2); in drawEntry() 137 canvas.drawTexture(entry.texture, mSource, mTarget); in drawEntry() 144 mSource.set(0, 0, w, (h - w) / 2); in drawEntry() [all …]
|
D | AlbumSlidingWindow.java | 60 private final AlbumDataLoader mSource; field in AlbumSlidingWindow 94 mSource = source; in AlbumSlidingWindow() 132 mSource.setActiveWindow(contentStart, contentEnd); in setContentWindow() 140 mSource.setActiveWindow(contentStart, contentEnd); in setContentWindow() 151 mSource.setActiveWindow(contentStart, contentEnd); in setContentWindow() 265 MediaItem item = mSource.get(slotIndex); // item could be null; in prepareSlotContent()
|
D | DialogDetailsView.java | 54 private final DetailsSource mSource; field in DialogDetailsView 61 mSource = source; in DialogDetailsView() 77 int index = mSource.setIndex(); in reloadDetails() 79 MediaDetails details = mSource.getDetails(); in reloadDetails() 92 mIndex + 1, mSource.size()); in setDetails()
|
D | AlbumSetSlidingWindow.java | 48 private final AlbumSetDataLoader mSource; field in AlbumSetSlidingWindow 97 mSource = source; in AlbumSetSlidingWindow() 143 mSource.setActiveWindow(contentStart, contentEnd); in setContentWindow() 154 mSource.setActiveWindow(contentStart, contentEnd); in setContentWindow() 247 MediaSet album = mSource.getMediaSet(slotIndex); in updateAlbumSetEntry() 248 MediaItem cover = mSource.getCoverItem(slotIndex); in updateAlbumSetEntry() 249 int totalCount = mSource.getTotalCount(slotIndex); in updateAlbumSetEntry()
|
/packages/apps/Contacts/src/com/android/contacts/model/account/ |
D | AccountDisplayInfo.java | 30 private final AccountWithDataSet mSource; field in AccountDisplayInfo 40 mSource = account; in AccountDisplayInfo() 48 return mSource; in getSource() 64 return GoogleAccountType.ACCOUNT_TYPE.equals(mSource.type); in hasGoogleAccountType() 68 return GoogleAccountType.ACCOUNT_TYPE.equals(mSource.type) && mSource.dataSet == null; in isGoogleAccount() 88 return new AccountDisplayInfo(mSource, name, type, mIcon, mIsDeviceAccount); in withNameAndType() 93 return new AccountDisplayInfo(mSource, context.getString(nameFormat, mName), in formatted()
|
/packages/apps/TV/tuner/src/com/android/tv/tuner/exoplayer/audio/ |
D | MpegTsDefaultAudioTrackRenderer.java | 103 private final SampleSource.SampleSourceReader mSource; field in MpegTsDefaultAudioTrackRenderer 139 mSource = source.register(); in MpegTsDefaultAudioTrackRenderer() 167 boolean sourcePrepared = mSource.prepare(positionUs); in doPrepare() 171 for (int i = 0; i < mSource.getTrackCount(); i++) { in doPrepare() 172 String mimeType = mSource.getFormat(i).mimeType; in doPrepare() 193 return mSource.getFormat(mTracksIndex.get(track)); in getFormat() 200 mSource.enable(mTrackIndex, positionUs); in onEnabled() 211 mSource.disable(mTrackIndex); in onDisabled() 218 mSource.release(); in onReleased() 246 mSource.seekToUs(positionUs); in seekTo() [all …]
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/google/ |
D | AbstractGoogleSourceResult.kt | 26 private val mSource: Source constant 32 get() = mSource 54 get() = mSource 66 get() = mSource.defaultIntentAction 68 get() = mSource.intentComponent 91 mSource = source
|
D | GoogleSuggestionProvider.kt | 37 private var mSource: GoogleSource? = null variable in com.android.quicksearchbox.google.GoogleSuggestionProvider 41 mSource = QsbApplication.get(getContext()).googleSource in onCreate() 76 SuggestionCursorBackedCursor(emptyIfNull(mSource!!.queryExternal(query), mSource, query)) in query() 80 SuggestionCursorBackedCursor(mSource!!.refreshShortcut(shortcutId, extraData)) in query()
|
/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
D | SlideshowDataAdapter.java | 49 private final SlideshowSource mSource; field in SlideshowDataAdapter 70 mSource = source; in SlideshowDataAdapter() 79 long v = mSource.reload(); in loadItem() 88 index = mSource.findItemIndex(mInitialPath, index); in loadItem() 91 return mSource.getMediaItem(index); in loadItem() 190 mSource.removeContentListener(mSourceListener); 199 mSource.addContentListener(mSourceListener);
|
D | AlbumDataLoader.java | 64 private final MediaSet mSource; field in AlbumDataLoader 79 mSource = mediaSet; in AlbumDataLoader() 110 mSource.addContentListener(mSourceListener); in resume() 118 mSource.removeContentListener(mSourceListener); in pause() 123 return mSource.getMediaItem(index, 1).get(0); in get() 371 long version = mSource.reload(); in run() 376 info.size = mSource.getMediaItemCount(); in run() 380 info.items = mSource.getMediaItem(info.reloadStart, info.reloadCount); in run()
|
D | AlbumSetDataLoader.java | 65 private final MediaSet mSource; field in AlbumSetDataLoader 78 mSource = Utils.checkNotNull(albumSet); in AlbumSetDataLoader() 108 mSource.removeContentListener(mSourceListener); in pause() 112 mSource.addContentListener(mSourceListener); in resume() 346 if (!mSource.isLoading()) updateLoading(false); in run() 354 long version = mSource.reload(); in run() 360 info.size = mSource.getSubMediaSetCount(); in run() 371 info.item = mSource.getSubMediaSet(info.index); in run()
|
/packages/apps/ThemePicker/src/com/android/customization/model/color/ |
D | ColorSeedOption.java | 44 private final String mSource; field in ColorSeedOption 50 mSource = source; in ColorSeedOption() 61 return mSource; in getSource() 135 private String mSource; field in ColorSeedOption.Builder 146 return new ColorSeedOption(mTitle, mPackages, mIsDefault, mSource, mStyle, mIndex, in build() 219 mSource = source; in setSource()
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/applications/ |
D | FetchPackageStorageAsyncLoaderTest.java | 52 private StorageStatsSource mSource; field in FetchPackageStorageAsyncLoaderTest 65 when(mSource.getStatsForPackage(nullable(String.class), nullable(String.class), in worksForValidPackageNameAndUid() 72 mContext, mSource, info, new UserHandle(0)); in worksForValidPackageNameAndUid() 78 when(mSource.getStatsForPackage(anyString(), anyString(), any(UserHandle.class))). in installerExceptionHandledCleanly() 83 mContext, mSource, info, new UserHandle(0)); in installerExceptionHandledCleanly()
|
/packages/apps/Settings/tests/unit/src/com/android/settings/deviceinfo/storage/ |
D | StorageAsyncLoaderTest.java | 68 private StorageStatsSource mSource; field in StorageAsyncLoaderTest 85 mLoader = new StorageAsyncLoader(mContext, mUserManager, "id", mSource, mPackageManager); in setUp() 92 when(mSource.getCacheQuotaBytes(anyString(), anyInt())).thenReturn(DEFAULT_QUOTA); in setUp() 150 when(mSource.getExternalStorageStats(anyString(), eq(UserHandle.SYSTEM))) in testMultipleUsers() 152 when(mSource.getExternalStorageStats(anyString(), eq(new UserHandle(SECONDARY_USER_ID)))) in testMultipleUsers() 180 when(mSource.getStatsForPackage(anyString(), anyString(), any(UserHandle.class))) in testRemovedPackageDoesNotCrash() 218 when(mSource.getStatsForPackage(anyString(), eq(packageName), any(UserHandle.class))) in addPackage()
|
/packages/modules/Wifi/service/tests/mts/src/android/net/wifi/mts/ |
D | StreamReader.java | 30 private BufferedReader mSource; field in StreamReader 34 mSource = source; in StreamReader() 50 while ((s = mSource.readLine()) != null) { in run() 58 mSource.close(); in run()
|
/packages/apps/Launcher3/src/com/android/launcher3/util/ |
D | PendingSplitSelectInfo.java | 32 private final StatsLogManager.EventEnum mSource; field in PendingSplitSelectInfo 38 this.mSource = source; in PendingSplitSelectInfo() 50 return mSource; in getSource()
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/ |
D | LevenshteinDistance.kt | 28 private val mSource: Array<Token?>? constant 39 val src = mSource in calculate() 81 var sourcePos = mSource!!.size 162 mSource = source
|
/packages/apps/Settings/src/com/android/settings/applications/ |
D | FetchPackageStorageAsyncLoader.java | 38 private final StorageStatsSource mSource; field in FetchPackageStorageAsyncLoader 45 mSource = Preconditions.checkNotNull(source); in FetchPackageStorageAsyncLoader() 54 result = mSource.getStatsForPackage(mInfo.volumeUuid, mInfo.packageName, mUser); in loadInBackground()
|
/packages/apps/Car/Settings/src/com/android/car/settings/storage/ |
D | FetchPackageStorageAsyncLoader.java | 41 private final StorageStatsSource mSource; field in FetchPackageStorageAsyncLoader 48 mSource = Preconditions.checkNotNull(source); in FetchPackageStorageAsyncLoader() 57 result = mSource.getStatsForPackage(mInfo.volumeUuid, mInfo.packageName, mUser); in loadInBackground()
|
/packages/modules/Connectivity/framework/src/android/net/ |
D | NattSocketKeepalive.java | 32 @NonNull private final InetAddress mSource; field in NattSocketKeepalive 45 mSource = source; in NattSocketKeepalive() 83 intervalSec, mCallback, mSource.getHostAddress(), in startImpl()
|
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/audio_util/helpers/ |
D | Image.java | 45 private int mSource = SOURCE_NONE; field in Image 223 return mSource; in getSource() 233 mSource = source; in setSource() 266 return "<Image source=" + mSource + ">"; in toString()
|