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

  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
LayoutBoxExtent.cpp 38 LayoutUnit LayoutBoxExtent::logicalTop(WritingMode writingMode) const
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLineBoxList.cpp 148 bool RenderLineBoxList::rangeIntersectsRect(RenderBoxModelObject* renderer, LayoutUnit logicalTop, LayoutUnit logicalBottom, const LayoutRect& rect, const LayoutPoint& offset) const
155 LayoutUnit physicalStart = block->flipForWritingMode(logicalTop);
183 LayoutUnit logicalTop = firstLineTop - outlineSize;
186 return rangeIntersectsRect(renderer, logicalTop, logicalBottom, rect, offset);
192 LayoutUnit logicalTop = min<LayoutUnit>(box->logicalTopVisualOverflow(root->lineTop()), root->selectionTop()) - renderer->maximalOutlineSize(paintInfo.phase);
195 return rangeIntersectsRect(renderer, logicalTop, logicalBottom, paintInfo.rect, offset);
InlineBox.h 218 int pixelSnappedLogicalTop() const { return logicalTop(); }
221 // The logicalTop[ position is the top edge of the line box in a horizontal line and the left edge in a vertical line.
222 float logicalTop() const { return isHorizontal() ? m_topLeft.y() : m_topLeft.x(); }
223 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 85 LayoutUnit logicalTop() const { return style()->isHorizontalWritingMode() ? y() : x(); }
86 LayoutUnit logicalBottom() const { return logicalTop() + logicalHeight(); }
406 virtual void computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logicalTop, LogicalExtentComputedValues&) const;
    [all...]
RenderInline.cpp 564 int logicalTop = rootBox->logicalTop() + (rootBox->renderer()->style(rootBox->isFirstLineStyle())->font().fontMetrics().ascent() - container->style(rootBox->isFirstLineStyle())->font().fontMetrics().ascent());
567 yield(FloatRect(currBox->inlineBoxWrapper()->x() - currBox->marginLeft(), logicalTop, currBox->width() + currBox->marginWidth(), logicalHeight));
569 yield(FloatRect(logicalTop, currBox->inlineBoxWrapper()->y() - currBox->marginTop(), logicalHeight, currBox->height() + currBox->marginHeight()));
579 int logicalTop = rootBox->logicalTop() + (rootBox->renderer()->style(rootBox->isFirstLineStyle())->font().fontMetrics().ascent() - container->style(rootBox->isFirstLineStyle())->font().fontMetrics().ascent());
583 logicalTop,
587 yield(FloatRect(logicalTop,
597 int logicalTop = rootBox->logicalTop() + (rootBox->renderer()->style(rootBox->isFirstLineStyle())->font().fontMetrics().ascent() - cont (…)
    [all...]
RenderText.cpp     [all...]
RenderBlockFlow.cpp 341 if (block->lowestFloatLogicalBottom() + block->logicalTop() > newHeight)
367 setPageLogicalOffset(renderView->layoutState()->pageLogicalOffset(this, logicalTop()));
680 LayoutUnit logicalTopOffset = logicalTop();
686 logicalTopOffset -= toRenderBox(prev)->logicalTop();
    [all...]
RenderBlock.cpp     [all...]
RenderBox.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 444 Length logicalTop() const { return surround->offset.before(writingMode()); }
    [all...]

Completed in 70 milliseconds