Home
last modified time | relevance | path

Searched defs:imageView (Results 1 – 25 of 909) sorted by relevance

12345678910>>...37

/aosp_15_r20/packages/providers/MediaProvider/src/com/android/providers/media/photopicker/ui/
DImageLoader.java78 public void loadAlbumThumbnail(@NonNull Category category, @NonNull ImageView imageView, in loadAlbumThumbnail()
88 /* signature */ null, imageView); in loadAlbumThumbnail() local
104 public void loadPhotoThumbnail(@NonNull Item item, @NonNull ImageView imageView) { in loadPhotoThumbnail()
110 getGlideSignature(loadable, /* prefix */ null), imageView); in loadPhotoThumbnail() local
119 public void loadImagePreview(@NonNull Item item, @NonNull ImageView imageView) { in loadImagePreview()
126 imageView); in loadImagePreview() local
135 imageView); in loadImagePreview() local
144 imageView); in loadImagePreview() local
150 public void loadImageFromVideoForPreview(@NonNull Item item, @NonNull ImageView imageView) { in loadImageFromVideoForPreview()
183 ImageView imageView) { in loadWithGlide()
/aosp_15_r20/developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
DImageWorker.java76 public void loadImage(Object data, ImageView imageView, OnImageLoadedListener listener) { in loadImage()
119 public void loadImage(Object data, ImageView imageView) { in loadImage()
201 public static void cancelWork(ImageView imageView) { in cancelWork()
218 public static boolean cancelPotentialWork(Object data, ImageView imageView) { in cancelPotentialWork()
243 private static BitmapWorkerTask getBitmapWorkerTask(ImageView imageView) { in getBitmapWorkerTask()
262 public BitmapWorkerTask(Object data, ImageView imageView) { in BitmapWorkerTask()
268 public BitmapWorkerTask(Object data, ImageView imageView, OnImageLoadedListener listener) { in BitmapWorkerTask()
354 final ImageView imageView = getAttachedImageView(); in onPostExecute() local
381 final ImageView imageView = imageViewReference.get(); in getAttachedImageView() local
432 private void setImageDrawable(ImageView imageView, Drawable drawable) { in setImageDrawable()
/aosp_15_r20/development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
H A DImageWorker.java76 public void loadImage(Object data, ImageView imageView, OnImageLoadedListener listener) { in loadImage()
119 public void loadImage(Object data, ImageView imageView) { in loadImage()
201 public static void cancelWork(ImageView imageView) { in cancelWork()
218 public static boolean cancelPotentialWork(Object data, ImageView imageView) { in cancelPotentialWork()
243 private static BitmapWorkerTask getBitmapWorkerTask(ImageView imageView) { in getBitmapWorkerTask()
262 public BitmapWorkerTask(Object data, ImageView imageView) { in BitmapWorkerTask()
268 public BitmapWorkerTask(Object data, ImageView imageView, OnImageLoadedListener listener) { in BitmapWorkerTask()
354 final ImageView imageView = getAttachedImageView(); in onPostExecute() local
381 final ImageView imageView = imageViewReference.get(); in getAttachedImageView() local
432 private void setImageDrawable(ImageView imageView, Drawable drawable) { in setImageDrawable()
/aosp_15_r20/developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
H A DImageWorker.java76 public void loadImage(Object data, ImageView imageView, OnImageLoadedListener listener) { in loadImage()
119 public void loadImage(Object data, ImageView imageView) { in loadImage()
201 public static void cancelWork(ImageView imageView) { in cancelWork()
218 public static boolean cancelPotentialWork(Object data, ImageView imageView) { in cancelPotentialWork()
243 private static BitmapWorkerTask getBitmapWorkerTask(ImageView imageView) { in getBitmapWorkerTask()
262 public BitmapWorkerTask(Object data, ImageView imageView) { in BitmapWorkerTask()
268 public BitmapWorkerTask(Object data, ImageView imageView, OnImageLoadedListener listener) { in BitmapWorkerTask()
354 final ImageView imageView = getAttachedImageView(); in onPostExecute() local
381 final ImageView imageView = imageViewReference.get(); in getAttachedImageView() local
432 private void setImageDrawable(ImageView imageView, Drawable drawable) { in setImageDrawable()
/aosp_15_r20/development/samples/training/ContactsList/src/com/example/android/contactslist/util/
H A DImageLoader.java72 public void loadImage(Object data, ImageView imageView) { in loadImage()
137 public static void cancelWork(ImageView imageView) { in cancelWork()
154 public static boolean cancelPotentialWork(Object data, ImageView imageView) { in cancelPotentialWork()
177 private static BitmapWorkerTask getBitmapWorkerTask(ImageView imageView) { in getBitmapWorkerTask()
195 public BitmapWorkerTask(ImageView imageView) { in BitmapWorkerTask()
253 final ImageView imageView = getAttachedImageView(); in onPostExecute() local
275 final ImageView imageView = imageViewReference.get(); in getAttachedImageView() local
312 private void setImageBitmap(ImageView imageView, Bitmap bitmap) { in setImageBitmap()
/aosp_15_r20/development/samples/XmlAdapters/src/com/example/android/xmladapters/
H A DImageDownloader.java97 public void download(String url, ImageView imageView) { in download()
109 public void download(String url, ImageView imageView, String cookie) { in download()
133 private void forceDownload(String url, ImageView imageView, String cookie) { in forceDownload()
168 private static boolean cancelPotentialDownload(String url, ImageView imageView) { in cancelPotentialDownload()
188 private static BitmapDownloaderTask getBitmapDownloaderTask(ImageView imageView) { in getBitmapDownloaderTask()
240 public BitmapDownloaderTask(ImageView imageView) { in BitmapDownloaderTask()
329 ImageView imageView = imageViewReference.get(); in onPostExecute() local
/aosp_15_r20/external/swiftshader/src/Vulkan/
H A DVkFramebuffer.cpp143 ImageView *imageView = attachments[attachmentIndex]; in clearAttachment() local
155 ImageView *imageView = attachments[attachmentIndex]; in clearAttachment() local
164 void Framebuffer::setAttachment(ImageView *imageView, uint32_t index) in setAttachment()
187 ImageView *imageView = attachments[subpass.pColorAttachments[i].attachment]; in resolve() local
199 ImageView *imageView = attachments[depthStencilAttachment]; in resolve() local
H A DVkDevice.cpp436 void Device::registerImageView(ImageView *imageView) in registerImageView()
445 void Device::unregisterImageView(ImageView *imageView) in unregisterImageView()
458 void Device::prepareForSampling(ImageView *imageView) in prepareForSampling()
472 void Device::contentsChanged(ImageView *imageView, Image::ContentsChangedContext context) in contentsChanged()
/aosp_15_r20/packages/apps/WallpaperPicker2/src/com/android/wallpaper/asset/
DAsset.java62 Context context, ImageView imageView, int placeholderColor) { in getPlaceholderDrawable()
176 public void loadLowResDrawable(Activity activity, ImageView imageView, int placeholderColor, in loadLowResDrawable()
206 public void loadDrawable(final Context context, final ImageView imageView, in loadDrawable()
263 final ImageView imageView, in loadDrawableWithTransition()
330 public void loadPreviewImage(Activity activity, ImageView imageView, int placeholderColor, in loadPreviewImage()
348 public void loadPreviewImage(Activity activity, ImageView imageView, int placeholderColor, in loadPreviewImage()
DContentUriAsset.java250 public void loadDrawable(Context context, ImageView imageView, in loadDrawable()
262 public void loadLowResDrawable(Activity activity, ImageView imageView, int placeholderColor, in loadLowResDrawable()
275 public void loadDrawableWithTransition(Context context, ImageView imageView, in loadDrawableWithTransition()
/aosp_15_r20/external/mesa3d/src/virtio/venus-protocol/
H A Dvn_protocol_driver_image_view.h317 static inline size_t vn_sizeof_vkDestroyImageView(VkDevice device, VkImageView imageView, const VkA… in vn_sizeof_vkDestroyImageView()
332 …vn_cs_encoder *enc, VkCommandFlagsEXT cmd_flags, VkDevice device, VkImageView imageView, const VkA… in vn_encode_vkDestroyImageView()
345 static inline size_t vn_sizeof_vkDestroyImageView_reply(VkDevice device, VkImageView imageView, con… in vn_sizeof_vkDestroyImageView_reply()
357 …estroyImageView_reply(struct vn_cs_decoder *dec, VkDevice device, VkImageView imageView, const VkA… in vn_decode_vkDestroyImageView_reply()
389 …t vn_ring *vn_ring, VkCommandFlagsEXT cmd_flags, VkDevice device, VkImageView imageView, const VkA… in vn_submit_vkDestroyImageView()
432 …call_vkDestroyImageView(struct vn_ring *vn_ring, VkDevice device, VkImageView imageView, const VkA… in vn_call_vkDestroyImageView()
445 …sync_vkDestroyImageView(struct vn_ring *vn_ring, VkDevice device, VkImageView imageView, const VkA… in vn_async_vkDestroyImageView()
/aosp_15_r20/cts/tests/tests/graphics/src/android/graphics/drawable/cts/
H A DAnimatedVectorDrawableTest.java259 ImageView imageView = (ImageView) mActivity.findViewById(mImageViewId); in testAddCallbackBeforeStart() local
277 ImageView imageView = (ImageView) mActivity.findViewById(mImageViewId); in testAddCallbackAfterTrigger() local
299 ImageView imageView = (ImageView) mActivity.findViewById(mImageViewId); in testAddCallbackAfterStart() local
319 ImageView imageView = (ImageView) mActivity.findViewById(mImageViewId); in testRemoveCallback() local
340 ImageView imageView = (ImageView) mActivity.findViewById(mImageViewId); in testClearCallback() local
H A DAnimatedVectorDrawableParameterizedTest.java132 final ImageView[] imageView = new ImageView[1]; in testAnimationOnLayer() local
224 ImageView imageView = (ImageView) mActivity.findViewById(R.id.avd_view); in testSingleFrameAnimation() local
247 ImageView imageView = (ImageView) mActivity.findViewById(R.id.avd_view); in testEmptyAnimatorSet() local
294 final ImageView[] imageView = new ImageView[1]; in testInfiniteAVD() local
/aosp_15_r20/frameworks/base/core/java/android/transition/
H A DChangeImageTransform.java86 ImageView imageView = (ImageView) view; in captureValues() local
160 ImageView imageView = (ImageView) endValues.view; in createAnimator() local
175 private ObjectAnimator createNullAnimator(ImageView imageView) { in createNullAnimator()
180 private ObjectAnimator createMatrixAnimator(final ImageView imageView, Matrix startMatrix, in createMatrixAnimator()
/aosp_15_r20/cts/tests/tests/widget/src/android/widget/cts/
H A DImageViewTest.java172 ImageView imageView = new ImageView(mActivity); in testConstructorImportantForAutofill() local
196 ImageView imageView = new ImageView(mActivity); in testConstructorImportantForContentCapture() local
533 MockImageView imageView = spy(new MockImageView(mActivity)); in testDrawableStateChanged() local
609 ImageView imageView = new ImageView(InstrumentationRegistry.getTargetContext()); in testSetColorFilterPreservesDrawableProperties() local
625 ImageView imageView = new ImageView(InstrumentationRegistry.getTargetContext()); in testSetColorFilterPreservesDrawablePropertiesTintBlendMode() local
641 ImageView imageView = new ImageView(InstrumentationRegistry.getTargetContext()); in testImageViewSetColorFilterPropagatedToDrawable() local
/aosp_15_r20/frameworks/base/tests/JankBench/app/src/main/java/com/android/benchmark/ui/
H A DImageListViewScrollActivity.java79 public BitmapWorkerTask(ImageView imageView, int cacheIdx) { in BitmapWorkerTask()
96 final ImageView imageView = imageViewReference.get(); in onPostExecute() local
139 ImageView imageView = (ImageView) convertView.findViewById(R.id.image_scroll_image); in getView() local
/aosp_15_r20/packages/apps/ThemePicker/src/com/android/wallpaper/customization/ui/binder/
DShapeGridFloatingSheetBinder.kt228 val imageView = foregroundView as? ImageView in <lambda>() constant
264 val imageView = view.findViewById(R.id.foreground) as? ImageView in <lambda>() constant
/aosp_15_r20/packages/apps/Settings/src/com/android/settings/bluetooth/
DAdvancedBluetoothDetailsHeaderController.java445 final ImageView imageView = linearLayout.findViewById(R.id.header_icon); in updateSubLayoutUi() local
616 final ImageView imageView = linearLayout.findViewById(R.id.bt_battery_icon); in showBatteryIcon() local
666 final ImageView imageView = linearLayout.findViewById(R.id.header_icon); in updateDisconnectLayout() local
676 void updateIcon(ImageView imageView, String iconUri) { in updateIcon()
/aosp_15_r20/external/robolectric/robolectric/src/test/java/org/robolectric/shadows/
H A DShadowImageViewTest.java30 ImageView imageView = new ImageView(ApplicationProvider.getApplicationContext()); in getDrawableResourceId_shouldWorkWhenTheDrawableWasCreatedFromAResource() local
42 ImageView imageView = new ImageView(ApplicationProvider.getApplicationContext()); in imageView_draw_drawsToCanvasBitmap() local
/aosp_15_r20/packages/providers/MediaProvider/src/com/android/providers/media/
DPermissionActivity.java938 final ImageView imageView = thumbs.get(i); in bindAsThumbs() local
1037 public void bindThumbnail(ImageView imageView, boolean shouldClip) { in bindThumbnail()
1045 public void bindFull(ImageView imageView) { in bindFull()
1052 public void bindMimeIcon(ImageView imageView) { in bindMimeIcon()
/aosp_15_r20/external/skia/src/gpu/ganesh/vk/
H A DGrVkImageView.h40 VkImageView imageView() const { return fImageView; } in imageView() function
50 GrVkImageView(const GrVkGpu* gpu, VkImageView imageView, in GrVkImageView()
/aosp_15_r20/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/notification/row/wrapper/
H A DNotificationBigPictureTemplateViewWrapperTest.java73 BigPictureNotificationImageView imageView = mView.findViewById(R.id.big_picture); in setAnimationsRunning_Run() local
90 BigPictureNotificationImageView imageView = mView.findViewById(R.id.big_picture); in setAnimationsRunning_Stop() local
/aosp_15_r20/external/skia/src/gpu/graphite/vk/
H A DVulkanImageView.cpp34 VkImageView imageView; in Make() local
86 VkImageView imageView, in VulkanImageView()
/aosp_15_r20/external/robolectric/integration_tests/kotlin/src/test/kotlin/org/robolectric/integrationtests/kotlin/
H A DCustomShadowImageViewTest.kt20 val imageView = ImageView(activity) in use custom ShadowImageView() constant
/aosp_15_r20/external/executorch/examples/demo-apps/android/ExecuTorchDemo/app/src/main/java/com/example/executorchdemo/
H A DClassificationActivity.java44 ImageView imageView = findViewById(R.id.image); in populateBitmap() local
62 ImageView imageView = findViewById(R.id.image); in run() local

12345678910>>...37