HomeSort by relevance Sort by last modified time
    Searched refs:isLeftToRightDirection (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/chromium_org/third_party/WebKit/Source/platform/text/
TextDirection.h 33 inline bool isLeftToRightDirection(TextDirection direction) { return direction == LTR; }
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
Pagination.cpp 36 style->setColumnProgression(style->isLeftToRightDirection() ? NormalColumnProgression : ReverseColumnProgression);
43 style->setColumnProgression(style->isLeftToRightDirection() ? ReverseColumnProgression : NormalColumnProgression);
52 style->setColumnProgression(style->isLeftToRightDirection() ? NormalColumnProgression : ReverseColumnProgression);
59 style->setColumnProgression(style->isLeftToRightDirection() ? ReverseColumnProgression : NormalColumnProgression);
RenderTable.h 63 return style()->isLeftToRightDirection() ? borderStart() : borderEnd();
70 return style()->isLeftToRightDirection() ? borderEnd() : borderStart();
78 return style()->isLeftToRightDirection() ? borderStart() : borderEnd();
85 return style()->isLeftToRightDirection() ? borderEnd() : borderStart();
98 return style()->isLeftToRightDirection() ? outerBorderStart() : outerBorderEnd();
105 return style()->isLeftToRightDirection() ? outerBorderEnd() : outerBorderStart();
113 return style()->isLeftToRightDirection() ? outerBorderStart() : outerBorderEnd();
120 return style()->isLeftToRightDirection() ? outerBorderEnd() : outerBorderStart();
RenderDetailsMarker.cpp 75 if (style()->isLeftToRightDirection())
79 if (style()->isLeftToRightDirection())
83 if (style()->isLeftToRightDirection())
87 if (style()->isLeftToRightDirection())
RenderMultiColumnSet.cpp 229 if (style()->isLeftToRightDirection())
283 bool isLeftmostColumn = style()->isLeftToRightDirection() ? isFirstColumn : isLastColumn;
284 bool isRightmostColumn = style()->isLeftToRightDirection() ? isLastColumn : isFirstColumn;
345 bool leftToRight = style()->isLeftToRightDirection();
475 if (!style()->isLeftToRightDirection())
InlineBox.h 250 bool isLeftToRightDirection() const { return direction() == LTR; }
251 int caretLeftmostOffset() const { return isLeftToRightDirection() ? caretMinOffset() : caretMaxOffset(); }
252 int caretRightmostOffset() const { return isLeftToRightDirection() ? caretMaxOffset() : caretMinOffset(); }
RenderTableCell.cpp 330 bool rtl = !styleForCellFlow()->isLeftToRightDirection();
    [all...]
LineWidth.cpp 106 if (shouldIndentText() && m_block.style()->isLeftToRightDirection())
116 if (shouldIndentText() && !m_block.style()->isLeftToRightDirection())
RenderBlock.h 172 return style()->isLeftToRightDirection() ? logicalLeftOffsetForLineInRegion(position, shouldIndentText, region, logicalHeight)
177 return !style()->isLeftToRightDirection() ? logicalLeftOffsetForLineInRegion(position, shouldIndentText, region, logicalHeight)
207 return style()->isLeftToRightDirection() ? logicalLeftOffsetForLine(position, shouldIndentText, logicalHeight)
212 return !style()->isLeftToRightDirection() ? logicalLeftOffsetForLine(position, shouldIndentText, logicalHeight)
327 return style()->isLeftToRightDirection() ? logicalLeftOffsetForContent(region) : logicalWidth() - logicalRightOffsetForContent(region);
331 return !style()->isLeftToRightDirection() ? logicalLeftOffsetForContent(region) : logicalWidth() - logicalRightOffsetForContent(region);
355 LayoutUnit startOffsetForContent() const { return style()->isLeftToRightDirection() ? logicalLeftOffsetForContent() : logicalWidth() - logicalRightOffsetForContent(); }
356 LayoutUnit endOffsetForContent() const { return !style()->isLeftToRightDirection() ? logicalLeftOffsetForContent() : logicalWidth() - logicalRightOffsetForContent(); }
    [all...]
RenderRubyRun.cpp 301 startOverhang = style()->isLeftToRightDirection() ? logicalLeftOverhang : logicalRightOverhang;
302 endOverhang = style()->isLeftToRightDirection() ? logicalRightOverhang : logicalLeftOverhang;
RenderBlockLineLayout.cpp 278 isOnlyRun = (!style()->isLeftToRightDirection() ? bidiRuns.lastRun() : bidiRuns.firstRun())->m_object->isListMarker();
377 static void updateLogicalWidthForLeftAlignedBlock(bool isLeftToRightDirection, BidiRun* trailingSpaceRun, float& logicalLeft, float& totalLogicalWidth, float availableLogicalWidth)
381 if (isLeftToRightDirection) {
393 static void updateLogicalWidthForRightAlignedBlock(bool isLeftToRightDirection, BidiRun* trailingSpaceRun, float& logicalLeft, float& totalLogicalWidth, float availableLogicalWidth)
398 if (isLeftToRightDirection) {
415 static void updateLogicalWidthForCenterAlignedBlock(bool isLeftToRightDirection, BidiRun* trailingSpaceRun, float& logicalLeft, float& totalLogicalWidth, float availableLogicalWidth)
423 if (isLeftToRightDirection)
440 renderer->getOverhang(lineInfo.isFirstLine(), renderer->style()->isLeftToRightDirection() ? previousObject : nextObject, renderer->style()->isLeftToRightDirection() ? nextObject : previousObject, startOverhang, endOverhang);
582 updateLogicalWidthForLeftAlignedBlock(style()->isLeftToRightDirection(), trailingSpaceRun, logicalLeft, totalLogicalWidth, availableLogicalWidth)
    [all...]
RenderDeprecatedFlexibleBox.cpp 46 if (m_box->style()->boxOrient() == HORIZONTAL && !m_box->style()->isLeftToRightDirection())
578 if (remainingSpace > 0 && ((style()->isLeftToRightDirection() && style()->boxPack() != Start)
579 || (!style()->isLeftToRightDirection() && style()->boxPack() != End))) {
707 if (!style()->isLeftToRightDirection())
713 if (style()->isLeftToRightDirection())
    [all...]
RenderListItem.cpp 351 if (style()->isLeftToRightDirection()) {
452 if (!m_marker->style()->isLeftToRightDirection())
457 if (m_marker->style()->isLeftToRightDirection())
RenderTable.cpp 308 bool hasInvertedDirection = cb->style()->isLeftToRightDirection() == style()->isLeftToRightDirection();
527 LayoutUnit sectionLogicalLeft = style()->isLeftToRightDirection() ? borderStart() : borderEnd();
529 sectionLogicalLeft += style()->isLeftToRightDirection() ? paddingStart() : paddingEnd();
    [all...]
InlineTextBox.cpp 289 bool ltr = isLeftToRightDirection();
500 if (renderer()->containingBlock()->style()->isLeftToRightDirection() != isLeftToRightDirection()) {
512 LayoutSize truncationOffset(isLeftToRightDirection() ? widthOfHiddenText : -widthOfHiddenText, 0);
    [all...]
RenderBox.cpp 468 if (style()->isLeftToRightDirection())
    [all...]
RenderFieldset.cpp 72 if (style()->isLeftToRightDirection()) {
  /external/chromium_org/third_party/WebKit/Source/platform/
LengthBox.cpp 81 return isLeftToRightDirection(direction) ? m_left : m_right;
82 return isLeftToRightDirection(direction) ? m_top : m_bottom;
88 return isLeftToRightDirection(direction) ? m_right : m_left;
89 return isLeftToRightDirection(direction) ? m_bottom : m_top;
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
LayoutBoxExtent.cpp 93 return isLeftToRightDirection(direction) ? m_left : m_right;
94 return isLeftToRightDirection(direction) ? m_top : m_bottom;
100 return isLeftToRightDirection(direction) ? m_right : m_left;
101 return isLeftToRightDirection(direction) ? m_bottom : m_top;
149 if (isLeftToRightDirection(direction))
154 if (isLeftToRightDirection(direction))
164 if (isLeftToRightDirection(direction))
169 if (isLeftToRightDirection(direction))
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
SliderThumbElement.cpp 180 else if (style()->isLeftToRightDirection())
262 bool isLeftToRightDirection = renderBox()->style()->isLeftToRightDirection();
281 position -= isLeftToRightDirection ? renderBox()->marginLeft() : renderBox()->marginRight();
286 const Decimal fraction = isVertical || !isLeftToRightDirection ? Decimal(1) - ratio : ratio;
293 double closestRatio = isVertical || !isLeftToRightDirection ? 1.0 - closestFraction : closestFraction;
  /external/chromium_org/third_party/WebKit/Source/core/css/
PageRuleCollector.cpp 47 if (!rootElementStyle->isLeftToRightDirection())
  /external/chromium_org/third_party/WebKit/Source/core/page/
PrintContext.cpp 123 inlineDirectionStart = view->style()->isLeftToRightDirection() ? docRect.x() : docRect.maxX();
124 inlineDirectionEnd = view->style()->isLeftToRightDirection() ? docRect.maxX() : docRect.x();
133 inlineDirectionStart = view->style()->isLeftToRightDirection() ? docRect.y() : docRect.maxY();
134 inlineDirectionEnd = view->style()->isLeftToRightDirection() ? docRect.maxY() : docRect.y();
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGInlineText.cpp 119 LayoutUnit x = box->isLeftToRightDirection() ? rect.x() : rect.maxX();
124 LayoutUnit x = box->isLeftToRightDirection() ? rect.maxX() : rect.x();
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyle.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
VisiblePosition.cpp 143 return box->isLeftToRightDirection() ? previousVisuallyDistinctCandidate(m_deepPosition) : nextVisuallyDistinctCandidate(m_deepPosition);
154 offset = box->isLeftToRightDirection() ? renderer->previousOffset(offset) : renderer->nextOffset(offset);
162 if (box->isLeftToRightDirection() ? offset < caretMinOffset : offset > caretMaxOffset) {
308 return box->isLeftToRightDirection() ? nextVisuallyDistinctCandidate(m_deepPosition) : previousVisuallyDistinctCandidate(m_deepPosition);
319 offset = box->isLeftToRightDirection() ? renderer->nextOffset(offset) : renderer->previousOffset(offset);
327 if (box->isLeftToRightDirection() ? offset > caretMaxOffset : offset < caretMinOffset) {

Completed in 70 milliseconds

1 2 3