HomeSort by relevance Sort by last modified time
    Searched full:pixmap (Results 1 - 25 of 71) sorted by null

1 2 3

  /external/webkit/WebKit/qt/tests/hybridPixmap/
test.html 10 var pxm = myWidget.pixmap;
18 myWidget.compare(obj.toString(),"[Qt Native Pixmap "+obj.width+","+obj.height+"]");
19 myWidget.compare(String(pxm),"[Qt Native Pixmap "+pxm.width+","+pxm.height+"]");
47 img2.src = myWidget.pixmap.toDataUrl();
49 myWidget.pixmap = img;
widget.h 36 Q_PROPERTY(QPixmap pixmap READ pixmap WRITE setPixmap)
43 QPixmap pixmap() const;
widget.cpp 48 QCOMPARE(ui->lbl1->pixmap()->size(), ui->lbl2->size());
49 QCOMPARE(ui->lbl3->size(), ui->lbl4->pixmap()->size());
59 QPixmap Widget::pixmap() const function in class:Widget
113 emit imageSignal(ui->lbl4->pixmap()->toImage());
widget.ui 57 <string>Pixmap from Qt to HTML</string>
  /external/webkit/WebCore/platform/graphics/qt/
ImageQt.cpp 56 QPixmap pixmap; local
58 pixmap = QWebSettings::webGraphic(QWebSettings::MissingImageGraphic);
60 pixmap = QWebSettings::webGraphic(QWebSettings::MissingPluginGraphic);
62 pixmap = QWebSettings::webGraphic(QWebSettings::DefaultFrameIconGraphic);
64 pixmap = QWebSettings::webGraphic(QWebSettings::TextAreaSizeGripCornerGraphic);
66 pixmap = QWebSettings::webGraphic(QWebSettings::DeleteButtonGraphic);
68 return pixmap;
103 QPixmap pixmap = *framePixmap;
105 if (tr.x() || tr.y() || tr.width() != pixmap.width() || tr.height() != pixmap.height()
    [all...]
PatternQt.cpp 36 QPixmap* pixmap = tileImage()->nativeImageForCurrentFrame(); local
37 if (!pixmap)
41 QBrush brush(*pixmap);
StillImageQt.h 37 static PassRefPtr<StillImage> create(const QPixmap& pixmap)
39 return adoptRef(new StillImage(pixmap));
52 StillImage(const QPixmap& pixmap);
StillImageQt.cpp 38 StillImage::StillImage(const QPixmap& pixmap)
39 : m_pixmap(pixmap)
IconQt.cpp 60 QPixmap px = m_icon.pixmap(rect.size());
GraphicsLayerQt.cpp 60 // (b) QGraphicsOpacityEffect detaches the pixmap, which is inefficient on OpenGL.
63 // we need to do this so the pixmap would have hasAlpha()
74 // we have to use another intermediate pixmap, to make sure the mask applies only to this item
76 QPixmap pixmap(srcPixmap.size());
77 pixmap.fill(Qt::transparent);
79 if (pixmap.isNull())
82 QPainter pixmapPainter(&pixmap);
90 painter->drawPixmap(offset, pixmap);
175 QPixmap pixmap; member in struct:WebCore::GraphicsLayerQtImpl::ContentData
315 || (m_currentContent.contentType == PixmapContentType && !m_currentContent.pixmap.hasAlpha()))
    [all...]
GraphicsContextQt.cpp 171 : pixmap(rect.width(), rect.height())
174 pixmap.fill(Qt::transparent);
175 painter.begin(&pixmap);
192 QPixmap pixmap; member in struct:WebCore::TransparencyLayer
825 p->drawPixmap(layer->offset, layer->pixmap);
1229 QPixmap pixmap = QPixmap::fromWinHBITMAP(bitmap, supportAlphaBlend ? QPixmap::PremultipliedAlpha : QPixmap::NoAlpha); local
    [all...]
  /external/webkit/WebKit/qt/tests/benchmarks/painting/
tst_painting.cpp 100 QPixmap pixmap(m_page->viewportSize());
102 QPainter painter(&pixmap);
  /external/webkit/WebCore/plugins/gtk/
gtk2xtbin.h 137 Pixmap border_pixmap; /* window border pixmap or NULL */
146 Pixmap background_pixmap; /* window background pixmap or NULL */
  /frameworks/base/core/jni/
