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/WebCore/svg/animation/
SVGSMILElement.cpp 511 SMILTime clockValue = parseClockValue(value);
512 return m_cachedDur = clockValue <= 0 ? SMILTime::unresolved() : clockValue;
520 SMILTime clockValue = parseClockValue(value);
521 return m_cachedRepeatDur = clockValue < 0 ? SMILTime::unresolved() : clockValue;
    [all...]

Completed in 36 milliseconds