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

  /packages/apps/Mms/src/com/android/mms/dom/smil/
TimeImpl.java 122 * @param clockValue A String in the representation specified above
125 * @exception java.lang.IllegalArgumentException if the clockValue input
127 * @exception java.lang.NullPointerException if the clockValue string is
130 public static float parseClockValue(String clockValue) {
134 // Will throw NullPointerException if clockValue is null
135 clockValue = clockValue.trim();
138 if (clockValue.endsWith("ms")) {
139 result = parseFloat(clockValue, 2, true);
140 } else if (clockValue.endsWith("s"))
    [all...]
  /external/webkit/Source/WebCore/svg/animation/
SVGSMILElement.cpp 557 SMILTime clockValue = parseClockValue(value);
558 return m_cachedDur = clockValue <= 0 ? SMILTime::unresolved() : clockValue;
566 SMILTime clockValue = parseClockValue(value);
567 m_cachedRepeatDur = clockValue <= 0 ? SMILTime::unresolved() : clockValue;
    [all...]

Completed in 119 milliseconds