Home
last modified time | relevance | path

Searched refs:lineRect (Results 1 – 8 of 8) sorted by relevance

/external/webkit/Source/WebKit/mac/WebView/
DWebHTMLViewPrivate.h47 - (NSRect)highlightRectForLine:(NSRect)lineRect representedNode:(DOMNode *)node;
48 - (void)paintHighlightForBox:(NSRect)boxRect onLine:(NSRect)lineRect behindText:(BOOL)text entireLi…
/external/webkit/Source/WebKit/mac/WebCoreSupport/
DWebChromeClient.h133 const WebCore::FloatRect& lineRect);
135 const WebCore::FloatRect& boxRect, const WebCore::FloatRect& lineRect,
DWebChromeClient.mm743 …bChromeClient::customHighlightRect(Node* node, const AtomicString& type, const FloatRect& lineRect)
753 return [highlighter highlightRectForLine:lineRect representedNode:kit(node)];
760 …ighlight(Node* node, const AtomicString& type, const FloatRect& boxRect, const FloatRect& lineRect,
771 …[highlighter paintHighlightForBox:boxRect onLine:lineRect behindText:behindText entireLine:entireL…
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
DWebChromeClient.h152 …omHighlightRect(WebCore::Node*, const WTF::AtomicString& type, const WebCore::FloatRect& lineRect);
153 …nst WTF::AtomicString& type, const WebCore::FloatRect& boxRect, const WebCore::FloatRect& lineRect,
DWebChromeClient.cpp533 …ct WebChromeClient::customHighlightRect(Node*, const AtomicString& type, const FloatRect& lineRect) in customHighlightRect() argument
539 …stomHighlight(Node*, const AtomicString& type, const FloatRect& boxRect, const FloatRect& lineRect, in paintCustomHighlight() argument
/external/webkit/Source/WebCore/page/
DChromeClient.h204 … virtual FloatRect customHighlightRect(Node*, const AtomicString& type, const FloatRect& lineRect);
205 …stomHighlight(Node*, const AtomicString& type, const FloatRect& boxRect, const FloatRect& lineRect,
/external/webkit/Source/WebCore/platform/graphics/cg/
DGraphicsContextCG.cpp1249 …CGRect lineRect = roundToDevicePixels(FloatRect(x, y, lineLength, adjustedThickness), RoundOriginA… in drawLineForText() local
1250 if (lineRect.size.height < thickness * 2.0) { in drawLineForText()
1251 x = lineRect.origin.x; in drawLineForText()
1252 y = lineRect.origin.y; in drawLineForText()
1253 lineLength = lineRect.size.width; in drawLineForText()
1254 thickness = lineRect.size.height; in drawLineForText()
/external/webkit/Source/WebCore/platform/graphics/wince/
DGraphicsContextWinCE.cpp682 IntRect lineRect(trPoint1, trPoint2 - trPoint1); in drawLine() local
683 lineRect.setHeight(lineRect.height() + strokeThickness()); in drawLine()
684 TransparentLayerDC transparentDC(m_data, lineRect, 0, strokeColor().alpha()); in drawLine()