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

  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioParamTimeline.h 67 class ParamEvent {
78 ParamEvent(Type type, float value, double time, double timeConstant, double duration, PassRefPtr<Float32Array> curve)
104 void insertEvent(const ParamEvent&);
107 Vector<ParamEvent> m_events;
AudioParamTimeline.cpp 98 insertEvent(ParamEvent(ParamEvent::SetValue, value, time, 0, 0, nullptr));
109 insertEvent(ParamEvent(ParamEvent::LinearRampToValue, value, time, 0, 0, nullptr));
120 insertEvent(ParamEvent(ParamEvent::ExponentialRampToValue, value, time, 0, 0, nullptr));
132 insertEvent(ParamEvent(ParamEvent::SetTarget, target, time, timeConstant, 0, nullptr));
143 insertEvent(ParamEvent(ParamEvent::SetValueCurve, 0, time, 0, duration, curve))
    [all...]

Completed in 73 milliseconds