HomeSort by relevance Sort by last modified time
    Searched refs:graphicsContext (Results 1 - 17 of 17) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/platform/mac/
LocalCurrentGraphicsContext.mm 24 #include "core/platform/graphics/GraphicsContext.h"
29 LocalCurrentGraphicsContext::LocalCurrentGraphicsContext(GraphicsContext* graphicsContext)
31 , m_skiaBitLocker(graphicsContext->canvas())
33 m_savedGraphicsContext = graphicsContext;
34 graphicsContext->save();
67 ContextContainer::ContextContainer(GraphicsContext* graphicsContext)
68 : m_skiaBitLocker(graphicsContext->canvas())
LocalCurrentGraphicsContext.h 20 #include "core/platform/graphics/GraphicsContext.h"
34 LocalCurrentGraphicsContext(GraphicsContext* graphicsContext);
38 GraphicsContext* m_savedGraphicsContext;
47 ContextContainer(GraphicsContext*);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
FontChromiumWin.cpp 38 #include "core/platform/graphics/GraphicsContext.h"
60 void Font::drawGlyphs(GraphicsContext* graphicsContext,
68 SkColor color = graphicsContext->effectiveFillColor();
71 if (!alpha && graphicsContext->strokeStyle() == NoStroke && !graphicsContext->hasShadow())
89 AffineTransform savedMatrix = graphicsContext->getCTM();
90 graphicsContext->concatCTM(AffineTransform(0, -1, 1, 0, point.x(), point.y()));
91 graphicsContext->concatCTM(AffineTransform(1, 0, 0, 1, -point.x(), -point.y()));
115 paintSkiaText(graphicsContext, font->platformData(), curLen, &glyphs[0], &advances[0], &offsets[0], origin, SkRect(textRect))
    [all...]
UniscribeHelper.h 49 class GraphicsContext;
200 void draw(GraphicsContext* graphicsContext, HDC dc,
UniscribeHelper.cpp 36 #include "core/platform/graphics/GraphicsContext.h"
327 void UniscribeHelper::draw(GraphicsContext* graphicsContext, HDC dc,
425 paintSkiaText(graphicsContext,
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
PrintContext.cpp 26 #include "core/platform/graphics/GraphicsContext.h"
193 void PrintContext::spoolPage(GraphicsContext& ctx, int pageNumber, float width)
209 void PrintContext::spoolRect(GraphicsContext& ctx, const IntRect& rect)
288 void PrintContext::outputLinkedDestinations(GraphicsContext& graphicsContext, Node* node, const IntRect& pageRect)
303 graphicsContext.addURLTargetAtPoint(it->key, point);
363 void PrintContext::spoolAllPagesWithBoundaries(Frame* frame, GraphicsContext& graphicsContext, const FloatSize& pageSizeInPixels)
381 graphicsContext.setFillColor(Color(255, 255, 255));
382 graphicsContext.fillRect(FloatRect(0, 0, pageWidth, totalHeight))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/
ScrollbarTheme.cpp 31 #include "core/platform/graphics/GraphicsContext.h"
45 bool ScrollbarTheme::paint(ScrollbarThemeClient* scrollbar, GraphicsContext* graphicsContext, const IntRect& damageRect)
88 paintScrollbarBackground(graphicsContext, scrollbar);
92 paintButton(graphicsContext, scrollbar, backButtonStartPaintRect, BackButtonStartPart);
94 paintButton(graphicsContext, scrollbar, backButtonEndPaintRect, BackButtonEndPart);
96 paintButton(graphicsContext, scrollbar, forwardButtonStartPaintRect, ForwardButtonStartPart);
98 paintButton(graphicsContext, scrollbar, forwardButtonEndPaintRect, ForwardButtonEndPart);
101 paintTrackBackground(graphicsContext, scrollbar, trackPaintRect);
106 paintTrackPiece(graphicsContext, scrollbar, startTrackRect, BackTrackPart)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
CrossfadeGeneratedImage.cpp 46 void CrossfadeGeneratedImage::drawCrossfade(GraphicsContext* context)
83 void CrossfadeGeneratedImage::draw(GraphicsContext* context, const FloatRect& dstRect, const FloatRect& srcRect, CompositeOperator compositeOp, BlendMode blendMode)
96 void CrossfadeGeneratedImage::drawPattern(GraphicsContext* context, const FloatRect& srcRect, const FloatSize& scale, const FloatPoint& phase, CompositeOperator compositeOp, const FloatRect& dstRect, BlendMode blendMode)
103 GraphicsContext* graphicsContext = imageBuffer->context();
104 drawCrossfade(graphicsContext);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderBoxModelObject.cpp 151 bool RenderBoxModelObject::shouldPaintAtLowQuality(GraphicsContext* context, Image* image, const void* layer, const LayoutSize& size)
453 void RenderBoxModelObject::clipRoundedInnerRect(GraphicsContext * context, const LayoutRect& rect, const RoundedRect& clipRect)
485 static LayoutRect shrinkRectByOnePixel(GraphicsContext* context, const LayoutRect& rect)
494 LayoutRect RenderBoxModelObject::borderInnerRectAdjustedForBleedAvoidance(GraphicsContext* context, const LayoutRect& rect, BackgroundBleedAvoidance bleedAvoidance) const
500 RoundedRect RenderBoxModelObject::backgroundRoundedRectAdjustedForBleedAvoidance(GraphicsContext* context, const LayoutRect& borderRect, BackgroundBleedAvoidance bleedAvoidance, InlineFlowBox* box, const LayoutSize& boxSize, bool includeLogicalLeftEdge, bool includeLogicalRightEdge) const
512 static void applyBoxShadowForBackground(GraphicsContext* context, const RenderObject* renderer)
526 GraphicsContext* context = paintInfo.context;
    [all...]
RenderFieldset.cpp 170 GraphicsContext* graphicsContext = paintInfo.context;
171 GraphicsContextStateSaver stateSaver(*graphicsContext);
179 graphicsContext->clipOut(pixelSnappedIntRect(paintRect.x() + legend->x(), clipTop, legend->width(), clipHeight));
183 graphicsContext->clipOut(pixelSnappedIntRect(clipLeft, paintRect.y() + legend->y(), clipWidth, legend->height()));
RenderObject.cpp 51 #include "core/platform/graphics/GraphicsContext.h"
893 void RenderObject::drawLineForBoxSide(GraphicsContext* graphicsContext, int x1, int y1, int x2, int y2,
922 bool wasAntialiased = graphicsContext->shouldAntialias();
923 StrokeStyle oldStrokeStyle = graphicsContext->strokeStyle();
924 graphicsContext->setShouldAntialias(antialias);
925 graphicsContext->setStrokeColor(color);
926 graphicsContext->setStrokeThickness(thickness);
927 graphicsContext->setStrokeStyle(style == DASHED ? DashedStroke : DottedStroke);
932 graphicsContext->drawLine(IntPoint(x1, (y1 + y2) / 2), IntPoint(x2, (y1 + y2) / 2))
    [all...]
RenderScrollbarPart.cpp 176 void RenderScrollbarPart::paintIntoRect(GraphicsContext* graphicsContext, const LayoutPoint& paintOffset, const LayoutRect& rect)
183 if (graphicsContext->paintingDisabled())
187 PaintInfo paintInfo(graphicsContext, pixelSnappedIntRect(rect), PaintPhaseBlockBackground, PaintBehaviorNormal);
RenderInline.cpp 31 #include "core/platform/graphics/GraphicsContext.h"
    [all...]
RenderScrollbar.cpp 112 void RenderScrollbar::paint(GraphicsContext* context, const IntRect& damageRect)
267 void RenderScrollbar::paintPart(GraphicsContext* graphicsContext, ScrollbarPart partType, const IntRect& rect)
272 partRenderer->paintIntoRect(graphicsContext, location(), rect);
RenderTableCell.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebFrameImpl.cpp 166 #include "core/platform/graphics/GraphicsContext.h"
332 virtual float spoolPage(GraphicsContext& context, int pageNumber)
350 void spoolAllPagesWithBoundaries(GraphicsContext& graphicsContext, const FloatSize& pageSizeInPixels)
365 graphicsContext.setFillColor(Color::white);
366 graphicsContext.fillRect(FloatRect(0, 0, pageWidth, totalHeight));
368 graphicsContext.save();
374 graphicsContext.save();
375 graphicsContext.setStrokeColor(Color(0, 0, 255));
376 graphicsContext.setFillColor(Color(0, 0, 255))
    [all...]
  /prebuilts/tools/darwin-x86_64/swt/
swt.jar 

Completed in 229 milliseconds