com_google_android_gles_jni_EGLImpl.cpp 298 egl_native_pixmap_t pixmap; local
299 pixmap.version = sizeof(pixmap);
300 pixmap.width = nativeBitmap->width();
301 pixmap.height = nativeBitmap->height();
302 pixmap.stride = nativeBitmap->rowBytes() / nativeBitmap->bytesPerPixel();
303 pixmap.format = convertPixelFormat(nativeBitmap->config());
304 pixmap.data = (uint8_t*)ref->pixels();
307 EGLSurface sur = eglCreatePixmapSurface(dpy, cnf, &pixmap, base);
  /external/qemu/android/skin/
surface.h 48 /* create a 'fast' surface that contains a copy of an input ARGB32 pixmap */
51 /* create an empty 'slow' surface containing an ARGB32 pixmap */
  /external/qemu/distrib/sdl-1.2.12/src/video/Xext/extensions/
xf86dga.h 95 Pixmap pixmap; member in struct:__anon4407
  /external/webkit/WebCore/platform/qt/
PasteboardQt.cpp 159 QPixmap* pixmap = image->nativeImageForCurrentFrame(); local
160 ASSERT(pixmap);
162 QApplication::clipboard()->setPixmap(*pixmap, QClipboard::Clipboard);
ClipboardQt.cpp 236 QPixmap *pixmap = cachedImage->image()->nativeImageForCurrentFrame();
237 if (pixmap)
238 m_writableData->setImageData(*pixmap);
MIMETypeRegistryQt.cpp 54 { "ppm", "image/x-portable-pixmap" },
  /external/qemu/distrib/sdl-1.2.12/src/video/x11/
SDL_x11sym.h 36 SDL_X11_SYM(Cursor,XCreatePixmapCursor,(Display* a,Pixmap b,Pixmap c,XColor* d,XColor* e,unsigned int f,unsigned int g),(a,b,c,d,e,f,g),return)
39 SDL_X11_SYM(Pixmap,XCreatePixmap,(Display* a,Drawable b,unsigned int c,unsigned int d,unsigned int e),(a,b,c,d,e),return)
40 SDL_X11_SYM(Pixmap,XCreatePixmapFromBitmapData,(Display* a,Drawable b,char* c,unsigned int d,unsigned int e,unsigned long f,unsigned long g,unsigned int h),(a,b,c,d,e,f,g,h),return)
61 SDL_X11_SYM(int,XFreePixmap,(Display* a,Pixmap b),(a,b),return)
109 SDL_X11_SYM(int,XSetWindowBackgroundPixmap,(Display* a,Window b,Pixmap c),(a,b,c),return)
SDL_x11wm.c 49 Pixmap icon_pixmap;
50 Pixmap mask_pixmap;
192 /* Transfer the image to an X11 pixmap */
212 seems) need an icon window *and* icon pixmap to work properly, while
213 it screws up others. The default is only to use a pixmap. */
225 /* Set the window icon to the icon pixmap (and icon window) */
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/include/xorg/
xf86str.h 559 /* flags for depth 24 pixmap options */
881 Pix24Flags pixmap24; /* pixmap pref for depth 24 */
958 DevUnion pixmapPrivate; /* saved devPrivate from pixmap */
1064 #define SupportConvert24to32 0x04 /* Can convert 24bpp pixmap to 32bpp */
1065 #define SupportConvert32to24 0x08 /* Can convert 32bpp pixmap to 24bpp */
1066 #define PreferConvert24to32 0x10 /* prefer 24bpp pixmap to 32bpp conv */
1067 #define PreferConvert32to24 0x20 /* prefer 32bpp pixmap to 24bpp conv */
    [all...]
  /external/webkit/WebCore/bridge/qt/
qt_pixmapruntime.cpp 57 virtual JSValue valueFromInstance(ExecState* exec, const Instance* pixmap) const
59 return jsNumber(exec, static_cast<const QtPixmapInstance*>(pixmap)->width());
246 const QString toStr = QString("[Qt Native Pixmap %1,%2]").arg(width()).arg(height());
  /external/webkit/WebKit/qt/Api/
qwebframe_p.h 118 QPixmap pixmap; member in class:QWebHitTestResultPrivate
  /frameworks/base/opengl/include/EGL/
eglplatform.h 86 typedef Pixmap EGLNativePixmapType;

Completed in 125 milliseconds

1 2 3