Searched defs:Image (Results 1 - 25 of 28) sorted by relevance

12

/external/deqp/modules/egl/
H A DteglAndroidUtil.hpp32 namespace Image namespace in namespace:deqp::egl
37 } // Image
H A DteglImageFormatTests.hpp33 namespace Image namespace in namespace:deqp::egl
40 } // Image
H A DteglAndroidUtil.cpp41 namespace Image namespace in namespace:deqp::egl
168 } // Image
H A DteglImageUtil.hpp47 namespace Image namespace in namespace:deqp::egl
84 } // Image
H A DteglImageTests.cpp87 namespace Image namespace in namespace:deqp::egl
487 addChild(new Image::InvalidCreateImage(m_eglTestCtx));
489 addChild(new Image::CreateImageGLES2(m_eglTestCtx, EGL_GL_TEXTURE_2D_KHR, GL_RGB));
490 addChild(new Image::CreateImageGLES2(m_eglTestCtx, EGL_GL_TEXTURE_2D_KHR, GL_RGBA));
491 addChild(new Image::CreateImageGLES2(m_eglTestCtx, EGL_GL_TEXTURE_2D_KHR, GL_RGBA, true));
493 addChild(new Image::CreateImageGLES2(m_eglTestCtx, EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_X_KHR, GL_RGB));
494 addChild(new Image::CreateImageGLES2(m_eglTestCtx, EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_X_KHR, GL_RGBA));
495 addChild(new Image::CreateImageGLES2(m_eglTestCtx, EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_X_KHR, GL_RGBA, true));
497 addChild(new Image::CreateImageGLES2(m_eglTestCtx, EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_X_KHR, GL_RGBA));
498 addChild(new Image
[all...]
H A DteglImageUtil.cpp46 namespace Image namespace in namespace:deqp::egl
526 } // Image
H A DteglImageFormatTests.cpp108 namespace Image namespace in namespace:deqp::egl
447 bool match = tcu::fuzzyCompare(log, "ComparisonResult", "Image comparison result", refSurface, screen, threshold, tcu::COMPARE_LOG_RESULT);
1507 } // Image
/external/opencv/cvaux/src/
H A Dcvfindface.cpp48 CvSeq * cvFindFace(IplImage * Image,CvMemStorage* lpStorage) argument
52 FD.FindFace(Image);
56 }//cvFindFace(IplImage * Image)
58 CvSeq * cvPostBoostingFindFace(IplImage * Image,CvMemStorage* lpStorage) argument
62 FD.FindFace(Image);
67 }//cvPostBoostingFindFace(IplImage * Image)
H A Dcvface.cpp297 void RFace::Show(IplImage * Image) argument
308 cvRectangle(Image,p1,p2,CV_RGB(255,0,0),1);
313 }//void RFace::Show(IplImage * Image)
315 void RFace::ShowIdeal(IplImage* Image) argument
322 cvRectangle(Image,p1,p2,CV_RGB(0,0,255),1);
324 }//void RFace::ShowIdeal(IplImage* Image)
/external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfAlternateImageDictionary_autogen.cpp11 SkPdfStream* SkPdfAlternateImageDictionary::Image(SkPdfNativeDoc* doc) { function in class:SkPdfAlternateImageDictionary
12 SkPdfNativeObject* ret = get("Image", "");
20 return get("Image", "") != NULL;
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/tvcm/
H A Dstyle_sheet.py10 class Image(object): class in inherits:object
/external/giflib/
H A Dgifalloc.c204 GifApplyTranslation(SavedImage *Image, GifPixelType Translation[]) argument
207 register int RasterSize = Image->ImageDesc.Height * Image->ImageDesc.Width;
210 Image->RasterBits[i] = Translation[Image->RasterBits[i]];
269 Image block allocation functions
304 * we want to free the last Image it's convenient to do it here.
H A Dgif_lib.h77 GifImageDesc Image; /* Current image (low-level API) */ member in struct:GifFileType
78 SavedImage *SavedImages; /* Image sequence (high-level API) */
248 extern void GifApplyTranslation(SavedImage *Image, GifPixelType Translation[]);
/external/chromium-trace/trace-viewer/third_party/Paste/paste/
H A Durl.py15 __all__ = ["URL", "Image"]
337 class Image(URLResource): class in inherits:URLResource
340 >>> i = Image('/images')
/external/lldb/examples/python/
H A Dsymbolication.py198 class Image: class in inherits:
310 '''Add the Image described in this object to "target" and load the sections if "load" is True.'''
352 '''Create a target using the information in this Image object.'''
553 image = Image(options.file);
/external/pdfium/samples/
H A Dimage_diff.cc39 class Image { class
41 Image() : w_(0), h_(0) { function in class:Image
44 Image(const Image& image) function in class:Image
117 float PercentageDifferent(const Image& baseline, const Image& actual) {
152 float HistogramPercentageDifferent(const Image& baseline, const Image& actual) {
216 Image actual_image;
217 Image baseline_imag
[all...]
/external/skia/src/images/
H A DSkImageDecoder_libgif.cpp107 void CheckFreeExtension(SavedImage* Image) { argument
108 if (Image->ExtensionBlocks) {
110 FreeExtension(Image);
112 GifFreeExtensions(&Image->ExtensionBlockCount, &Image->ExtensionBlocks);
119 const ColorMapObject* cmap = gif->Image.ColorMap;
419 if (gif->Image.Interlace) {
/external/deqp/framework/common/
H A DtcuTestLog.hpp65 * log << TestLog::Image("TestImage", "My test image", myImage);
71 * << TestLog::Image("ImageA", "Image A", imageA)
72 * << TestLog::Image("ImageB", "Image B", imageB)
93 typedef LogImage Image; typedef in class:tcu::TestLog
110 TestLog& operator<< (const Image& image);
424 inline TestLog& TestLog::operator<< (const Image& image) { image.write(*this); return *this; }
/external/jmonkeyengine/engine/src/core/com/jme3/texture/
H A DImage.java45 * <code>Image</code> defines a data format for a graphical image. The image
52 * @version $Id: Image.java 4131 2009-03-19 20:15:28Z blaine.dev $
54 public class Image extends NativeObject implements Savable /*, Cloneable*/ { class in inherits:NativeObject,Savable
334 return new Image(id);
341 public Image clone(){
342 Image clone = (Image) super.clone();
350 * Constructor instantiates a new <code>Image</code> object. All values
353 public Image() { method in class:Image
354 super(Image
358 protected Image(int id){ method in class:Image
377 public Image(Format format, int width, int height, int depth, ArrayList<ByteBuffer> data, method in class:Image
409 public Image(Format format, int width, int height, ByteBuffer data, method in class:Image
441 public Image(Format format, int width, int height, int depth, ArrayList<ByteBuffer> data) { method in class:Image
458 public Image(Format format, int width, int height, ByteBuffer data) { method in class:Image
[all...]
/external/deqp/executor/
H A DxeTestCaseResult.hpp65 class Image;
241 class Image : public Item class in namespace:xe::ri
260 Image (void) : Item(TYPE_IMAGE), width(0), height(0), format(FORMAT_LAST), compression(COMPRESSION_LAST) {} function in class:xe::ri::Image
261 ~Image (void) {}
/external/deqp/modules/glshared/
H A DglsFboUtil.hpp202 struct Image : public Config struct in namespace:deqp::gls::FboUtil::config
209 Image (void) function in struct:deqp::gls::FboUtil::config::Image
215 struct Renderbuffer : public Image
222 struct Texture : public Image
266 bool isComplete (glw::GLenum attPoint, const Image* image,
300 glw::GLsizei imageNumSamples (const Image& img);
321 const Image* getImage (glw::GLenum type, glw::GLuint imgName) const;
408 const config::Image* image) = 0;
/external/pdfium/core/src/reflow/
H A Dreflowedpage.h299 typedef enum {Unknow, Text, Image, Path, Line, paragraph} RF_DataType; enumerator in enum:CRF_Data::__anon13356
343 m_Type = Image;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-jai.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/libpng/contrib/libtests/
H A Dpngstest.c544 /* THE Image STRUCTURE */
564 Image; typedef in typeref:struct:__anon9075
568 newimage(Image *image)
576 resetimage(Image *image)
586 freebuffer(Image *image)
598 freeimage(Image *image)
626 static void initimage(Image *image, png_uint_32 opts, const char *file_name,
641 allocbuffer(Image *image)
680 checkbuffer(Image *image, const char *arg)
701 logerror(Image *imag
[all...]
/external/mesa3d/include/CL/
H A Dcl.hpp1936 /*! \class Image
1939 class Image : public Memory class in namespace:cl
1942 Image() : Memory() { } function in class:cl::Image
1944 Image(const Image& image) : Memory(image) { } function in class:cl::Image
1946 Image& operator = (const Image& rhs)
1977 * \brief Image interface for 2D images.
1979 class Image2D : public Image
2004 Image2D(const Image2D& image2D) : Image(image2
[all...]

Completed in 963 milliseconds

12