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.cpp518 int caretWidthLeftOfOffset = caretWidth / 2; in localCaretRect()
520 int caretWidthRightOfOffset = caretWidth - caretWidthLeftOfOffset; in localCaretRect()
569 left = min(left, rootRight - caretWidth); in localCaretRect()
575 …isHorizontalWritingMode() ? IntRect(left, top, caretWidth, height) : IntRect(top, left, height, ca… in localCaretRect()
DRenderObject.h90 const int caretWidth = 1; variable
DRenderBlock.cpp5861 x = w - (borderRight() + paddingRight()) - caretWidth; in localCaretRect()
5867 *extraWidthToEndOfLine = w - (x + caretWidth); in localCaretRect()
5873 int myRight = x + caretWidth; in localCaretRect()
5886 return IntRect(x, y, caretWidth, height); in localCaretRect()
DRenderBox.cpp3121 IntRect rect(x(), y(), caretWidth, height()); in localCaretRect()
3125 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.