Home
last modified time | relevance | path

Searched refs:boxRect (Results 1 – 14 of 14) sorted by relevance

/external/webkit/Source/WebCore/rendering/svg/
DSVGRootInlineBox.cpp143 IntRect boxRect = textBox->calculateBoundaries(); in layoutChildBoxes() local
144 textBox->setX(boxRect.x()); in layoutChildBoxes()
145 textBox->setY(boxRect.y()); in layoutChildBoxes()
146 textBox->setLogicalWidth(boxRect.width()); in layoutChildBoxes()
147 textBox->setLogicalHeight(boxRect.height()); in layoutChildBoxes()
158 IntRect boxRect = flowBox->calculateBoundaries(); in layoutChildBoxes() local
159 flowBox->setX(boxRect.x()); in layoutChildBoxes()
160 flowBox->setY(boxRect.y()); in layoutChildBoxes()
161 flowBox->setLogicalWidth(boxRect.width()); in layoutChildBoxes()
162 flowBox->setLogicalHeight(boxRect.height()); in layoutChildBoxes()
/external/webkit/Source/WebCore/rendering/
DInlineTextBox.cpp391 … const FloatRect& boxRect, const ShadowData* shadow, bool stroked, bool horizontal) in paintTextWithShadows() argument
402 …ndedIntSize(InlineTextBox::applyShadowToGraphicsContext(context, shadow, boxRect, stroked, opaque,… in paintTextWithShadows()
462 static inline AffineTransform rotation(const FloatRect& boxRect, RotationDirection clockwise) in rotation() argument
464 …return clockwise ? AffineTransform(0, 1, -1, 0, boxRect.x() + boxRect.maxY(), boxRect.maxY() - box… in rotation()
465 : AffineTransform(0, -1, 1, 0, boxRect.x() - boxRect.maxY(), boxRect.x() + boxRect.maxY()); in rotation()
523 FloatRect boxRect(boxOrigin, IntSize(logicalWidth(), logicalHeight())); in paint() local
529 context->concatCTM(rotation(boxRect, Clockwise)); in paint()
541 combinedText->adjustTextOrigin(textOrigin, boxRect); in paint()
682 …dows(context, font, textRun, nullAtom, 0, 0, length, length, textOrigin, boxRect, textShadow, text… in paint()
684 …ows(context, font, textRun, nullAtom, 0, ePos, sPos, length, textOrigin, boxRect, textShadow, text… in paint()
[all …]
DRenderCombineText.cpp67 void RenderCombineText::adjustTextOrigin(FloatPoint& textOrigin, const FloatRect& boxRect) const in adjustTextOrigin()
70 …textOrigin.move(boxRect.height() / 2 - ceilf(m_combinedTextWidth) / 2, style()->font().pixelSize()… in adjustTextOrigin()
DRenderCombineText.h33 void adjustTextOrigin(FloatPoint& textOrigin, const FloatRect& boxRect) const;
DInlineBox.cpp275 IntRect boxRect(m_x, 0, m_logicalWidth, 10); in canAccommodateEllipsis() local
277 return !(boxRect.intersects(ellipsisRect)); in canAccommodateEllipsis()
DRenderInline.cpp996 IntRect boxRect(0, 0, cb->layer()->width(), cb->layer()->height()); in clippedOverflowRectForRepaint() local
997 r = intersection(repaintRect, boxRect); in clippedOverflowRectForRepaint()
1086 IntRect boxRect(0, 0, containerBox->layer()->width(), containerBox->layer()->height()); in computeRectForRepaint() local
1087 rect = intersection(repaintRect, boxRect); in computeRectForRepaint()
DRenderObject.cpp1372 IntRect boxRect(0, 0, boxParent->layer()->width(), boxParent->layer()->height()); in computeRectForRepaint() local
1373 rect = intersection(repaintRect, boxRect); in computeRectForRepaint()
DRenderBox.cpp1490 IntRect boxRect(0, 0, containerBox->layer()->width(), containerBox->layer()->height()); in computeRectForRepaint() local
1491 rect = intersection(repaintRect, boxRect); in computeRectForRepaint()
/external/webkit/Source/WebKit/mac/WebView/
DWebHTMLViewPrivate.h48 - (void)paintHighlightForBox:(NSRect)boxRect onLine:(NSRect)lineRect behindText:(BOOL)text entireLi…
/external/webkit/Source/WebKit/mac/WebCoreSupport/
DWebChromeClient.h135 const WebCore::FloatRect& boxRect, const WebCore::FloatRect& lineRect,
DWebChromeClient.mm760 …ntCustomHighlight(Node* node, const AtomicString& type, const FloatRect& boxRect, const FloatRect&…
771 …[highlighter paintHighlightForBox:boxRect onLine:lineRect behindText:behindText entireLine:entireL…
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
DWebChromeClient.h153 …WebCore::Node*, const WTF::AtomicString& type, const WebCore::FloatRect& boxRect, const WebCore::F…
DWebChromeClient.cpp539 …::paintCustomHighlight(Node*, const AtomicString& type, const FloatRect& boxRect, const FloatRect&… in paintCustomHighlight() argument
/external/webkit/Source/WebCore/page/
DChromeClient.h205 …virtual void paintCustomHighlight(Node*, const AtomicString& type, const FloatRect& boxRect, const…