Home | History | Annotate | Download | only in smil

Lines Matching defs:dur

109         float dur = 0;
111 String durString = mSmilElement.getAttribute("dur");
113 dur = TimeImpl.parseClockValue(durString) / 1000f;
119 return dur;
152 // end = begin + dur
190 * - If none of the attributes dur, end, repeatCount or repeatDur are specified on
196 if ((mSmilElement.getAttribute("dur").length() == 0) &&
284 public void setDur(float dur) throws DOMException {
285 // In SMIL 3.0, the dur could be a timecount-value which may contain fractions.
286 // However, in MMS 1.3, the dur SHALL be expressed in integer milliseconds.
287 mSmilElement.setAttribute("dur", Integer.toString((int)(dur * 1000)) + "ms");