AbsoluteCoordinates   60 Source/core/svg/SVGPathBlender.cpp     float animValue = blend(from, m_fromMode == AbsoluteCoordinates ? to + toValue : to - toValue, m_progress);
AbsoluteCoordinates   67 Source/core/svg/SVGPathBlender.cpp     return m_toMode == AbsoluteCoordinates ? animValue + currentValue : animValue - currentValue;
AbsoluteCoordinates   84 Source/core/svg/SVGPathBlender.cpp     if (m_fromMode == AbsoluteCoordinates)
AbsoluteCoordinates   96 Source/core/svg/SVGPathBlender.cpp     if (m_toMode == AbsoluteCoordinates)
AbsoluteCoordinates  112 Source/core/svg/SVGPathBlender.cpp     m_fromCurrentPoint = m_fromMode == AbsoluteCoordinates ? fromTargetPoint : m_fromCurrentPoint + fromTargetPoint;
AbsoluteCoordinates  113 Source/core/svg/SVGPathBlender.cpp     m_toCurrentPoint = m_toMode == AbsoluteCoordinates ? toTargetPoint : m_toCurrentPoint + toTargetPoint;
AbsoluteCoordinates  126 Source/core/svg/SVGPathBlender.cpp     m_fromCurrentPoint = m_fromMode == AbsoluteCoordinates ? fromTargetPoint : m_fromCurrentPoint + fromTargetPoint;
AbsoluteCoordinates  127 Source/core/svg/SVGPathBlender.cpp     m_toCurrentPoint = m_toMode == AbsoluteCoordinates ? toTargetPoint : m_toCurrentPoint + toTargetPoint;
AbsoluteCoordinates  140 Source/core/svg/SVGPathBlender.cpp     m_fromCurrentPoint.setX(m_fromMode == AbsoluteCoordinates ? fromX : m_fromCurrentPoint.x() + fromX);
AbsoluteCoordinates  141 Source/core/svg/SVGPathBlender.cpp     m_toCurrentPoint.setX(m_toMode == AbsoluteCoordinates ? toX : m_toCurrentPoint.x() + toX);
AbsoluteCoordinates  154 Source/core/svg/SVGPathBlender.cpp     m_fromCurrentPoint.setY(m_fromMode == AbsoluteCoordinates ? fromY : m_fromCurrentPoint.y() + fromY);
AbsoluteCoordinates  155 Source/core/svg/SVGPathBlender.cpp     m_toCurrentPoint.setY(m_toMode == AbsoluteCoordinates ? toY : m_toCurrentPoint.y() + toY);
AbsoluteCoordinates  175 Source/core/svg/SVGPathBlender.cpp     m_fromCurrentPoint = m_fromMode == AbsoluteCoordinates ? fromTargetPoint : m_fromCurrentPoint + fromTargetPoint;
AbsoluteCoordinates  176 Source/core/svg/SVGPathBlender.cpp     m_toCurrentPoint = m_toMode == AbsoluteCoordinates ? toTargetPoint : m_toCurrentPoint + toTargetPoint;
AbsoluteCoordinates  193 Source/core/svg/SVGPathBlender.cpp     m_fromCurrentPoint = m_fromMode == AbsoluteCoordinates ? fromTargetPoint : m_fromCurrentPoint + fromTargetPoint;
AbsoluteCoordinates  194 Source/core/svg/SVGPathBlender.cpp     m_toCurrentPoint = m_toMode == AbsoluteCoordinates ? toTargetPoint : m_toCurrentPoint + toTargetPoint;
AbsoluteCoordinates  211 Source/core/svg/SVGPathBlender.cpp     m_fromCurrentPoint = m_fromMode == AbsoluteCoordinates ? fromTargetPoint : m_fromCurrentPoint + fromTargetPoint;
AbsoluteCoordinates  212 Source/core/svg/SVGPathBlender.cpp     m_toCurrentPoint = m_toMode == AbsoluteCoordinates ? toTargetPoint : m_toCurrentPoint + toTargetPoint;
AbsoluteCoordinates  225 Source/core/svg/SVGPathBlender.cpp     m_fromCurrentPoint = m_fromMode == AbsoluteCoordinates ? fromTargetPoint : m_fromCurrentPoint + fromTargetPoint;
AbsoluteCoordinates  226 Source/core/svg/SVGPathBlender.cpp     m_toCurrentPoint = m_toMode == AbsoluteCoordinates ? toTargetPoint : m_toCurrentPoint + toTargetPoint;
AbsoluteCoordinates  268 Source/core/svg/SVGPathBlender.cpp     m_fromCurrentPoint = m_fromMode == AbsoluteCoordinates ? fromTargetPoint : m_fromCurrentPoint + fromTargetPoint;
AbsoluteCoordinates  269 Source/core/svg/SVGPathBlender.cpp     m_toCurrentPoint = m_toMode == AbsoluteCoordinates ? toTargetPoint : m_toCurrentPoint + toTargetPoint;
AbsoluteCoordinates  276 Source/core/svg/SVGPathBlender.cpp         return AbsoluteCoordinates;
AbsoluteCoordinates  282 Source/core/svg/SVGPathBlender.cpp     return AbsoluteCoordinates;
AbsoluteCoordinates  294 Source/core/svg/SVGPathBlender.cpp     if (fromMode == AbsoluteCoordinates)
AbsoluteCoordinates   39 Source/core/svg/SVGPathBuilder.cpp     m_current = mode == AbsoluteCoordinates ? targetPoint : m_current + targetPoint;
AbsoluteCoordinates   48 Source/core/svg/SVGPathBuilder.cpp     m_current = mode == AbsoluteCoordinates ? targetPoint : m_current + targetPoint;
AbsoluteCoordinates   61 Source/core/svg/SVGPathParser.cpp         m_consumer->moveTo(m_currentPoint, m_closePath, AbsoluteCoordinates);
AbsoluteCoordinates   79 Source/core/svg/SVGPathParser.cpp         m_consumer->lineTo(m_currentPoint, AbsoluteCoordinates);
AbsoluteCoordinates   96 Source/core/svg/SVGPathParser.cpp         m_consumer->lineTo(m_currentPoint, AbsoluteCoordinates);
AbsoluteCoordinates  113 Source/core/svg/SVGPathParser.cpp         m_consumer->lineTo(m_currentPoint, AbsoluteCoordinates);
AbsoluteCoordinates  133 Source/core/svg/SVGPathParser.cpp         m_consumer->curveToCubic(point1, point2, targetPoint, AbsoluteCoordinates);
AbsoluteCoordinates  164 Source/core/svg/SVGPathParser.cpp         m_consumer->curveToCubic(point1, point2, targetPoint, AbsoluteCoordinates);
AbsoluteCoordinates  193 Source/core/svg/SVGPathParser.cpp         m_consumer->curveToCubic(point1, point2, targetPoint, AbsoluteCoordinates);
AbsoluteCoordinates  228 Source/core/svg/SVGPathParser.cpp         m_consumer->curveToCubic(point1, point2, targetPoint, AbsoluteCoordinates);
AbsoluteCoordinates  267 Source/core/svg/SVGPathParser.cpp             m_consumer->lineTo(m_currentPoint, AbsoluteCoordinates);
AbsoluteCoordinates  311 Source/core/svg/SVGPathParser.cpp         m_mode = AbsoluteCoordinates;
AbsoluteCoordinates  490 Source/core/svg/SVGPathParser.cpp                                  pointTransform.mapPoint(targetPoint), AbsoluteCoordinates);
AbsoluteCoordinates   63 Source/core/svg/SVGPathSegListBuilder.cpp     if (mode == AbsoluteCoordinates)
AbsoluteCoordinates   73 Source/core/svg/SVGPathSegListBuilder.cpp     if (mode == AbsoluteCoordinates)
AbsoluteCoordinates   83 Source/core/svg/SVGPathSegListBuilder.cpp     if (mode == AbsoluteCoordinates)
AbsoluteCoordinates   93 Source/core/svg/SVGPathSegListBuilder.cpp     if (mode == AbsoluteCoordinates)
AbsoluteCoordinates  103 Source/core/svg/SVGPathSegListBuilder.cpp     if (mode == AbsoluteCoordinates)
AbsoluteCoordinates  113 Source/core/svg/SVGPathSegListBuilder.cpp     if (mode == AbsoluteCoordinates)
AbsoluteCoordinates  123 Source/core/svg/SVGPathSegListBuilder.cpp     if (mode == AbsoluteCoordinates)
AbsoluteCoordinates  133 Source/core/svg/SVGPathSegListBuilder.cpp     if (mode == AbsoluteCoordinates)
AbsoluteCoordinates  143 Source/core/svg/SVGPathSegListBuilder.cpp     if (mode == AbsoluteCoordinates)
AbsoluteCoordinates   80 Source/core/svg/SVGPathStringBuilder.cpp     emitCommand1Arg(m_stringBuilder, (mode == AbsoluteCoordinates) ? 'M' : 'm', targetPoint);
AbsoluteCoordinates   85 Source/core/svg/SVGPathStringBuilder.cpp     emitCommand1Arg(m_stringBuilder, (mode == AbsoluteCoordinates) ? 'L' : 'l', targetPoint);
AbsoluteCoordinates   90 Source/core/svg/SVGPathStringBuilder.cpp     emitCommand1Arg(m_stringBuilder, (mode == AbsoluteCoordinates) ? 'H' : 'h', x);
AbsoluteCoordinates   95 Source/core/svg/SVGPathStringBuilder.cpp     emitCommand1Arg(m_stringBuilder, (mode == AbsoluteCoordinates) ? 'V' : 'v', y);
AbsoluteCoordinates  100 Source/core/svg/SVGPathStringBuilder.cpp     m_stringBuilder.append((mode == AbsoluteCoordinates) ? 'C' : 'c');
AbsoluteCoordinates  109 Source/core/svg/SVGPathStringBuilder.cpp     emitCommand2Arg(m_stringBuilder, (mode == AbsoluteCoordinates) ? 'S' : 's', point2, targetPoint);
AbsoluteCoordinates  114 Source/core/svg/SVGPathStringBuilder.cpp     emitCommand2Arg(m_stringBuilder, (mode == AbsoluteCoordinates) ? 'Q' : 'q', point1, targetPoint);
AbsoluteCoordinates  119 Source/core/svg/SVGPathStringBuilder.cpp     emitCommand1Arg(m_stringBuilder, (mode == AbsoluteCoordinates) ? 'T' : 't', targetPoint);
AbsoluteCoordinates  124 Source/core/svg/SVGPathStringBuilder.cpp     m_stringBuilder.append((mode == AbsoluteCoordinates) ? 'A' : 'a');