Searched refs:time_s (Results 1 – 1 of 1) sorted by relevance
173 String time_s; in valueOf() local200 time_s = s.substring(dividingSpace+1); in valueOf()210 if (time_s == null) in valueOf()212 firstColon = time_s.indexOf(':'); in valueOf()213 secondColon = time_s.indexOf(':', firstColon+1); in valueOf()214 period = time_s.indexOf('.', secondColon+1); in valueOf()240 (secondColon < time_s.length()-1)) { in valueOf()241 hour = Integer.parseInt(time_s.substring(0, firstColon)); in valueOf()243 Integer.parseInt(time_s.substring(firstColon+1, secondColon)); in valueOf()244 if ((period > 0) & (period < time_s.length()-1)) { in valueOf()[all …]