HomeSort by relevance Sort by last modified time
    Searched refs:Image (Results 1 - 25 of 519) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
IPageImageProvider.java 19 import org.eclipse.swt.graphics.Image;
28 * Returns an {@link Image} that the editor will display in the page's tab.
30 * @return An {@link Image} for the editor tab for this page. Null for no image.
32 Image getPageImage();
IconFactory.java 32 import org.eclipse.swt.graphics.Image;
60 private Map<String, Image> mIconMap = Maps.newHashMap();
61 private Map<URL, Image> mUrlMap = Maps.newHashMap();
63 private Map<Image, Image> mErrorIcons;
64 private Map<Image, Image> mWarningIcons;
78 for (Image icon : mIconMap.values()) {
85 for (Image icon : mUrlMap.values()) {
93 for (Image icon : mErrorIcons.values())
267 Image image = mUrlMap.get(url); local
356 Image image = new Image(display, SX, SY); local
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
ImageImageDescriptor.java 14 import org.eclipse.swt.graphics.Image;
18 * Implementation of {@link ImageDescriptor} for {@link Image} instance.
24 private final Image m_Image;
31 public ImageImageDescriptor(Image image) {
32 m_Image = image;
  /frameworks/base/libs/hwui/
Image.h 34 class Image {
37 * Creates a new image from the specified graphic buffer. If the image
41 Image(sp<GraphicBuffer> buffer);
42 ~Image();
46 * from this image.
53 * Returns the name of the EGL image represented by this object.
62 }; // class Image
Image.cpp 20 #include "Image.h"
25 Image::Image(sp<GraphicBuffer> buffer) {
35 ALOGW("Error creating image (%#x)", eglGetError());
45 ALOGW("Error creating image (%#x)", status);
50 Image::~Image() {
  /external/deqp/modules/egl/
teglAndroidUtil.hpp 32 namespace Image
37 } // Image
teglImageFormatTests.hpp 23 * \brief EGL image tests.
33 namespace Image
40 } // Image
  /external/opencv/cvaux/src/
cvfindface.cpp 48 CvSeq * cvFindFace(IplImage * Image,CvMemStorage* lpStorage)
52 FD.FindFace(Image);
56 }//cvFindFace(IplImage * Image)
58 CvSeq * cvPostBoostingFindFace(IplImage * Image,CvMemStorage* lpStorage)
62 FD.FindFace(Image);
67 }//cvPostBoostingFindFace(IplImage * Image)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
FlagManager.java 26 import org.eclipse.swt.graphics.Image;
64 private final Map<String, Image> mImageMap = Maps.newHashMap();
71 public static Image getEmptyIcon() {
80 public static Image getGlobeIcon() {
94 public Image getFlag(@Nullable String language, @Nullable String region) {
117 Image flag = getFlag(locale.getCountry());
142 public Image getFlag(@Nullable LocaleQualifier locale) {
162 public Image getFlagForFolderName(@NonNull String folder) {
178 public Image getFlag(@NonNull FolderConfiguration configuration) {
191 public Image getFlag(@NonNull String region)
    [all...]
  /external/piex/src/
piex_types.h 33 // Defines the properties of an image. width and height are required for
34 // uncompressed images, but are optional for compressed images. An image is
36 struct Image {
48 bool operator>(const Image& rhs) const {
53 // Contains relevant image information as well as the 'preview_offset' and the
54 // 'preview_length' which are used to obtain the JPEG compressed preview image.
80 // Optional data to find the preview and thumbnail image to handle them
82 // has black borders at the top and bottom. If length is 0 the image could not
84 Image preview;
85 Image thumbnail
    [all...]
  /external/skia/src/svg/parser/
SkSVGImage.h 17 DECLARE_SVG_INFO(Image);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
BooleanObjectPropertyEditor.java 19 import org.eclipse.swt.graphics.Image;
29 private static final Image m_nullImage = DesignerPlugin.getImage("properties/BooleanNull.png");
30 private static final Image m_trueImage = DesignerPlugin.getImage("properties/true.png");
31 private static final Image m_falseImage = DesignerPlugin.getImage("properties/false.png");
52 Image image = booleanValue ? m_trueImage : m_falseImage; local
54 paint(gc, x, y, width, height, text, image);
57 Image image = m_nullImage; local
59 paint(gc, x, y, width, height, text, image);
    [all...]
BooleanPropertyEditor.java 14 import org.eclipse.swt.graphics.Image;
28 private static final Image m_trueImage = DesignerPlugin.getImage("properties/true.png");
29 private static final Image m_falseImage = DesignerPlugin.getImage("properties/false.png");
30 private static final Image m_unknownImage =
52 Image image = booleanValue ? m_trueImage : m_falseImage; local
54 paint(gc, x, y, width, height, image, text);
61 * Paints {@link Image} and text.
63 private void paint(GC gc, int x, int y, int width, int height, Image image, String text)
    [all...]
  /external/pdfium/samples/
image_diff.cc 39 class Image {
41 Image() : w_(0), h_(0) {
44 Image(const Image& image)
45 : w_(image.w_),
46 h_(image.h_),
47 data_(image.data_) {
66 // Creates the image from the given filename on disk, and returns true on
118 // Pixel dimensions of the image
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
CodecUtils.java 22 import android.media.Image;
43 private final Image mImage;
46 private ImageWrapper(Image image) {
47 mImage = image;
48 Image.Plane[] planes = mImage.getPlanes();
56 public static ImageWrapper createFromImage(Image image) {
57 return new ImageWrapper(image);
91 private final Image.Plane mPlane
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
BooleanXmlPropertyEditor.java 23 import org.eclipse.swt.graphics.Image;
39 private static final Image mTrueImage = DesignerPlugin.getImage("properties/true.png");
40 private static final Image mFalseImage = DesignerPlugin.getImage("properties/false.png");
41 private static final Image mNullImage =
43 private static final Image mUnknownImage =
56 Image image; local
58 image = mTrueImage;
60 image = mFalseImage;
62 image = mNullImage
    [all...]
  /frameworks/base/media/java/android/media/
ImageReader.java 37 * <p>The ImageReader class allows direct application access to image data
43 * {@link android.renderscript.Allocation RenderScript Allocations}. The image
47 * <p>The image data is encapsulated in {@link Image} objects, and multiple such
51 * or {@link #acquireNextImage} call. Due to memory limits, an image source will
59 * Returned by nativeImageSetup when acquiring the image was successful.
80 * {@link Image} objects that can be be acquired from the
86 * The valid sizes and formats depend on the source of the image data.
94 * {@link ImageWriter} interface. However, the {@link Image#getPlanes()
101 * ImageReaders} are more efficient to use when application access to image
283 Image image = acquireNextImage(); local
    [all...]
Image.java 25 * <p>A single complete image buffer to use with a media source such as a
30 * data of the Image through one or more
41 * from various media sources, not closing old Image objects will prevent the
43 * {@link ImageReader#getMaxImages the maximum outstanding image count} is
49 public abstract class Image implements AutoCloseable {
58 protected Image() {
62 * Throw IllegalStateException if the image is invalid (already closed).
68 throw new IllegalStateException("Image is already closed");
72 * Get the format for this image. This format determines the number of
73 * ByteBuffers needed to represent the image, and the general layout of th
    [all...]
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/ime/indic/
IndicIMDescriptor.java 10 import java.awt.Image;
46 public Image getInputMethodIcon(Locale inputLocale) {
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/ime/translit/
TransliteratorInputMethodDescriptor.java 10 import java.awt.Image;
85 * @return Image This will always be null.
87 public Image getInputMethodIcon(Locale inputLocale) {
  /external/proguard/src/proguard/gui/splash/
ImageSprite.java 26 * This Sprite represents an animated image.
32 private final Image image; field in class:ImageSprite
41 * @param image the Image to be painted.
42 * @param x the variable x-coordinate of the upper-left corner of the image.
43 * @param y the variable y-coordinate of the upper-left corner of the image.
44 * @param scaleX the variable x-scale of the image.
45 * @param scaleY the variable y-scale of the image.
47 public ImageSprite(Image image
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
ImageReaderTest.java 22 import android.media.Image;
23 import android.media.Image.Plane;
39 private Image mImage1;
40 private Image mImage2;
41 private Image mImage3;
59 mImage1 = mock(Image.class);
60 mImage2 = mock(Image.class);
61 mImage3 = mock(Image.class);
81 * Return null when there is nothing in the image queue.
91 * Return the last image from the image queue, close up the rest
    [all...]
  /external/opencv3/modules/cudaimgproc/perf/
perf_mean_shift.cpp 52 DEF_PARAM_TEST_1(Image, string);
54 PERF_TEST_P(Image, MeanShiftFiltering,
90 PERF_TEST_P(Image, MeanShiftProc,
124 PERF_TEST_P(Image, MeanShiftSegmentation,
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplusmetafile.h 33 class Metafile: public Image
71 BOOL deleteWmf = FALSE): Image(NULL, Ok)
79 Metafile(HENHMETAFILE hEmf, BOOL deleteEmf = FALSE): Image(NULL, Ok)
86 Metafile(const WCHAR *filename): Image(NULL, Ok)
95 Image(NULL, Ok)
103 Metafile(IStream *stream): Image(NULL, Ok)
111 const WCHAR *description = NULL): Image(NULL, Ok)
122 const WCHAR *description = NULL): Image(NULL, Ok)
133 const WCHAR *description = NULL): Image(NULL, Ok)
143 const WCHAR *description = NULL): Image(NULL, Ok
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
ErrorImageComposite.java 11 import org.eclipse.swt.graphics.Image;
23 private Image mBaseImage;
30 * @param baseImage the base image to overlay an icon on top of
32 public ErrorImageComposite(Image baseImage) {
39 * @param baseImage the base image to overlay an icon on top of
42 public ErrorImageComposite(Image baseImage, boolean warning) {

Completed in 585 milliseconds

1 2 3 4 5 6 7 8 91011>>