Searched defs:parseFloat (Results 1 - 1 of 1) sorted by relevance

/packages/apps/Mms/src/com/android/mms/dom/smil/
H A DTimeImpl.java139 result = parseFloat(clockValue, 2, true);
141 result = 1000*parseFloat(clockValue, 1, true);
143 result = 60000*parseFloat(clockValue, 3, true);
145 result = 3600000*parseFloat(clockValue, 1, true);
149 return parseFloat(clockValue, 0, true) * 1000;
162 result = 3600000*(int)parseFloat(timeValues[0], 0, false);
169 int minutes = (int)parseFloat(timeValues[indexOfMinutes], 0, false);
177 float seconds = parseFloat(timeValues[indexOfMinutes + 1], 0, true);
207 private static float parseFloat(String value, int ignoreLast, boolean parseDecimal) { method in class:TimeImpl
220 result = Float.parseFloat(valu
[all...]

Completed in 187 milliseconds