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

  /external/webkit/Source/WebCore/svg/animation/
SVGSMILElement.h 119 enum BeginOrEnd {
124 SMILTime findInstanceTime(BeginOrEnd, SMILTime minimumTime, bool equalsMinimumOK) const;
144 Condition(Type, BeginOrEnd, const String& baseID, const String& name, SMILTime offset, int repeats = -1);
146 BeginOrEnd m_beginOrEnd;
154 bool parseCondition(const String&, BeginOrEnd beginOrEnd);
155 void parseBeginOrEnd(const String&, BeginOrEnd beginOrEnd);
SVGSMILElement.cpp 106 SVGSMILElement::Condition::Condition(Type type, BeginOrEnd beginOrEnd, const String& baseID, const String& name, SMILTime offset, int repeats)
108 , m_beginOrEnd(beginOrEnd)
281 bool SVGSMILElement::parseCondition(const String& value, BeginOrEnd beginOrEnd)
340 m_conditions.append(Condition(type, beginOrEnd, baseID, nameString, offset, repeats));
342 if (type == Condition::EventBase && beginOrEnd == End)
356 void SVGSMILElement::parseBeginOrEnd(const String& parseString, BeginOrEnd beginOrEnd)
358 Vector<SMILTime>& timeList = beginOrEnd == Begin ? m_beginTimes : m_endTimes
    [all...]

Completed in 591 milliseconds