Home
last modified time | relevance | path

Searched refs:boxOrient (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderDeprecatedFlexibleBox.h61 bool isVertical() const { return style()->boxOrient() == VERTICAL; } in isVertical()
62 bool isHorizontal() const { return style()->boxOrient() == HORIZONTAL; } in isHorizontal()
DRenderDeprecatedFlexibleBox.cpp46 if (m_box->style()->boxOrient() == HORIZONTAL && !m_box->style()->isLeftToRightDirection()) in FlexBoxIterator()
276 || (parent()->isDeprecatedFlexibleBox() && parent()->style()->boxOrient() == HORIZONTAL in layoutBlock()
DRenderBox.cpp2296 …bool inVerticalBox = parent()->isDeprecatedFlexibleBox() && (parent()->style()->boxOrient() == VER… in computeLogicalWidthInRegion()
2444 …if (parent->isDeprecatedFlexibleBox() && parent->style()->boxOrient() == VERTICAL && parent->style… in isStretchingColumnFlexItem()
2492 …if (parent()->isDeprecatedFlexibleBox() && (parent()->style()->boxOrient() == HORIZONTAL || parent… in sizesLogicalWidthToFitContent()
2715 …bool inHorizontalBox = parent()->isDeprecatedFlexibleBox() && parent()->style()->boxOrient() == HO… in computeLogicalHeight()
2736 …if (h.isAuto() && parent()->isDeprecatedFlexibleBox() && parent()->style()->boxOrient() == HORIZON… in computeLogicalHeight()
DRenderBlock.cpp4931 && (!obj->isDeprecatedFlexibleBox() || obj->style()->boxOrient() == VERTICAL); in shouldCheckLines()
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DRenderStyle.h743 …EBoxOrient boxOrient() const { return static_cast<EBoxOrient>(rareNonInheritedData->m_deprecatedFl… in boxOrient() function
/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSComputedStyleDeclaration.cpp1894 return cssValuePool().createValue(style->boxOrient()); in getPropertyCSSValue()