HomeSort by relevance Sort by last modified time
    Searched refs:LengthType (Results 1 - 3 of 3) sorted by null

  /external/webkit/WebCore/platform/
Length.h 35 enum LengthType { Auto, Relative, Percent, Fixed, Static, Intrinsic, MinIntrinsic };
43 Length(LengthType t)
48 Length(int v, LengthType t, bool q = false)
54 Length(double v, LengthType t, bool q = false)
76 LengthType type() const { return static_cast<LengthType>(m_value & 7); }
79 void setValue(LengthType t, int value)
85 void setRawValue(LengthType t, int value) { m_value = value * 16 | (m_value & 0x8) | t; }
95 void setValue(LengthType t, double value)
174 LengthType resultType = type()
    [all...]
LengthBox.h 33 LengthBox(LengthType t)
  /external/webkit/WebCore/rendering/
RenderTable.cpp 218 LengthType widthType = style()->width().type();
    [all...]

Completed in 106 milliseconds