Home
last modified time | relevance | path

Searched refs:caretWidth (Results 1 – 6 of 6) sorted by relevance

/external/webkit/Source/WebCore/rendering/svg/
DRenderSVGInlineText.cpp121 return IntRect(x, rect.y(), caretWidth, rect.height()); in localCaretRect()
126 return IntRect(x, rect.y(), caretWidth, rect.height()); in localCaretRect()
/external/webkit/Source/WebCore/rendering/
DRenderText.cpp553 int caretWidthLeftOfOffset = caretWidth / 2; in localCaretRect()
555 int caretWidthRightOfOffset = caretWidth - caretWidthLeftOfOffset; in localCaretRect()
604 left = min(left, rootRight - caretWidth); in localCaretRect()
610 …isHorizontalWritingMode() ? IntRect(left, top, caretWidth, height) : IntRect(top, left, height, ca… in localCaretRect()
DRenderObject.h90 const int caretWidth = 1; variable
DRenderBlock.cpp5892 x = w - (borderRight() + paddingRight()) - caretWidth; in localCaretRect()
5898 *extraWidthToEndOfLine = w - (x + caretWidth); in localCaretRect()
5904 int myRight = x + caretWidth; in localCaretRect()
5917 return IntRect(x, y, caretWidth, height); in localCaretRect()
DRenderBox.cpp3133 IntRect rect(x(), y(), caretWidth, height()); in localCaretRect()
3137 rect.move(IntSize(width() - caretWidth, 0)); in localCaretRect()
/external/webkit/Source/WebCore/
DChangeLog-2009-06-1619964 alignment is alignRight, we need to subtract the caretWidth so that the
19965 caret at IntRect(x, y, caretWidth, height) is inside the block.
37285 Move duplicate caretWidth constants to RenderObject.h
37292 (WebCore::RenderBlock::localCaretRect): Removed caretWidth.
37295 * rendering/RenderObject.h: Added caretWidth definition.
37297 (WebCore::RenderText::localCaretRect): Removed caretWidth.