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

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
LayoutBoxExtent.cpp 36 LayoutUnit LayoutBoxExtent::logicalTop(WritingMode writingMode) const
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLineBoxList.cpp 147 bool RenderLineBoxList::rangeIntersectsRect(RenderBoxModelObject* renderer, LayoutUnit logicalTop, LayoutUnit logicalBottom, const LayoutRect& rect, const LayoutPoint& offset) const
154 LayoutUnit physicalStart = block->flipForWritingMode(logicalTop);
182 LayoutUnit logicalTop = firstLineTop - outlineSize;
185 return rangeIntersectsRect(renderer, logicalTop, logicalBottom, rect, offset);
191 LayoutUnit logicalTop = min<LayoutUnit>(box->logicalTopVisualOverflow(root->lineTop()), root->selectionTop()) - renderer->maximalOutlineSize(paintInfo.phase);
194 return rangeIntersectsRect(renderer, logicalTop, logicalBottom, paintInfo.rect, offset);
InlineBox.h 219 int pixelSnappedLogicalTop() const { return logicalTop(); }
222 // The logicalTop[ position is the top edge of the line box in a horizontal line and the left edge in a vertical line.
223 float logicalTop() const { return isHorizontal() ? m_topLeft.y() : m_topLeft.x(); }
224 float logicalBottom() const { return logicalTop() + logicalHeight(); }
InlineFlowBox.cpp 515 // baseline. This information is cached in the logicalTop() of every box. We're effectively just using
516 // the logicalTop() as scratch space.
578 ascent -= curr->logicalTop();
579 descent += curr->logicalTop();
611 adjustmentForChildrenWithSameLineHeightAndBaseline = logicalTop();
636 curr->setLogicalTop(curr->logicalTop() + top + posAdjust);
639 LayoutUnit newLogicalTop = curr->logicalTop();
677 LayoutUnit topRubyBaseLeading = rubyBase->logicalTop() + (rubyBase->firstRootBox() ? rubyBase->firstRootBox()->lineTop() : LayoutUnit());
    [all...]
RenderBox.h 80 LayoutUnit logicalTop() const { return style()->isHorizontalWritingMode() ? y() : x(); }
81 LayoutUnit logicalBottom() const { return logicalTop() + logicalHeight(); }
403 virtual void computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logicalTop, LogicalExtentComputedValues&) const;
    [all...]
RenderInline.cpp 562 int logicalTop = rootBox->logicalTop() + (rootBox->renderer()->style(rootBox->isFirstLineStyle())->font().fontMetrics().ascent() - container->style(rootBox->isFirstLineStyle())->font().fontMetrics().ascent());
565 yield(FloatRect(currBox->inlineBoxWrapper()->x() - currBox->marginLeft(), logicalTop, currBox->width() + currBox->marginWidth(), logicalHeight));
567 yield(FloatRect(logicalTop, currBox->inlineBoxWrapper()->y() - currBox->marginTop(), logicalHeight, currBox->height() + currBox->marginHeight()));
577 int logicalTop = rootBox->logicalTop() + (rootBox->renderer()->style(rootBox->isFirstLineStyle())->font().fontMetrics().ascent() - container->style(rootBox->isFirstLineStyle())->font().fontMetrics().ascent());
581 logicalTop,
585 yield(FloatRect(logicalTop,
595 int logicalTop = rootBox->logicalTop() + (rootBox->renderer()->style(rootBox->isFirstLineStyle())->font().fontMetrics().ascent() - cont (…)
    [all...]
RenderText.cpp     [all...]
RenderBox.cpp 125 offsetFromTopOfFirstPage -= logicalTop();
132 offsetFromTopOfFirstPage -= logicalTop();
    [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/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyle.h 423 Length logicalTop() const { return surround->offset.before(writingMode()); }
    [all...]

Completed in 1806 milliseconds