HomeSort by relevance Sort by last modified time
    Searched refs:graphicsContext (Results 1 - 15 of 15) 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 28 class GraphicsContext;
35 LocalCurrentGraphicsContext(GraphicsContext* graphicsContext);
39 GraphicsContext* m_savedGraphicsContext;
48 ContextContainer(GraphicsContext*);
  /external/chromium_org/third_party/WebKit/Source/core/page/
PrintContext.cpp 27 #include "platform/graphics/GraphicsContext.h"
174 void PrintContext::spoolPage(GraphicsContext& ctx, int pageNumber, float width)
259 void PrintContext::outputLinkedDestinations(GraphicsContext& graphicsContext, Node* node, const IntRect& pageRect)
274 graphicsContext.addURLTargetAtPoint(it->key, point);
334 void PrintContext::spoolAllPagesWithBoundaries(LocalFrame* frame, GraphicsContext& graphicsContext, const FloatSize& pageSizeInPixels)
352 graphicsContext.setFillColor(Color(255, 255, 255));
353 graphicsContext.fillRect(FloatRect(0, 0, pageWidth, totalHeight));
355 graphicsContext.save()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollbarTheme.cpp 32 #include "platform/graphics/GraphicsContext.h"
50 bool ScrollbarTheme::paint(ScrollbarThemeClient* scrollbar, GraphicsContext* graphicsContext, const IntRect& damageRect)
93 paintScrollbarBackground(graphicsContext, scrollbar);
97 paintButton(graphicsContext, scrollbar, backButtonStartPaintRect, BackButtonStartPart);
99 paintButton(graphicsContext, scrollbar, backButtonEndPaintRect, BackButtonEndPart);
101 paintButton(graphicsContext, scrollbar, forwardButtonStartPaintRect, ForwardButtonStartPart);
103 paintButton(graphicsContext, scrollbar, forwardButtonEndPaintRect, ForwardButtonEndPart);
106 paintTrackBackground(graphicsContext, scrollbar, trackPaintRect);
111 paintTrackPiece(graphicsContext, scrollbar, startTrackRect, BackTrackPart)
    [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 103 InterpolationQuality RenderBoxModelObject::chooseInterpolationQuality(GraphicsContext* context, Image* image, const void* layer, const LayoutSize& size)
445 void RenderBoxModelObject::clipRoundedInnerRect(GraphicsContext * context, const LayoutRect& rect, const RoundedRect& clipRect)
479 static LayoutRect shrinkRectByOnePixel(GraphicsContext* context, const LayoutRect& rect)
488 LayoutRect RenderBoxModelObject::borderInnerRectAdjustedForBleedAvoidance(GraphicsContext* context, const LayoutRect& rect, BackgroundBleedAvoidance bleedAvoidance) const
494 RoundedRect RenderBoxModelObject::backgroundRoundedRectAdjustedForBleedAvoidance(GraphicsContext* context, const LayoutRect& borderRect, BackgroundBleedAvoidance bleedAvoidance, InlineFlowBox* box, const LayoutSize& boxSize, bool includeLogicalLeftEdge, bool includeLogicalRightEdge) const
506 static void applyBoxShadowForBackground(GraphicsContext* context, const RenderObject* renderer)
524 GraphicsContext* context = paintInfo.context;
    [all...]
RenderObject.cpp 84 #include "platform/graphics/GraphicsContext.h"
960 void RenderObject::drawLineForBoxSide(GraphicsContext* graphicsContext, int x1, int y1, int x2, int y2,
    [all...]
RenderFieldset.cpp 171 GraphicsContext* graphicsContext = paintInfo.context;
172 GraphicsContextStateSaver stateSaver(*graphicsContext);
180 graphicsContext->clipOut(pixelSnappedIntRect(paintRect.x() + legend->x(), clipTop, legend->width(), clipHeight));
184 graphicsContext->clipOut(pixelSnappedIntRect(clipLeft, paintRect.y() + legend->y(), clipWidth, legend->height()));
RenderScrollbarPart.cpp 174 void RenderScrollbarPart::paintIntoRect(GraphicsContext* graphicsContext, const LayoutPoint& paintOffset, const LayoutRect& rect)
181 if (graphicsContext->paintingDisabled())
185 PaintInfo paintInfo(graphicsContext, pixelSnappedIntRect(rect), PaintPhaseBlockBackground, PaintBehaviorNormal);
RenderInline.cpp 42 #include "platform/graphics/GraphicsContext.h"
    [all...]
RenderScrollbar.cpp 35 #include "platform/graphics/GraphicsContext.h"
113 void RenderScrollbar::paint(GraphicsContext* context, const IntRect& damageRect)
268 void RenderScrollbar::paintPart(GraphicsContext* graphicsContext, ScrollbarPart partType, const IntRect& rect)
273 partRenderer->paintIntoRect(graphicsContext, location(), rect);
RenderTableCell.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebLocalFrameImpl.cpp 143 #include "platform/graphics/GraphicsContext.h"
325 virtual float spoolPage(GraphicsContext& context, int pageNumber)
343 void spoolAllPagesWithBoundaries(GraphicsContext& graphicsContext, const FloatSize& pageSizeInPixels)
358 graphicsContext.setFillColor(Color::white);
359 graphicsContext.fillRect(FloatRect(0, 0, pageWidth, totalHeight));
365 graphicsContext.save();
366 graphicsContext.setStrokeColor(Color(0, 0, 255));
367 graphicsContext.setFillColor(Color(0, 0, 255));
368 graphicsContext.drawLine(IntPoint(0, currentHeight), IntPoint(pageWidth, currentHeight))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
Shape.cpp 42 #include "platform/graphics/GraphicsContext.h"
186 GraphicsContext* graphicsContext = imageBuffer->context();
187 graphicsContext->drawImage(image, IntRect(IntPoint(), imageRect.size()));
  /prebuilts/tools/darwin-x86_64/swt/
swt.jar 

Completed in 663 milliseconds