Home
last modified time | relevance | path

Searched refs:BHIDDEN (Results 1 – 17 of 17) sorted by relevance

/external/webkit/Source/WebCore/rendering/
DRenderTableSection.cpp769 if (sb.style() == BHIDDEN) in setCellLogicalWidths()
771 if (sb.style() > BHIDDEN) in setCellLogicalWidths()
775 if (rb.style() == BHIDDEN) in setCellLogicalWidths()
777 if (rb.style() > BHIDDEN && rb.width() > borderWidth) in setCellLogicalWidths()
790 if (gb.style() == BHIDDEN || cb.style() == BHIDDEN) in setCellLogicalWidths()
793 if (gb.style() > BHIDDEN && gb.width() > borderWidth) in setCellLogicalWidths()
795 if (cb.style() > BHIDDEN && cb.width() > borderWidth) in setCellLogicalWidths()
798 if (cb.style() == BHIDDEN) in setCellLogicalWidths()
801 if (cb.style() > BHIDDEN && cb.width() > borderWidth) in setCellLogicalWidths()
820 if (sb.style() == BHIDDEN) in setCellLogicalWidths()
[all …]
DRenderTable.cpp856 if (tb.style() == BHIDDEN) in calcBorderStart()
858 if (tb.style() > BHIDDEN) in calcBorderStart()
863 if (gb.style() == BHIDDEN) in calcBorderStart()
865 if (gb.style() > BHIDDEN) in calcBorderStart()
875 if (sb.style() == BHIDDEN) in calcBorderStart()
878 if (sb.style() > BHIDDEN) in calcBorderStart()
885 if (cb.style() == BHIDDEN) in calcBorderStart()
889 if (rb.style() == BHIDDEN) in calcBorderStart()
892 if (cb.style() > BHIDDEN) in calcBorderStart()
894 if (rb.style() > BHIDDEN) in calcBorderStart()
[all …]
DRenderTableCell.cpp362 if (border2.style() == BHIDDEN) { in compareBorders()
363 if (border1.style() == BHIDDEN) in compareBorders()
367 if (border1.style() == BHIDDEN) in compareBorders()
396 return border.style() == BHIDDEN ? CollapsedBorderValue() : border; in chooseBorder()
950 bool renderTop = topStyle > BHIDDEN && !topVal.isTransparent(); in paintCollapsedBorder()
951 bool renderBottom = bottomStyle > BHIDDEN && !bottomVal.isTransparent(); in paintCollapsedBorder()
952 bool renderLeft = leftStyle > BHIDDEN && !leftVal.isTransparent(); in paintCollapsedBorder()
953 bool renderRight = rightStyle > BHIDDEN && !rightVal.isTransparent(); in paintCollapsedBorder()
DRenderBoxModelObject.cpp1074 bool hasVisibleColorAndStyle() const { return style > BHIDDEN && !isTransparent; } in hasVisibleColorAndStyle()
1460 case BHIDDEN: in drawBoxSideFromPath()
1618 … bool renderTop = topStyle > BHIDDEN && !topTransparent && (horizontal || includeLogicalLeftEdge); in paintBorder()
1619 …bool renderLeft = leftStyle > BHIDDEN && !leftTransparent && (!horizontal || includeLogicalLeftEdg… in paintBorder()
1620 …bool renderRight = rightStyle > BHIDDEN && !rightTransparent && (!horizontal || includeLogicalRigh… in paintBorder()
1621 …bool renderBottom = bottomStyle > BHIDDEN && !bottomTransparent && (horizontal || includeLogicalRi… in paintBorder()
DRenderTreeAsText.cpp139 case BHIDDEN: in printBorderStyle()
DRenderObject.cpp720 case BHIDDEN: in drawLineForBoxSide()
937 case BHIDDEN: in drawArcForBoxSide()
DRenderBlock.cpp2330 bool renderRule = ruleStyle > BHIDDEN && !ruleTransparent && ruleWidth <= colGap; in paintColumnRules()
/external/webkit/Source/WebCore/rendering/style/
DBorderData.h65 if (!m_image.hasImage() && (m_left.style() == BNONE || m_left.style() == BHIDDEN)) in borderLeftWidth()
72 if (!m_image.hasImage() && (m_right.style() == BNONE || m_right.style() == BHIDDEN)) in borderRightWidth()
79 if (!m_image.hasImage() && (m_top.style() == BNONE || m_top.style() == BHIDDEN)) in borderTopWidth()
86 if (!m_image.hasImage() && (m_bottom.style() == BNONE || m_bottom.style() == BHIDDEN)) in borderBottomWidth()
DStyleMultiColData.h51 if (m_rule.style() == BNONE || m_rule.style() == BHIDDEN) in ruleWidth()
DBorderValue.h54 return nonZero(checkStyle) && !isTransparent() && (!checkStyle || m_style != BHIDDEN);
DCollapsedBorderValue.h49 EBorderStyle style() const { return m_border ? m_border->style() : BHIDDEN; } in style()
DRenderStyle.cpp441 && ((borderTopStyle() == BHIDDEN && other->borderTopStyle() == BNONE) in diff()
442 || (borderTopStyle() == BNONE && other->borderTopStyle() == BHIDDEN) in diff()
443 || (borderBottomStyle() == BHIDDEN && other->borderBottomStyle() == BNONE) in diff()
444 || (borderBottomStyle() == BNONE && other->borderBottomStyle() == BHIDDEN) in diff()
445 || (borderLeftStyle() == BHIDDEN && other->borderLeftStyle() == BNONE) in diff()
446 || (borderLeftStyle() == BNONE && other->borderLeftStyle() == BHIDDEN) in diff()
447 || (borderRightStyle() == BHIDDEN && other->borderRightStyle() == BNONE) in diff()
448 || (borderRightStyle() == BNONE && other->borderRightStyle() == BHIDDEN))) in diff()
DRenderStyleConstants.h85 enum EBorderStyle { BNONE, BHIDDEN, INSET, GROOVE, RIDGE, OUTSET, DOTTED, DASHED, SOLID, DOUBLE }; enumerator
DRenderStyle.h454 bool hasOutline() const { return outlineWidth() > 0 && outlineStyle() > BHIDDEN; } in hasOutline()
/external/webkit/Source/WebCore/css/
DCSSPrimitiveValueMappings.h57 case BHIDDEN: in CSSPrimitiveValue()
/external/webkit/Source/WebCore/
DChangeLog-2006-12-3112082 Check for BHIDDEN in isVisible() also.
22637 greater than 0 and outlineStyle is greater than BHIDDEN.
DChangeLog-2005-08-2349564 … (khtml::RenderStyle::borderLeftWidth): BHIDDEN also should be treated like BNONE when it comes