Home | History | Annotate | Download | only in svg

Lines Matching refs:cssPixelsPerInch

160         return m_valueInSpecifiedUnits / 2.54f * cssPixelsPerInch;
162 return m_valueInSpecifiedUnits / 25.4f * cssPixelsPerInch;
164 return m_valueInSpecifiedUnits * cssPixelsPerInch;
166 return m_valueInSpecifiedUnits / 72.0f * cssPixelsPerInch;
168 return m_valueInSpecifiedUnits / 6.0f * cssPixelsPerInch;
195 m_valueInSpecifiedUnits = value * 2.54f / cssPixelsPerInch;
198 m_valueInSpecifiedUnits = value * 25.4f / cssPixelsPerInch;
201 m_valueInSpecifiedUnits = value / cssPixelsPerInch;
204 m_valueInSpecifiedUnits = value * 72.0f / cssPixelsPerInch;
207 m_valueInSpecifiedUnits = value / 6.0f * cssPixelsPerInch;