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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
GridLength.h 46 , m_type(LengthType)
56 bool isLength() const { return m_type == LengthType; }
63 bool isPercentage() const { return m_type == LengthType && m_length.isPercent(); }
70 bool isContentSized() const { return m_type == LengthType && (m_length.isAuto() || m_length.isMinContent() || m_length.isMaxContent()); }
78 LengthType,
BorderImageLength.h 53 , m_type(LengthType)
58 bool isLength() const { return m_type == LengthType; }
81 LengthType,
  /external/chromium_org/third_party/WebKit/Source/platform/
Length.h 40 enum LengthType {
74 Length(LengthType t)
80 Length(int v, LengthType t, bool q = false)
86 Length(LayoutUnit v, LengthType t, bool q = false)
92 Length(float v, LengthType t, bool q = false)
98 Length(double v, LengthType t, bool q = false)
200 LengthType type() const { return static_cast<LengthType>(m_type); }
208 void setValue(LengthType t, int value)
224 void setValue(LengthType t, float value
    [all...]
LengthBox.h 38 LengthBox(LengthType t)
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FilterOperation.cpp 121 LengthType lengthType = m_stdDeviation.type();
123 return BlurFilterOperation::create(m_stdDeviation.blend(Length(lengthType), progress, ValueRangeNonNegative));

Completed in 63 milliseconds