OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isLeftToRightDirection
(Results
26 - 50
of
56
) sorted by null
1
2
3
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTable.cpp
515
LayoutUnit sectionLogicalLeft = style()->
isLeftToRightDirection
() ? borderStart() : borderEnd();
517
sectionLogicalLeft += style()->
isLeftToRightDirection
() ? paddingStart() : paddingEnd();
[
all
...]
RenderFieldset.cpp
75
if (style()->
isLeftToRightDirection
()) {
RenderFileUploadControl.cpp
121
if (style()->
isLeftToRightDirection
())
RenderMarquee.cpp
119
bool ltr = style()->
isLeftToRightDirection
();
RenderBox.cpp
355
if (style()->
isLeftToRightDirection
())
[
all
...]
RenderText.cpp
535
if (positionIsAtStartOfBox == box->
isLeftToRightDirection
()) {
562
box->
isLeftToRightDirection
() ? rightmostBox->caretMaxOffset() : rightmostBox->caretMinOffset(), shouldAffinityBeDownstream);
593
box->
isLeftToRightDirection
() ? leftmostBox->caretMinOffset() : leftmostBox->caretMaxOffset(), shouldAffinityBeDownstream);
690
rightAligned = !cbStyle->
isLeftToRightDirection
();
693
rightAligned = cbStyle->
isLeftToRightDirection
();
[
all
...]
RenderBlock.h
240
LayoutUnit startOffsetForContent() const { return style()->
isLeftToRightDirection
() ? logicalLeftOffsetForContent() : logicalWidth() - logicalRightOffsetForContent(); }
241
LayoutUnit endOffsetForContent() const { return !style()->
isLeftToRightDirection
() ? logicalLeftOffsetForContent() : logicalWidth() - logicalRightOffsetForContent(); }
RenderBlockFlow.h
81
return style()->
isLeftToRightDirection
() ? logicalLeftOffsetForLine(position, shouldIndentText, logicalHeight)
86
return !style()->
isLeftToRightDirection
() ? logicalLeftOffsetForLine(position, shouldIndentText, logicalHeight)
RenderFlexibleBox.cpp
334
return style()->
isLeftToRightDirection
() ^ (style()->flexDirection() == FlowRowReverse);
436
return style()->
isLeftToRightDirection
() ? LeftToRightWritingMode : RightToLeftWritingMode;
439
return style()->
isLeftToRightDirection
() ? TopToBottomWritingMode : BottomToTopWritingMode;
769
if (isColumnFlow() && !child.style()->
isLeftToRightDirection
()) {
[
all
...]
RenderGrid.cpp
[
all
...]
RenderListItem.cpp
362
if (style()->
isLeftToRightDirection
()) {
RenderThemeChromiumSkia.cpp
478
: m_needsFlipping(!renderer->style()->
isLeftToRightDirection
())
RenderTreeAsText.cpp
419
if (!run.
isLeftToRightDirection
() || run.dirOverride()) {
420
ts << (!run.
isLeftToRightDirection
() ? " RTL" : " LTR");
RootInlineBox.cpp
581
if (
isLeftToRightDirection
())
586
if (
isLeftToRightDirection
())
[
all
...]
InlineFlowBox.cpp
314
bool ltr = renderer().style()->
isLeftToRightDirection
();
393
if (
isLeftToRightDirection
()) {
407
if (curr->renderer().parent()->style()->
isLeftToRightDirection
()) {
[
all
...]
RenderTableSection.cpp
[
all
...]
InlineIterator.h
432
return m_obj->style()->
isLeftToRightDirection
() ? WTF::Unicode::LeftToRight : WTF::Unicode::RightToLeft;
RenderMenuList.cpp
132
innerStyle->setTextAlign(style()->
isLeftToRightDirection
() ? LEFT : RIGHT);
RenderBlock.cpp
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextChunkBuilder.cpp
99
if (!style->
isLeftToRightDirection
())
SVGRenderTreeAsText.cpp
446
if (!textBox->
isLeftToRightDirection
() || textBox->dirOverride()) {
447
ts << (textBox->
isLeftToRightDirection
() ? " LTR" : " RTL");
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
TextFieldInputType.cpp
236
IntSize scrollOffset(!renderTextControl->style()->
isLeftToRightDirection
() ? innerScrollableArea->scrollWidth().toInt() : 0, 0);
/external/chromium_org/third_party/WebKit/Source/core/paint/
BlockPainter.cpp
278
bool leftToRight = m_renderBlock.style()->
isLeftToRightDirection
();
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleBuilderCustom.cpp
520
state.style()->setTextAlign(state.parentStyle()->
isLeftToRightDirection
() ? LEFT : RIGHT);
522
state.style()->setTextAlign(state.parentStyle()->
isLeftToRightDirection
() ? RIGHT : LEFT);
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
VTTCue.cpp
546
return
isLeftToRightDirection
(textDirection) ? CSSValueLtr : CSSValueRtl;
[
all
...]
Completed in 8401 milliseconds
1
2
3