HomeSort by relevance Sort by last modified time
    Searched refs:m_consumer (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathParser.h 42 void setCurrentConsumer(SVGPathConsumer* consumer) { m_consumer = consumer; }
60 SVGPathConsumer* m_consumer; member in class:WebCore::SVGPathParser
SVGPathParser.cpp 36 : m_consumer(0)
46 m_consumer->closePath();
61 m_consumer->moveTo(m_currentPoint, m_closePath, AbsoluteCoordinates);
63 m_consumer->moveTo(targetPoint, m_closePath, m_mode);
79 m_consumer->lineTo(m_currentPoint, AbsoluteCoordinates);
81 m_consumer->lineTo(targetPoint, m_mode);
96 m_consumer->lineTo(m_currentPoint, AbsoluteCoordinates);
98 m_consumer->lineToHorizontal(toX, m_mode);
113 m_consumer->lineTo(m_currentPoint, AbsoluteCoordinates);
115 m_consumer->lineToVertical(toY, m_mode)
    [all...]
SVGPathBlender.cpp 33 , m_consumer(0)
111 m_consumer->moveTo(blendAnimatedFloatPoint(fromTargetPoint, toTargetPoint), false, m_isInFirstHalfOfAnimation ? m_fromMode : m_toMode);
125 m_consumer->lineTo(blendAnimatedFloatPoint(fromTargetPoint, toTargetPoint), m_isInFirstHalfOfAnimation ? m_fromMode : m_toMode);
139 m_consumer->lineToHorizontal(blendAnimatedDimensonalFloat(fromX, toX, BlendHorizontal), m_isInFirstHalfOfAnimation ? m_fromMode : m_toMode);
153 m_consumer->lineToVertical(blendAnimatedDimensonalFloat(fromY, toY, BlendVertical), m_isInFirstHalfOfAnimation ? m_fromMode : m_toMode);
171 m_consumer->curveToCubic(blendAnimatedFloatPoint(fromPoint1, toPoint1),
190 m_consumer->curveToCubicSmooth(blendAnimatedFloatPoint(fromPoint2, toPoint2),
208 m_consumer->curveToQuadratic(blendAnimatedFloatPoint(fromPoint1, toPoint1),
224 m_consumer->curveToQuadraticSmooth(blendAnimatedFloatPoint(fromTargetPoint, toTargetPoint), m_isInFirstHalfOfAnimation ? m_fromMode : m_toMode);
252 m_consumer->arcTo(fromRx + toRx * m_addTypesCount
    [all...]
SVGPathBlender.h 59 SVGPathConsumer* m_consumer; member in class:WebCore::SVGPathBlender
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/support/
WebMediaStreamSource.cpp 194 WebAudioDestinationConsumer* consumer() { return m_consumer; }
197 explicit ConsumerWrapper(WebAudioDestinationConsumer* consumer) : m_consumer(consumer) { }
199 // m_consumer is not owned by this class.
200 WebAudioDestinationConsumer* m_consumer; member in class:WebKit::ConsumerWrapper
205 m_consumer->setFormat(numberOfChannels, sampleRate);
219 m_consumer->consumeAudio(busVector, numberOfFrames);

Completed in 386 milliseconds