Home
last modified time | relevance | path

Searched refs:m_firstY (Results 1 – 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/css/
DCSSGradientValue.cpp431 result += m_firstY->cssText() + ", "; in cssText()
450 if (m_firstX && m_firstY) in cssText()
451 result += m_firstX->cssText() + " " + m_firstY->cssText(); in cssText()
452 else if (m_firstX || m_firstY) { in cssText()
456 if (m_firstY) in cssText()
457 result += m_firstY->cssText(); in cssText()
541 … firstPoint = computeEndPoint(m_firstX.get(), m_firstY.get(), renderer->style(), rootStyle, size); in createGradient()
548 if (m_firstY) in createGradient()
569 result += m_firstY->cssText() + ", "; in cssText()
590 if (m_firstX && m_firstY) { in cssText()
[all …]
DCSSGradientValue.h52 void setFirstY(PassRefPtr<CSSPrimitiveValue> val) { m_firstY = val; } in setFirstY()
89 RefPtr<CSSPrimitiveValue> m_firstY; variable