Home
last modified time | relevance | path

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

/frameworks/opt/calendar/src/com/android/calendarcommon2/
DTime.java457 private void checkChar(String s, int spos, char expected) { in checkChar() argument
458 final char c = s.charAt(spos); in checkChar()
462 (int) c, spos, (int) expected, expected)); in checkChar()
466 private int getChar(String s, int spos, int mul) { in getChar() argument
467 final char c = s.charAt(spos); in getChar()
471 throw new IllegalArgumentException("Parse error at pos=" + spos); in getChar()
/frameworks/base/core/java/android/text/format/
DTime.java493 private void checkChar(String s, int spos, char expected) { in checkChar() argument
494 char c = s.charAt(spos); in checkChar()
498 (int) c, spos, (int) expected, expected)); in checkChar()
502 private static int getChar(String s, int spos, int mul) { in getChar() argument
503 char c = s.charAt(spos); in getChar()
507 throw new TimeFormatException("Parse error at pos=" + spos); in getChar()