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

  /external/webkit/WebCore/platform/graphics/mac/
GraphicsContextMac.mm 46 static void drawFocusRingToContext(CGContextRef context, RetainPtr<CGPathRef> focusRingPath, RetainPtr<CGColorRef> colorRef, int radius)
52 CGContextAddPath(context, focusRingPath.get());
70 RetainPtr<CGMutablePathRef> focusRingPath(AdoptCF, CGPathCreateMutable());
73 CGPathAddPath(focusRingPath.get(), 0, paths[i].platformPath());
75 drawFocusRingToContext(platformContext(), focusRingPath, colorRef, radius);
89 RetainPtr<CGMutablePathRef> focusRingPath(AdoptCF, CGPathCreateMutable());
92 CGPathAddRect(focusRingPath.get(), 0, CGRectInset(rects[i], -offset, -offset));
94 drawFocusRingToContext(platformContext(), focusRingPath, colorRef, radius);
  /external/webkit/WebCore/platform/graphics/win/
GraphicsContextCGWin.cpp 141 CGMutablePathRef focusRingPath = CGPathCreateMutable();
144 CGPathAddRect(focusRingPath, 0, CGRectInset(rects[i], -offset, -offset));
150 CGContextAddPath(context, focusRingPath);
156 CGPathRelease(focusRingPath);

Completed in 439 milliseconds