Home | History | Annotate | Download | only in smil

Lines Matching refs:timeValue

62      * @param timeValue A String in the representation specified above
65 * @exception java.lang.IllegalArgumentException if the timeValue input
70 TimeImpl(String timeValue, int constraints) {
80 // Will throw NullPointerException if timeValue is null
81 if (timeValue.equals("indefinite")
86 if (timeValue.startsWith("+")) {
87 timeValue = timeValue.substring(1);
88 } else if (timeValue.startsWith("-")) {
89 timeValue = timeValue.substring(1);
92 mResolvedOffset = sign*parseClockValue(timeValue)/1000.0;