Home | History | Annotate | Download | only in platform

Lines Matching defs:toDouble

97     double toDouble() const { return static_cast<double>(m_value) / kFixedPointDenominator; }
111 operator double() const { return toDouble(); }
310 return a.toDouble() < b;
330 return a.toDouble() > b;
355 return a > b.toDouble();
426 return a.toDouble() * b;
491 return a * b.toDouble();
509 return a.toDouble() / b;
544 return a / b.toDouble();
591 return a.toDouble() + b;
606 return a + b.toDouble();