Searched refs:image (Results 1 - 25 of 201) sorted by last modified time

123456789

/frameworks/wilhelm/include/OMXAL/
H A DOpenMAXAL.h1179 const XADataSink * image
1201 XADataSink * image
/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/cards/presenters/
H A DIconCardPresenter.java40 final ImageView image = imageCardView.getMainImageView();
41 image.setBackgroundResource(R.drawable.icon_focused);
42 image.getBackground().setAlpha(0);
46 animateIconBackground(image.getBackground(), hasFocus);
/frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/cards/presenters/
H A DIconCardPresenter.java40 final ImageView image = imageCardView.getMainImageView();
41 image.setBackgroundResource(R.drawable.icon_focused);
42 image.getBackground().setAlpha(0);
46 animateIconBackground(image.getBackground(), hasFocus);
/frameworks/support/transition/src/android/support/transition/
H A DChangeImageTransform.java198 * Calculates the image transformation matrix for an ImageView with ScaleType FIT_XY. This
202 final Drawable image = view.getDrawable();
205 ((float) view.getWidth()) / image.getIntrinsicWidth(),
206 ((float) view.getHeight()) / image.getIntrinsicHeight());
211 * Calculates the image transformation matrix for an ImageView with ScaleType CENTER_CROP. This
215 final Drawable image = view.getDrawable();
216 final int imageWidth = image.getIntrinsicWidth();
220 final int imageHeight = image.getIntrinsicHeight();
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DErrorFragment.java89 * Sets the drawable to be used for the error image.
91 * @param drawable The drawable used for the error image.
99 * Returns the drawable used for the error image.
166 mImageView = (ImageView) root.findViewById(R.id.image);
H A DErrorSupportFragment.java92 * Sets the drawable to be used for the error image.
94 * @param drawable The drawable used for the error image.
102 * Returns the drawable used for the error image.
169 mImageView = (ImageView) root.findViewById(R.id.image);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DPlaybackControlsRowPresenter.java93 mImageView = (ImageView) rootView.findViewById(R.id.image);
H A DPlaybackTransportRowPresenter.java266 mImageView = (ImageView) rootView.findViewById(R.id.image);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DActivityChooserView.java105 * The image for the expand activities action button;
115 * The image for the default activities action button;
244 mDefaultActivityButtonImage = (ImageView) mDefaultActivityButton.findViewById(R.id.image);
275 (ImageView) expandButton.findViewById(R.id.image);
/frameworks/support/exifinterface/tests/src/android/support/media/
H A DExifInterfaceTest.java241 // To keep the compatibility with old versions of ExifInterface, even on a corrupted image,
367 // Checks a thumbnail image.
515 File image = File.createTempFile(TEST_TEMP_FILE_NAME, ".jpg");
516 image.deleteOnExit();
517 return new ExifInterface(image.getAbsolutePath());
/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/graphics/
H A DDrawableCompatActivity.java45 mImageView = findViewById(R.id.image);
H A DRoundedBitmapDrawableActivity.java50 ImageView image = findViewById(R.id.image);
53 image.setImageDrawable(mRoundedBitmapDrawable);
/frameworks/support/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/graphics/
H A DPaletteActivity.java191 ImageView imageView = (ImageView) view.findViewById(R.id.image);
H A DPaletteDetailActivity.java40 * {@link android.provider.MediaStore} image.
65 mImageView = findViewById(R.id.image);
86 // Load the image with a default number of colors
/frameworks/support/recommendation/src/android/support/app/recommendation/
H A DContentRecommendation.java400 * Returns the Bitmap containing the recommendation image.
402 * @return A Bitmap containing the recommendation image.
420 * Returns a Content URI that can be used to retrieve the background image for this
423 * @return A Content URI pointing to the recommendation background image.
791 * Sets the recommendation image.
793 * @param image A Bitmap containing the recommendation image.
796 public Builder setContentImage(Bitmap image) { argument
797 mBuilderContentImage = checkNotNull(image);
817 * Sets the Content URI that will be used to retrieve the background image fo
[all...]
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/graphics/
H A DDrawableCompatActivity.java45 mImageView = findViewById(R.id.image);
H A DRoundedBitmapDrawableActivity.java50 ImageView image = findViewById(R.id.image);
53 image.setImageDrawable(mRoundedBitmapDrawable);
/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/graphics/
H A DPaletteActivity.java191 ImageView imageView = (ImageView) view.findViewById(R.id.image);
H A DPaletteDetailActivity.java40 * {@link android.provider.MediaStore} image.
65 mImageView = findViewById(R.id.image);
86 // Load the image with a default number of colors
/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/
H A DDepthImage.java23 import com.android.rs.refocus.image.RangeInverseDepthTransform;
24 import com.android.rs.refocus.image.RangeLinearDepthTransform;
58 public static DepthImage createFromXMPMetadata(Context context, Uri image) argument
60 InputStream input = context.getContentResolver().openInputStream(image);
H A DPortableFloatMap.java5 import com.android.rs.refocus.image.RangeLinearDepthTransform;
H A DRGBZ.java26 import com.android.rs.refocus.image.RangeInverseDepthTransform;
31 * An RGBZ image, where Z stands for depth, i.e. a color+depth image.
32 * The RGBZ always has a preview image, which represents the latest rendering of the RGBZ.
66 * Creates an RGBZ from uris to an image and a depthmap.
68 * @param uriImage The uri name of the image
85 public RGBZ(Bitmap image, DepthImage depthImage) { argument
86 preview = image;
96 Bitmap image = BitmapFactory.decodeStream(contentResolver.openInputStream(uriImage));
97 if (image
[all...]
H A DXmpDepthDecode.java21 import com.android.rs.refocus.image.RangeInverseDepthTransform;
22 import com.android.rs.refocus.image.RangeLinearDepthTransform;
125 // JPEG file is composed of many sections and image data. This class is used
126 // to hold the section data from image file.
187 * Parses the JPEG image file. If readMetaOnly is true, only keeps the EXIF
189 * all sections. The last section with image data will have -1 length.
191 * @param is Input image data stream
220 // M_SOS indicates the image data will follow and no metadata after
/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/d1new/
H A DImageBuffersForRenderScriptd1new.java15 * A class that manages the image buffers that interface between Java and Render
42 * @param image an input (padded) RGBD image
48 public ImageBuffersForRenderScriptd1new(Bitmap image, int margin, argument
50 super(image, margin, renderScript);
86 * sets up the input image.
101 // At this point, {@code inAllocation} contains input RGBD image in Java.
102 // {@code g_sharp_image} is a global pointer that points the focus image in
/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/f32/
H A DImageBuffersForRenderScriptF32.java15 * A class that manages the image buffers that interface between Java and Render
35 * @param image an input (padded) RGBD image
41 public ImageBuffersForRenderScriptF32(Bitmap image, int margin, argument
43 super(image, margin, renderScript);
63 * sets up the input image.
79 // At this point, {@code inAllocation} contains input RGBD image in Java.
80 // {@code g_sharp_image} is a global pointer that points the focus image in

Completed in 248 milliseconds

123456789