Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/platform/
DLength.h38 enum LengthType { enum
63 Length(LengthType t) in Length()
69 Length(int v, LengthType t, bool q = false)
75 Length(LayoutUnit v, LengthType t, bool q = false)
81 Length(float v, LengthType t, bool q = false)
87 Length(double v, LengthType t, bool q = false)
152 LengthType type() const { return static_cast<LengthType>(m_type); } in type()
160 void setValue(LengthType t, int value) in setValue()
176 void setValue(LengthType t, float value) in setValue()
183 void setValue(LengthType t, LayoutUnit value) in setValue()
[all …]
DLengthBox.h40 LengthBox(LengthType t) in LengthBox()
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DGridLength.h46 , m_type(LengthType) in GridLength()
53 , m_type(LengthType) in GridLength()
57 bool isLength() const { return m_type == LengthType; } in isLength()
75 …bool isContentSized() const { return m_type == LengthType && (m_length.isAuto() || m_length.isMinC… in isContentSized()
83 LengthType, enumerator
DBorderImageLength.h54 , m_type(LengthType) in BorderImageLength()
59 bool isLength() const { return m_type == LengthType; } in isLength()
82 LengthType, enumerator
DGridTrackSize.h58 GridTrackSize(LengthType type) in GridTrackSize()
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
DFilterOperation.cpp121 LengthType lengthType = m_stdDeviation.type(); in blend()