Searched defs:transparent (Results 1 - 21 of 21) sorted by relevance

/external/quake/quake/src/QW/client/
H A Dd_init.c70 void D_CopyRects (vrect_t *prects, int transparent) argument
80 UNUSED(transparent);
H A Ddraw.c128 Draws one 8*8 graphics character with 0 being transparent.
742 int transparent)
753 if (transparent)
791 int transparent)
805 if (transparent)
741 R_DrawRect8(vrect_t *prect, int rowbytes, byte *psrc, int transparent) argument
790 R_DrawRect16(vrect_t *prect, int rowbytes, byte *psrc, int transparent) argument
/external/quake/quake/src/WinQuake/
H A Dd_init.cpp70 void D_CopyRects (vrect_t *prects, int transparent) argument
80 UNUSED(transparent);
H A Ddraw.cpp130 Draws one 8*8 graphics character with 0 being transparent.
631 int transparent)
642 if (transparent)
680 int transparent)
694 if (transparent)
630 R_DrawRect8(vrect_t *prect, int rowbytes, byte *psrc, int transparent) argument
679 R_DrawRect16(vrect_t *prect, int rowbytes, byte *psrc, int transparent) argument
/external/webkit/Source/WebCore/platform/graphics/
H A DColor.cpp45 const RGBA32 Color::transparent; member in class:WebCore::Color
H A DColor.h163 static const RGBA32 transparent = 0x00000000; member in class:WebCore::Color
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DTextureMapperQt.cpp47 m_pixmap.fill(Qt::transparent);
55 m_painter.fillRect(QRect(dirtyRect), Qt::transparent); member in class:WebCore::Qt
146 intermediatePixmap.fill(Qt::transparent);
/external/webkit/Source/WebKit/gtk/webkit/
H A Dwebkitwebviewprivate.h70 gboolean transparent; member in struct:_WebKitWebViewPrivate
H A Dwebkitwebview.cpp632 static void paintWebView(Frame* frame, gboolean transparent, GraphicsContext& context, const IntRect& clipRect, const Vector<IntRect>& rects) argument
641 if (transparent)
649 if (transparent)
682 paintWebView(frame, priv->transparent, gc, static_cast<IntRect>(event->area), paintRects);
710 paintWebView(frame, priv->transparent, gc, rect, rects);
3075 g_param_spec_boolean("transparent",
3077 _("Whether content has a transparent background"),
4422 * Returns whether the #WebKitWebView has a transparent background.
4432 return priv->transparent;
4439 * Sets whether the #WebKitWebView has a transparent backgroun
[all...]
/external/qemu/distrib/zlib-1.2.3/
H A Dgzio.c66 int transparent; /* 1 if input file is not a .gz file */ member in struct:gz_stream
125 s->transparent = 0;
281 mode to transparent if the gzip magic header is not present; set s->err
308 s->transparent = s->stream.avail_in;
316 s->transparent = 1;
427 if (s->transparent) {
814 if (s->transparent) {
870 if (!s->transparent) (void)inflateReset(&s->stream);
914 return s->transparent;
/external/skia/src/images/
H A DSkMovie_gif.cpp121 int transparent, int width)
124 if (*src != transparent) {
132 const ColorMapObject* cmap, int transparent, int copyWidth,
140 copyLine(dst, src, cmap, transparent, copyWidth);
149 int transparent)
167 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 8, 0);
170 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 8, 4);
173 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 4, 2);
175 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 2, 1);
179 int transparent)
120 copyLine(uint32_t* dst, const unsigned char* src, const ColorMapObject* cmap, int transparent, int width) argument
131 copyInterlaceGroup(SkBitmap* bm, const unsigned char*& src, const ColorMapObject* cmap, int transparent, int copyWidth, int copyHeight, const GifImageDesc& imageDesc, int rowStep, int startRow) argument
148 blitInterlace(SkBitmap* bm, const SavedImage* frame, const ColorMapObject* cmap, int transparent) argument
178 blitNormal(SkBitmap* bm, const SavedImage* frame, const ColorMapObject* cmap, int transparent) argument
229 int transparent = -1; local
[all...]
/external/zlib/
H A Dgzio.c66 int transparent; /* 1 if input file is not a .gz file */ member in struct:gz_stream
125 s->transparent = 0;
281 mode to transparent if the gzip magic header is not present; set s->err
308 s->transparent = s->stream.avail_in;
316 s->transparent = 1;
427 if (s->transparent) {
814 if (s->transparent) {
870 if (!s->transparent) (void)inflateReset(&s->stream);
914 return s->transparent;
/external/webkit/Source/WebKit/win/
H A DWebView.h736 /* [in] */ BOOL transparent);
738 virtual HRESULT STDMETHODCALLTYPE transparent(
739 /* [out, retval] */ BOOL* transparent);
861 bool transparent() const { return m_transparent; } function in class:WebView
/external/webkit/Source/WebCore/page/
H A DFrame.cpp846 const Color& backgroundColor, bool transparent,
874 frameView->updateBackgroundRecursively(backgroundColor, transparent);
845 createView(const IntSize& viewportSize, const Color& backgroundColor, bool transparent, const IntSize& fixedLayoutSize, bool useFixedLayout, ScrollbarMode horizontalScrollbarMode, bool horizontalLock, ScrollbarMode verticalScrollbarMode, bool verticalLock) argument
H A DFrameView.cpp1907 void FrameView::updateBackgroundRecursively(const Color& backgroundColor, bool transparent) argument
1911 view->setTransparent(transparent);
2384 fillWithRed = false; // Selections are transparent, don't fill with red.
2386 fillWithRed = false; // Element images are transparent, don't fill with red.
/external/webkit/Source/WebKit/win/WebCoreSupport/
H A DWebFrameLoaderClient.cpp737 bool transparent = view->transparent(); local
738 Color backgroundColor = transparent ? Color::transparent : Color::white;
739 core(m_webFrame)->createView(IntRect(rect).size(), backgroundColor, transparent, IntSize(), false);
/external/webkit/Source/WebKit/wx/
H A DWebView.cpp518 void wxWebView::SetTransparent(bool transparent) argument
527 frame->view()->setTransparent(transparent);
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DFrameLoaderClientGtk.cpp1401 bool transparent = webkit_web_view_get_transparent(containingWindow); local
1402 Color backgroundColor = transparent ? WebCore::Color::transparent : WebCore::Color::white;
1406 frame->createView(size, backgroundColor, transparent, IntSize(), false);
/external/webkit/Source/WebKit/wx/WebKitSupport/
H A DFrameLoaderClientWx.cpp967 bool transparent = false; local
968 Color backgroundColor = transparent ? WebCore::Color::transparent : WebCore::Color::white;
971 m_frame->createView(size, backgroundColor, transparent, IntSize(), false);
/external/kernel-headers/original/linux/
H A Dpci.h158 unsigned int transparent:1; /* Transparent PCI bridge */ member in struct:pci_dev
/external/webkit/Source/WebCore/inspector/front-end/
H A DColor.js287 // Special Values - Advanced but Must Be Parsed First - transparent
660 "transparent": [[0, 0, 0, 0], [0, 0, 0, 0], "transparent"],
661 "rgba(0,0,0,0)": [[0, 0, 0, 0], [0, 0, 0, 0], "transparent"],
662 "hsla(0,0,0,0)": [[0, 0, 0, 0], [0, 0, 0, 0], "transparent"],

Completed in 996 milliseconds