/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/UIProcess/API/mac/ |
FindIndicatorWindow.mm | 31 #import <WebCore/GraphicsContext.h> 58 GraphicsContext graphicsContext(static_cast<CGContextRef>([[NSGraphicsContext currentContext] graphicsPort])); 60 _findIndicator->draw(graphicsContext, enclosingIntRect(rect));
|
PageClientImpl.mm | 42 #import <WebCore/GraphicsContext.h> 335 return static_cast<CGContextRef>([[window graphicsContext] graphicsPort]);
|
/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]);
|
WebPage.cpp | 642 void WebPage::drawRect(GraphicsContext& graphicsContext, const IntRect& rect) 644 graphicsContext.save(); 645 graphicsContext.clip(rect); 646 m_mainFrame->coreFrame()->view()->paint(&graphicsContext, rect); 647 graphicsContext.restore(); 650 void WebPage::drawPageOverlay(GraphicsContext& graphicsContext, const IntRect& rect) 654 graphicsContext.save(); 655 graphicsContext.clip(rect) [all...] |
/external/webkit/Source/WebCore/platform/android/ |
RenderThemeAndroid.cpp | 31 #include "GraphicsContext.h" 102 static void drawLineForBoxSide(GraphicsContext* graphicsContext, int x1, int y1, 107 graphicsContext->setFillColor(color, graphicsContext->fillColorSpace()); 111 bool wasAntialiased = graphicsContext->shouldAntialias(); 112 graphicsContext->setShouldAntialias(antialias); 113 graphicsContext->drawRect(IntRect(x1, y1, x2 - x1, y2 - y1)); 114 graphicsContext->setShouldAntialias(wasAntialiased); 145 graphicsContext->drawConvexPolygon(4, quad, antialias) [all...] |
/external/webkit/Source/WebCore/platform/graphics/cg/ |
PathCG.cpp | 34 #include "GraphicsContext.h" 146 GraphicsContext gc(context); 178 GraphicsContext graphicsContext(context); 179 applier->strokeStyle(&graphicsContext);
|
/external/webkit/Source/WebCore/platform/efl/ |
ScrollbarEfl.cpp | 29 #include "GraphicsContext.h" 213 void ScrollbarEfl::paint(GraphicsContext* graphicsContext, const IntRect& damageRect)
|
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/mac/ |
WebDragClientMac.mm | 39 #import <WebCore/GraphicsContext.h> 81 OwnPtr<GraphicsContext> graphicsContext = bitmap->createGraphicsContext(); 85 [NSGraphicsContext setCurrentContext:[NSGraphicsContext graphicsContextWithGraphicsPort:graphicsContext->platformContext() flipped:YES]];
|
/external/webkit/Source/WebCore/rendering/ |
RenderScrollbar.cpp | 101 void RenderScrollbar::paint(GraphicsContext* context, const IntRect& damageRect) 273 void RenderScrollbar::paintPart(GraphicsContext* graphicsContext, ScrollbarPart partType, const IntRect& rect) 278 partRenderer->paintIntoRect(graphicsContext, x(), y(), rect);
|
RenderInline.cpp | 28 #include "GraphicsContext.h" [all...] |
RenderTableCell.cpp | 30 #include "GraphicsContext.h" [all...] |
/external/webkit/Source/WebCore/platform/mac/ |
DragImageMac.mm | 34 #import "GraphicsContext.h" 190 GraphicsContext graphicsContext(cgContext); 205 graphicsContext.setFillColor(makeRGBA(red * 255, green * 255, blue * 255, alpha * 255), ColorSpaceDeviceRGB); 207 webCoreFont.drawText(&graphicsContext, run, FloatPoint(point.x, (flipped ? point.y : (-1 * point.y))));
|
WidgetMac.mm | 40 #import "GraphicsContext.h" 232 void Widget::paint(GraphicsContext* p, const IntRect& r) 246 if (currentContext == [[view window] graphicsContext] || ![currentContext isDrawingToScreen]) {
|
/external/webkit/Source/WebKit/mac/Misc/ |
WebKitNSStringExtras.mm | 32 #import <WebCore/GraphicsContext.h> 85 GraphicsContext graphicsContext(cgContext); 100 graphicsContext.setFillColor(makeRGBA(red * 255, green * 255, blue * 255, alpha * 255), ColorSpaceDeviceRGB); 102 webCoreFont.drawText(&graphicsContext, run, FloatPoint(point.x, (flipped ? point.y : (-1 * point.y))));
|
/external/webkit/Source/WebCore/platform/graphics/chromium/ |
UniscribeHelper.cpp | 266 void UniscribeHelper::draw(GraphicsContext* graphicsContext, 272 bool useWindowsDrawing = windowsCanHandleTextDrawing(graphicsContext); 379 textOutOk = paintSkiaText(graphicsContext, [all...] |
/external/webkit/Source/WebCore/platform/graphics/wince/ |
FontWinCE.cpp | 38 #include "GraphicsContext.h" 65 void Font::drawGlyphs(GraphicsContext* graphicsContext, const SimpleFontData* fontData, const GlyphBuffer& glyphBuffer, 68 graphicsContext->drawText(fontData, glyphBuffer, from, numGlyphs, point); 208 void Font::drawComplexText(GraphicsContext* context, const TextRun& run, const FloatPoint& point, 238 void Font::drawEmphasisMarksForComplexText(GraphicsContext* /* context */, const TextRun& /* run */, const AtomicString& /* mark */, const FloatPoint& /* point */, int /* from */, int /* to */) const
|
/external/webkit/Tools/WinLauncher/ |
WinLauncher.cpp | 357 void* graphicsContext = 0; 360 framePrivate->spoolPages(printDC, page, page, graphicsContext);
|
/external/webkit/Source/WebCore/platform/graphics/ca/win/ |
PlatformCALayerWinInternal.cpp | 76 GraphicsContext graphicsContext(context); 82 owner()->owner()->platformCALayerPaintContents(graphicsContext, clip); 130 GraphicsContext cg(context);
|
/external/webkit/Source/WebKit/gtk/webkit/ |
webkitwebframe.cpp | 41 #include "GraphicsContext.h" 778 GraphicsContext graphicsContext(&platformContext); 779 corePrintContext->spoolPage(graphicsContext, pageNumber, pageWidth); [all...] |
/external/webkit/Source/WebCore/platform/graphics/android/ |
GraphicsLayerAndroid.cpp | 34 #include "GraphicsContext.h" 760 GraphicsContext graphicsContext(&platformContext); 764 paintGraphicsLayerContents(graphicsContext, layerBounds); 769 paintGraphicsLayerContents(graphicsContext, layerBounds); 834 void GraphicsLayerAndroid::paintContents(GraphicsContext* gc, IntRect& dirty) [all...] |
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/ |
WKBundlePage.h | 176 typedef void (*WKBundlePagePaintCustomOverhangAreaCallback)(WKBundlePageRef page, WKGraphicsContextRef graphicsContext, WKRect horizontalOverhang, WKRect verticalOverhang, WKRect dirtyRect, const void* clientInfo);
|
/external/webkit/Source/WebKit2/UIProcess/win/ |
WebView.cpp | [all...] |
/external/webkit/Source/WebKit/mac/Carbon/ |
HIWebView.mm | 332 [NSGraphicsContext setCurrentContext:[inView->fKitWindow graphicsContext]]; [all...] |
/external/webkit/Source/WebKit/mac/Plugins/ |
WebNetscapePluginView.mm | 445 if ([NSGraphicsContext currentContext] == [[self currentWindow] graphicsContext]) { 526 if ([NSGraphicsContext currentContext] == [[self currentWindow] graphicsContext]) { [all...] |