HomeSort by relevance Sort by last modified time
    Searched defs:borderStart (Results 1 - 4 of 4) sorted by null

  /external/webkit/Source/WebCore/rendering/
RenderBoxModelObject.h 86 virtual int borderStart() const { return style()->borderStartWidth(); }
92 int borderAndPaddingLogicalWidth() const { return borderStart() + borderEnd() + paddingStart() + paddingEnd(); }
95 int borderAndPaddingStart() const { return borderStart() + paddingStart(); }
109 bool hasInlineDirectionBordersOrPadding() const { return borderStart() || borderEnd() || paddingStart()|| paddingEnd(); }
RenderTable.h 52 int borderStart() const { return m_borderStart; }
60 return style()->isLeftToRightDirection() ? borderStart() : borderEnd();
67 return style()->isLeftToRightDirection() ? borderEnd() : borderStart();
75 return style()->isLeftToRightDirection() ? borderStart() : borderEnd();
82 return style()->isLeftToRightDirection() ? borderEnd() : borderStart();
171 return borderStart() + borderEnd() +
RenderTableCell.cpp 408 CollapsedBorderValue result(&style()->borderStart(), style()->visitedDependentColor(start), BCELL);
418 result = chooseBorder(result, CollapsedBorderValue(&parent()->style()->borderStart(), parent()->style()->visitedDependentColor(start), BROW));
423 result = chooseBorder(result, CollapsedBorderValue(&section()->style()->borderStart(), section()->style()->visitedDependentColor(start), BROWGROUP));
433 result = chooseBorder(result, CollapsedBorderValue(&colElt->style()->borderStart(), colElt->style()->visitedDependentColor(start), BCOL));
437 result = chooseBorder(result, CollapsedBorderValue(&colElt->parent()->style()->borderStart(), colElt->parent()->style()->visitedDependentColor(start), BCOLGROUP));
454 result = chooseBorder(result, CollapsedBorderValue(&table->style()->borderStart(), table->style()->visitedDependentColor(start), BTABLE));
477 CollapsedBorderValue startBorder = CollapsedBorderValue(&nextCell->style()->borderStart(), nextCell->style()->visitedDependentColor(start), BCELL);
513 CollapsedBorderValue startBorder = CollapsedBorderValue(&colElt->style()->borderStart(), colElt->style()->visitedDependentColor(start), BCOL);
729 int RenderTableCell::borderStart() const
731 return table()->collapseBorders() ? borderHalfStart(false) : RenderBlock::borderStart();
    [all...]
  /external/webkit/Source/WebCore/rendering/style/
RenderStyle.cpp     [all...]

Completed in 85 milliseconds