/external/webkit/Source/WebCore/rendering/svg/ |
SVGRootInlineBox.cpp | 143 IntRect boxRect = textBox->calculateBoundaries(); 144 textBox->setX(boxRect.x()); 145 textBox->setY(boxRect.y()); 146 textBox->setLogicalWidth(boxRect.width()); 147 textBox->setLogicalHeight(boxRect.height()); 158 IntRect boxRect = flowBox->calculateBoundaries(); 159 flowBox->setX(boxRect.x()); 160 flowBox->setY(boxRect.y()); 161 flowBox->setLogicalWidth(boxRect.width()); 162 flowBox->setLogicalHeight(boxRect.height()) [all...] |
/external/webkit/Source/WebCore/rendering/ |
RenderCombineText.h | 33 void adjustTextOrigin(FloatPoint& textOrigin, const FloatRect& boxRect) const;
|
RenderCombineText.cpp | 67 void RenderCombineText::adjustTextOrigin(FloatPoint& textOrigin, const FloatRect& boxRect) const 70 textOrigin.move(boxRect.height() / 2 - ceilf(m_combinedTextWidth) / 2, style()->font().pixelSize());
|
InlineTextBox.cpp | 391 const FloatRect& boxRect, const ShadowData* shadow, bool stroked, bool horizontal) 402 extraOffset = roundedIntSize(InlineTextBox::applyShadowToGraphicsContext(context, shadow, boxRect, stroked, opaque, horizontal)); 462 static inline AffineTransform rotation(const FloatRect& boxRect, RotationDirection clockwise) 464 return clockwise ? AffineTransform(0, 1, -1, 0, boxRect.x() + boxRect.maxY(), boxRect.maxY() - boxRect.x()) 465 : AffineTransform(0, -1, 1, 0, boxRect.x() - boxRect.maxY(), boxRect.x() + boxRect.maxY()) [all...] |
InlineBox.cpp | 275 IntRect boxRect(m_x, 0, m_logicalWidth, 10); 277 return !(boxRect.intersects(ellipsisRect));
|
RenderInline.cpp | [all...] |
RenderObject.cpp | [all...] |
RenderBox.cpp | [all...] |
/external/webkit/Source/WebKit/mac/WebView/ |
WebHTMLViewPrivate.h | 48 - (void)paintHighlightForBox:(NSRect)boxRect onLine:(NSRect)lineRect behindText:(BOOL)text entireLine:(BOOL)line representedNode:(DOMNode *)node;
|
/external/webkit/Source/WebCore/page/ |
ChromeClient.h | 205 virtual void paintCustomHighlight(Node*, const AtomicString& type, const FloatRect& boxRect, const FloatRect& lineRect,
|
/external/webkit/Source/WebKit/mac/WebCoreSupport/ |
WebChromeClient.h | 135 const WebCore::FloatRect& boxRect, const WebCore::FloatRect& lineRect,
|
WebChromeClient.mm | 760 void WebChromeClient::paintCustomHighlight(Node* node, const AtomicString& type, const FloatRect& boxRect, const FloatRect& lineRect, 771 [highlighter paintHighlightForBox:boxRect onLine:lineRect behindText:behindText entireLine:entireLine representedNode:kit(node)]; [all...] |
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/ |
WebChromeClient.h | 153 virtual void paintCustomHighlight(WebCore::Node*, const WTF::AtomicString& type, const WebCore::FloatRect& boxRect, const WebCore::FloatRect& lineRect,
|
WebChromeClient.cpp | 539 void WebChromeClient::paintCustomHighlight(Node*, const AtomicString& type, const FloatRect& boxRect, const FloatRect& lineRect,
|