Searched defs:isLeftToRightDirection (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/platform/text/
H A DTextDirection.h33 inline bool isLeftToRightDirection(TextDirection direction) { return direction == LTR; } function in namespace:WebCore
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DSliderThumbElement.cpp195 else if (style()->isLeftToRightDirection())
265 bool isLeftToRightDirection = renderBox()->style()->isLeftToRightDirection(); local
284 position -= isLeftToRightDirection ? renderBox()->marginLeft() : renderBox()->marginRight();
289 const Decimal fraction = isVertical || !isLeftToRightDirection ? Decimal(1) - ratio : ratio;
298 double closestRatio = isVertical || !isLeftToRightDirection ? 1.0 - closestFraction : closestFraction;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DInlineBox.h251 bool isLeftToRightDirection() const { return direction() == LTR; } function in class:WebCore::InlineBox
252 int caretLeftmostOffset() const { return isLeftToRightDirection() ? caretMinOffset() : caretMaxOffset(); }
253 int caretRightmostOffset() const { return isLeftToRightDirection() ? caretMaxOffset() : caretMinOffset(); }
H A DRenderBlockLineLayout.cpp199 if (shouldIndentText() && m_block->style()->isLeftToRightDirection())
209 if (shouldIndentText() && !m_block->style()->isLeftToRightDirection())
626 isOnlyRun = (!style()->isLeftToRightDirection() ? bidiRuns.lastRun() : bidiRuns.firstRun())->m_object->isListMarker();
700 static void updateLogicalWidthForLeftAlignedBlock(bool isLeftToRightDirection, BidiRun* trailingSpaceRun, float& logicalLeft, float& totalLogicalWidth, float availableLogicalWidth) argument
704 if (isLeftToRightDirection) {
716 static void updateLogicalWidthForRightAlignedBlock(bool isLeftToRightDirection, BidiRun* trailingSpaceRun, float& logicalLeft, float& totalLogicalWidth, float availableLogicalWidth) argument
721 if (isLeftToRightDirection) {
738 static void updateLogicalWidthForCenterAlignedBlock(bool isLeftToRightDirection, BidiRun* trailingSpaceRun, float& logicalLeft, float& totalLogicalWidth, float availableLogicalWidth) argument
746 if (isLeftToRightDirection)
763 renderer->getOverhang(lineInfo.isFirstLine(), renderer->style()->isLeftToRightDirection()
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DRenderStyle.h553 bool isLeftToRightDirection() const { return direction() == LTR; } function in class:WebCore::RenderStyle
898 bool shouldPlaceBlockDirectionScrollbarOnLogicalLeft() const { return !isLeftToRightDirection() && isHorizontalWritingMode(); }

Completed in 565 milliseconds