Home
last modified time | relevance | path

Searched refs:secondColon (Results 1 – 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/java/sql/
DTime.java95 int secondColon; in valueOf() local
100 secondColon = s.indexOf(':', firstColon+1); in valueOf()
101 if ((firstColon > 0) & (secondColon > 0) & in valueOf()
102 (secondColon < s.length()-1)) { in valueOf()
105 Integer.parseInt(s.substring(firstColon+1, secondColon)); in valueOf()
106 second = Integer.parseInt(s.substring(secondColon+1)); in valueOf()
DTimestamp.java186 int secondColon = 0; in valueOf() local
213 secondColon = time_s.indexOf(':', firstColon+1); in valueOf()
214 period = time_s.indexOf('.', secondColon+1); in valueOf()
239 if ((firstColon > 0) & (secondColon > 0) & in valueOf()
240 (secondColon < time_s.length()-1)) { in valueOf()
243 Integer.parseInt(time_s.substring(firstColon+1, secondColon)); in valueOf()
246 Integer.parseInt(time_s.substring(secondColon+1, period)); in valueOf()
257 second = Integer.parseInt(time_s.substring(secondColon+1)); in valueOf()