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

  /external/webkit/WebCore/svg/animation/
SVGSMILElement.h 108 enum BeginOrEnd { Begin, End };
109 SMILTime findInstanceTime(BeginOrEnd beginOrEnd, SMILTime minimumTime, bool equalsMinimumOK) const;
124 Condition(Type, BeginOrEnd beginOrEnd, const String& baseID, const String& name, SMILTime offset, int repeats = -1);
126 BeginOrEnd m_beginOrEnd;
134 bool parseCondition(const String&, BeginOrEnd beginOrEnd);
135 void parseBeginOrEnd(const String&, BeginOrEnd beginOrEnd);
    [all...]
SVGSMILElement.cpp 111 SVGSMILElement::Condition::Condition(Type type, BeginOrEnd beginOrEnd, const String& baseID, const String& name, SMILTime offset, int repeats)
113 , m_beginOrEnd(beginOrEnd)
254 bool SVGSMILElement::parseCondition(const String& value, BeginOrEnd beginOrEnd)
313 m_conditions.append(Condition(type, beginOrEnd, baseID, nameString, offset, repeats));
315 if (type == Condition::EventBase && beginOrEnd == End)
329 void SVGSMILElement::parseBeginOrEnd(const String& parseString, BeginOrEnd beginOrEnd)
331 Vector<SMILTime>& timeList = beginOrEnd == Begin ? m_beginTimes : m_endTimes
    [all...]

Completed in 26 milliseconds