HomeSort by relevance Sort by last modified time
    Searched full:graphicscontext (Results 251 - 275 of 580) sorted by null

<<11121314151617181920>>

  /external/webkit/Source/WebCore/rendering/
InlineTextBox.cpp 33 #include "GraphicsContext.h"
320 void updateGraphicsContext(GraphicsContext* context, const Color& fillColor, const Color& strokeColor, float strokeThickness, ColorSpace colorSpace)
363 FloatSize InlineTextBox::applyShadowToGraphicsContext(GraphicsContext* context, const ShadowData* shadow, const FloatRect& textRect, bool stroked, bool opaque, bool horizontal)
390 static void paintTextWithShadows(GraphicsContext* context, const Font& font, const TextRun& textRun, const AtomicString& emphasisMark, int emphasisMarkOffset, int startOffset, int endOffset, int truncationPoint, const FloatPoint& textOrigin,
515 GraphicsContext* context = paintInfo.context;
    [all...]
  /external/webkit/Source/WebCore/platform/
ScrollView.h 276 virtual void paint(GraphicsContext*, const IntRect&);
277 void paintScrollbars(GraphicsContext*, const IntRect&);
288 void paintPanScrollIcon(GraphicsContext*);
293 virtual void paintScrollCorner(GraphicsContext*, const IntRect& cornerRect);
307 virtual void paintContents(GraphicsContext*, const IntRect& damageRect) = 0;
310 virtual void paintOverhangAreas(GraphicsContext*, const IntRect& horizontalOverhangArea, const IntRect& verticalOverhangArea, const IntRect& dirtyRect);
  /external/webkit/Source/WebCore/platform/graphics/chromium/
TransparencyWin.cpp 35 #include "GraphicsContext.h"
52 inline SkCanvas* canvasForContext(const GraphicsContext& context)
57 inline const SkBitmap& bitmapForContext(const GraphicsContext& context)
62 void compositeToCopy(const GraphicsContext& sourceLayers,
63 GraphicsContext& destContext,
187 void TransparencyWin::init(GraphicsContext* dest,
ContentLayerChromium.h 45 // A Layer that requires a GraphicsContext to render its contents.
  /external/webkit/Source/WebCore/platform/graphics/qt/
FontQt.cpp 31 #include "GraphicsContext.h"
76 static void drawTextCommon(GraphicsContext* ctx, const TextRun& run, const FloatPoint& point, int from, int to, const QFont& font, bool isComplexText)
238 void Font::drawSimpleText(GraphicsContext* ctx, const TextRun& run, const FloatPoint& point, int from, int to) const
243 void Font::drawComplexText(GraphicsContext* ctx, const TextRun& run, const FloatPoint& point, int from, int to) const
266 void Font::drawEmphasisMarksForSimpleText(GraphicsContext* /* context */, const TextRun& /* run */, const AtomicString& /* mark */, const FloatPoint& /* point */, int /* from */, int /* to */) const
271 void Font::drawEmphasisMarksForComplexText(GraphicsContext* /* context */, const TextRun& /* run */, const AtomicString& /* mark */, const FloatPoint& /* point */, int /* from */, int /* to */) const
ImageBufferQt.cpp 32 #include "GraphicsContext.h"
106 m_context.set(new GraphicsContext(m_data.m_painter.get()));
118 GraphicsContext* ImageBuffer::context() const
135 void ImageBuffer::draw(GraphicsContext* destContext, ColorSpace styleColorSpace, const FloatRect& destRect, const FloatRect& srcRect,
146 void ImageBuffer::drawPattern(GraphicsContext* destContext, const FloatRect& srcRect, const AffineTransform& patternTransform,
157 void ImageBuffer::clip(GraphicsContext* context, const FloatRect& floatRect) const
PathQt.cpp 35 #include "GraphicsContext.h"
118 static GraphicsContext* scratchContext()
122 static GraphicsContext* context = new GraphicsContext(&painter);
131 GraphicsContext* context = scratchContext();
159 GraphicsContext* context = scratchContext();
ImageQt.cpp 39 #include "GraphicsContext.h"
104 void Image::drawPattern(GraphicsContext* ctxt, const FloatRect& tileRect, const AffineTransform& patternTransform,
204 void BitmapImage::draw(GraphicsContext* ctxt, const FloatRect& dst,
  /external/webkit/Source/WebCore/platform/graphics/skia/
ImageBufferSkia.cpp 41 #include "GraphicsContext.h"
77 m_context.set(new GraphicsContext(&m_data.m_platformContext));
91 GraphicsContext* ImageBuffer::context() const
112 void ImageBuffer::clip(GraphicsContext* context, const FloatRect& rect) const
117 void ImageBuffer::draw(GraphicsContext* context, ColorSpace styleColorSpace, const FloatRect& destRect, const FloatRect& srcRect,
140 void ImageBuffer::drawPattern(GraphicsContext* context, const FloatRect& srcRect, const AffineTransform& patternTransform,
  /external/webkit/Source/WebKit2/PluginProcess/
PluginControllerProxy.cpp 42 #include <WebCore/GraphicsContext.h>
150 OwnPtr<GraphicsContext> graphicsContext = m_backingStore->createGraphicsContext();
152 graphicsContext->translate(-m_frameRect.x(), -m_frameRect.y());
155 graphicsContext->clearRect(dirtyRect);
157 m_plugin->paint(graphicsContext.get(), dirtyRect);
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
DrawingAreaImpl.cpp 36 #include <WebCore/GraphicsContext.h>
595 OwnPtr<GraphicsContext> graphicsContext = bitmap->createGraphicsContext();
599 graphicsContext->translate(-bounds.x(), -bounds.y());
602 m_webPage->drawRect(*graphicsContext, rects[i]);
604 m_webPage->drawPageOverlay(*graphicsContext, rects[i]);
  /external/webkit/Source/WebCore/editing/
SelectionController.h 42 class GraphicsContext;
143 void paintCaret(GraphicsContext*, int tx, int ty, const IntRect& clipRect);
170 void paintDragCaret(GraphicsContext*, int tx, int ty, const IntRect& clipRect) const;
  /external/webkit/Source/WebCore/platform/graphics/
MediaPlayer.h 94 class GraphicsContext;
245 void paint(GraphicsContext*, const IntRect&);
246 void paintCurrentFrameInContext(GraphicsContext*, const IntRect&);
BitmapImage.h 105 friend class GraphicsContext;
184 virtual void drawFrameMatchingSourceSize(GraphicsContext*, const FloatRect& dstRect, const IntSize& srcSize, ColorSpace styleColorSpace, CompositeOperator);
186 virtual void draw(GraphicsContext*, const FloatRect& dstRect, const FloatRect& srcRect, ColorSpace styleColorSpace, CompositeOperator);
189 virtual void drawPattern(GraphicsContext*, const FloatRect& srcRect, const AffineTransform& patternTransform,
ContextShadow.cpp 34 #include "GraphicsContext.h"
86 bool ContextShadow::mustUseContextShadow(GraphicsContext* context)
181 void ContextShadow::adjustBlurDistance(GraphicsContext* context)
209 IntRect ContextShadow::calculateLayerBoundingRect(GraphicsContext* context, const FloatRect& layerArea, const IntRect& clipRect)
  /external/webkit/Source/WebCore/platform/graphics/chromium/cc/
CCHeadsUpDisplay.cpp 128 void CCHeadsUpDisplay::drawHudContents(GraphicsContext* ctx, const IntSize& hudSize)
150 void CCHeadsUpDisplay::drawFPSCounter(GraphicsContext* ctx, int top, int height)
206 void CCHeadsUpDisplay::drawPlatformLayerTree(GraphicsContext* ctx, int top)
  /external/webkit/Source/WebCore/platform/graphics/wx/
ImageWx.cpp 33 #include "GraphicsContext.h"
90 void BitmapImage::draw(GraphicsContext* ctxt, const FloatRect& dst, const FloatRect& src, ColorSpace styleColorSpace, CompositeOperator op)
180 void Image::drawPattern(GraphicsContext* ctxt, const FloatRect& srcRect, const AffineTransform& patternTransform, const FloatPoint& phase, ColorSpace, CompositeOperator, const FloatRect& dstRect)
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebChromeClient.h 29 #include <WebCore/GraphicsContext.h>
133 virtual bool paintCustomScrollbar(WebCore::GraphicsContext*, const WebCore::FloatRect&, WebCore::ScrollbarControlSize,
136 virtual bool paintCustomScrollCorner(WebCore::GraphicsContext*, const WebCore::FloatRect&);
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebChromeClient.h 159 virtual bool paintCustomScrollbar(WebCore::GraphicsContext*, const WebCore::FloatRect&, WebCore::ScrollbarControlSize,
162 virtual bool paintCustomScrollCorner(WebCore::GraphicsContext*, const WebCore::FloatRect&);
164 virtual bool paintCustomOverhangArea(WebCore::GraphicsContext*, const WebCore::IntRect&, const WebCore::IntRect&, const WebCore::IntRect&);
  /external/webkit/Source/WebCore/html/
HTMLVideoElement.h 65 void paintCurrentFrameInContext(GraphicsContext*, const IntRect&);
  /external/webkit/Source/WebCore/page/
ChromeClient.h 28 #include "GraphicsContext.h"
211 virtual bool paintCustomScrollbar(GraphicsContext*, const FloatRect&, ScrollbarControlSize,
214 virtual bool paintCustomScrollCorner(GraphicsContext*, const FloatRect&);
216 virtual bool paintCustomOverhangArea(GraphicsContext*, const IntRect&, const IntRect&, const IntRect&);
  /external/webkit/Source/WebCore/platform/chromium/
ScrollbarThemeChromiumMac.h 42 virtual bool paint(Scrollbar*, GraphicsContext* context, const IntRect& damageRect);
ScrollbarThemeChromiumWin.cpp 33 #include "GraphicsContext.h"
94 void ScrollbarThemeChromiumWin::paintTrackPiece(GraphicsContext* gc, Scrollbar* scrollbar, const IntRect& rect, ScrollbarPart partType)
116 void ScrollbarThemeChromiumWin::paintButton(GraphicsContext* gc, Scrollbar* scrollbar, const IntRect& rect, ScrollbarPart part)
134 void ScrollbarThemeChromiumWin::paintThumb(GraphicsContext* gc, Scrollbar* scrollbar, const IntRect& rect)
ThemeChromiumMac.h 54 virtual void paint(ControlPart, ControlStates, GraphicsContext*, const IntRect&, float zoomFactor, ScrollView*) const;
WidgetChromium.cpp 65 void Widget::paint(GraphicsContext*, const IntRect&)

Completed in 883 milliseconds

<<11121314151617181920>>