Home
last modified time | relevance | path

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

/packages/apps/Email/src/com/android/email/mail/store/imap/
DImapUtility.java106 int colonPos = range.indexOf(':'); in getImapRangeValues() local
107 if (colonPos > 0) { in getImapRangeValues()
108 int first = Integer.parseInt(range.substring(0, colonPos)); in getImapRangeValues()
109 int second = Integer.parseInt(range.substring(colonPos + 1)); in getImapRangeValues()