Home | History | Annotate | Download | only in smil

Lines Matching refs:repeatDur

190          *  - If none of the attributes dur, end, repeatCount or repeatDur are specified on
199 (mSmilElement.getAttribute("repeatDur").length() == 0)) {
256 float repeatDur =
257 TimeImpl.parseClockValue(mSmilElement.getAttribute("repeatDur"));
258 if (repeatDur > 0) {
259 return repeatDur;
319 public void setRepeatDur(float repeatDur) throws DOMException {
321 if (repeatDur > 0) {
322 repeatDurString = Float.toString(repeatDur) + "ms";
324 mSmilElement.setAttribute("repeatDur", repeatDurString);