HomeSort by relevance Sort by last modified time
    Searched defs:logicalTop (Results 1 - 10 of 10) sorted by null

  /external/webkit/Source/WebCore/rendering/
RenderLineBoxList.cpp 149 bool RenderLineBoxList::rangeIntersectsRect(RenderBoxModelObject* renderer, int logicalTop, int logicalBottom, const IntRect& rect, int tx, int ty) const
156 int physicalStart = block->flipForWritingMode(logicalTop);
188 int logicalTop = firstLineTop - outlineSize;
191 return rangeIntersectsRect(renderer, logicalTop, logicalBottom, rect, tx, ty);
197 int logicalTop = min(box->logicalTopVisualOverflow(root->lineTop()), root->selectionTop()) - renderer->maximalOutlineSize(paintInfo.phase);
200 return rangeIntersectsRect(renderer, logicalTop, logicalBottom, paintInfo.rect, tx, ty);
InlineBox.h 248 // The logicalTop[ position is the top edge of the line box in a horizontal line and the left edge in a vertical line.
249 int logicalTop() const { return isHorizontal() ? m_y : m_x; }
250 int logicalBottom() const { return logicalTop() + logicalHeight(); }
RenderBox.h 59 int logicalTop() const { return style()->isHorizontalWritingMode() ? y() : x(); }
60 int logicalBottom() const { return logicalTop() + logicalHeight(); }
450 Length logicalTop, Length logicalBottom, Length marginLogicalTop, Length marginLogicalBottom,
RenderInline.cpp 502 int logicalTop = rootBox->logicalTop() + (rootBox->renderer()->style(rootBox->isFirstLineStyle())->font().fontMetrics().ascent() - container->style(rootBox->isFirstLineStyle())->font().fontMetrics().ascent());
506 result = FloatRect(offset.width() + currBox->inlineBoxWrapper()->x() - currBox->marginLeft(), offset.height() + logicalTop, currBox->width() + currBox->marginLeft() + currBox->marginRight(), logicalHeight);
508 result = FloatRect(offset.width() + logicalTop, offset.height() + currBox->inlineBoxWrapper()->y() - currBox->marginTop(), logicalHeight, currBox->height() + currBox->marginTop() + currBox->marginBottom());
519 int logicalTop = rootBox->logicalTop() + (rootBox->renderer()->style(rootBox->isFirstLineStyle())->font().fontMetrics().ascent() - container->style(rootBox->isFirstLineStyle())->font().fontMetrics().ascent());
524 offset.height() + logicalTop,
528 result = FloatRect(offset.width() + logicalTop,
539 int logicalTop = rootBox->logicalTop() + (rootBox->renderer()->style(rootBox->isFirstLineStyle())->font().fontMetrics().ascent() - cont (…)
    [all...]
RenderText.cpp     [all...]
RenderBlockLineLayout.cpp     [all...]
RenderBox.cpp     [all...]
RenderBlock.cpp     [all...]
  /frameworks/base/services/input/
InputReader.h 58 int32_t logicalTop;
70 logicalLeft(0), logicalTop(0), logicalRight(0), logicalBottom(0),
79 && logicalTop == other.logicalTop
102 logicalTop = 0;
    [all...]
  /external/webkit/Source/WebCore/rendering/style/
RenderStyle.h 383 Length logicalTop() const { return isHorizontalWritingMode() ? (isFlippedBlocksWritingMode() ? bottom() : top()) : (isFlippedBlocksWritingMode() ? right() : left()); }
659 void getTextShadowBlockDirectionExtent(int& logicalTop, int& logicalBottom) { getShadowBlockDirectionExtent(textShadow(), logicalTop, logicalBottom); }
    [all...]

Completed in 144 milliseconds