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/platform/mac/
LocalCurrentGraphicsContext.mm 24 #include "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 "platform/graphics/GraphicsContext.h"
34 LocalCurrentGraphicsContext(GraphicsContext* graphicsContext);
38 GraphicsContext* m_savedGraphicsContext;
47 ContextContainer(GraphicsContext*);
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/win/
FontWin.cpp 42 #include "platform/graphics/GraphicsContext.h"
60 void Font::drawGlyphs(GraphicsContext* graphicsContext,
65 SkColor color = graphicsContext->effectiveFillColor();
68 if (!alpha && graphicsContext->strokeStyle() == NoStroke && !graphicsContext->hasShadow())
86 AffineTransform savedMatrix = graphicsContext->getCTM();
87 graphicsContext->concatCTM(AffineTransform(0, -1, 1, 0, point.x(), point.y()));
88 graphicsContext->concatCTM(AffineTransform(1, 0, 0, 1, -point.x(), -point.y()));
112 paintSkiaText(graphicsContext, font->platformData(), curLen, &glyphs[0], &advances[0], &offsets[0], origin, SkRect(textRect))
    [all...]
UniscribeHelper.cpp 37 #include "platform/graphics/GraphicsContext.h"
347 void UniscribeHelper::draw(GraphicsContext* graphicsContext,
444 paintSkiaText(graphicsContext,
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
PrintContext.cpp 27 #include "platform/graphics/GraphicsContext.h"
192 void PrintContext::spoolPage(GraphicsContext& ctx, int pageNumber, float width)
208 void PrintContext::spoolRect(GraphicsContext& ctx, const IntRect& rect)
287 void PrintContext::outputLinkedDestinations(GraphicsContext& graphicsContext, Node* node, const IntRect& pageRect)
302 graphicsContext.addURLTargetAtPoint(it->key, point);
362 void PrintContext::spoolAllPagesWithBoundaries(Frame* frame, GraphicsContext& graphicsContext, const FloatSize& pageSizeInPixels)
380 graphicsContext.setFillColor(Color(255, 255, 255));
381 graphicsContext.fillRect(FloatRect(0, 0, pageWidth, totalHeight))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollbarTheme.cpp 62 bool ScrollbarTheme::paint(ScrollbarThemeClient* scrollbar, GraphicsContext* graphicsContext, const IntRect& damageRect)
105 paintScrollbarBackground(graphicsContext, scrollbar);
109 paintButton(graphicsContext, scrollbar, backButtonStartPaintRect, BackButtonStartPart);
111 paintButton(graphicsContext, scrollbar, backButtonEndPaintRect, BackButtonEndPart);
113 paintButton(graphicsContext, scrollbar, forwardButtonStartPaintRect, ForwardButtonStartPart);
115 paintButton(graphicsContext, scrollbar, forwardButtonEndPaintRect, ForwardButtonEndPart);
118 paintTrackBackground(graphicsContext, scrollbar, trackPaintRect);
123 paintTrackPiece(graphicsContext, scrollbar, startTrackRect, BackTrackPart);
125 paintTrackPiece(graphicsContext, scrollbar, endTrackRect, ForwardTrackPart)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
CrossfadeGeneratedImage.cpp 46 void CrossfadeGeneratedImage::drawCrossfade(GraphicsContext* context)
87 void CrossfadeGeneratedImage::draw(GraphicsContext* context, const FloatRect& dstRect, const FloatRect& srcRect, CompositeOperator compositeOp, blink::WebBlendMode blendMode)
100 void CrossfadeGeneratedImage::drawPattern(GraphicsContext* context, const FloatRect& srcRect, const FloatSize& scale, const FloatPoint& phase, CompositeOperator compositeOp, const FloatRect& dstRect, blink::WebBlendMode blendMode, const IntSize& repeatSpacing)
107 GraphicsContext* graphicsContext = imageBuffer->context();
108 drawCrossfade(graphicsContext);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderBoxModelObject.cpp 145 bool RenderBoxModelObject::shouldPaintAtLowQuality(GraphicsContext* context, Image* image, const void* layer, const LayoutSize& size)
445 void RenderBoxModelObject::clipRoundedInnerRect(GraphicsContext * context, const LayoutRect& rect, const RoundedRect& clipRect)
477 static LayoutRect shrinkRectByOnePixel(GraphicsContext* context, const LayoutRect& rect)
486 LayoutRect RenderBoxModelObject::borderInnerRectAdjustedForBleedAvoidance(GraphicsContext* context, const LayoutRect& rect, BackgroundBleedAvoidance bleedAvoidance) const
492 RoundedRect RenderBoxModelObject::backgroundRoundedRectAdjustedForBleedAvoidance(GraphicsContext* context, const LayoutRect& borderRect, BackgroundBleedAvoidance bleedAvoidance, InlineFlowBox* box, const LayoutSize& boxSize, bool includeLogicalLeftEdge, bool includeLogicalRightEdge) const
504 static void applyBoxShadowForBackground(GraphicsContext* context, const RenderObject* renderer)
522 GraphicsContext* context = paintInfo.context;
    [all...]
RenderObject.cpp 85 #include "platform/graphics/GraphicsContext.h"
901 void RenderObject::drawLineForBoxSide(GraphicsContext* graphicsContext, int x1, int y1, int x2, int y2,
929 drawDashedOrDottedBoxSide(graphicsContext, x1, y1, x2, y2, side,
933 drawDoubleBoxSide(graphicsContext, x1, y1, x2, y2, length, side, color,
938 drawRidgeOrGrooveBoxSide(graphicsContext, x1, y1, x2, y2, side, color,
952 drawSolidBoxSide(graphicsContext, x1, y1, x2, y2, side, color, adjacentWidth1, adjacentWidth2, antialias);
957 void RenderObject::drawDashedOrDottedBoxSide(GraphicsContext* graphicsContext, int x1, int y1, int x2, int y2,
963 bool wasAntialiased = graphicsContext->shouldAntialias()
    [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()));
RenderScrollbarPart.cpp 177 void RenderScrollbarPart::paintIntoRect(GraphicsContext* graphicsContext, const LayoutPoint& paintOffset, const LayoutRect& rect)
184 if (graphicsContext->paintingDisabled())
188 PaintInfo paintInfo(graphicsContext, pixelSnappedIntRect(rect), PaintPhaseBlockBackground, PaintBehaviorNormal);
RenderInline.cpp 43 #include "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 178 #include "platform/graphics/GraphicsContext.h"
324 virtual float spoolPage(GraphicsContext& context, int pageNumber)
342 void spoolAllPagesWithBoundaries(GraphicsContext& graphicsContext, const FloatSize& pageSizeInPixels)
357 graphicsContext.setFillColor(Color::white);
358 graphicsContext.fillRect(FloatRect(0, 0, pageWidth, totalHeight));
360 graphicsContext.save();
366 graphicsContext.save();
367 graphicsContext.setStrokeColor(Color(0, 0, 255));
368 graphicsContext.setFillColor(Color(0, 0, 255))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
Shape.cpp 224 GraphicsContext* graphicsContext = imageBuffer->context();
225 graphicsContext->drawImage(image, IntPoint());
  /prebuilts/tools/darwin-x86_64/swt/
swt.jar 

Completed in 1306 milliseconds