Home
last modified time | relevance | path

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

/packages/apps/Email/src/com/android/email/mail/store/
DImapResponseParser.java173 private ImapList parseList() throws IOException { in parseList()
175 ImapList list = new ImapList(); in parseList()
283 public class ImapList extends ArrayList<Object> { class in ImapResponseParser
284 public ImapList getList(int index) { in getList()
285 return (ImapList)get(index); in getList()
317 public ImapList getKeyedList(Object key) { in getKeyedList()
318 return (ImapList)getKeyedValue(key); in getKeyedList()
355 public class ImapResponse extends ImapList {
DImapStore.java37 import com.android.email.mail.store.ImapResponseParser.ImapList;
221 ImapList attributes = response.getList(1); in getPersonalNamespaces()
516 ImapList status = response.getList(2); in getUnreadMessageCount()
693 ImapList fetchList = (ImapList)response.getKeyedValue("FETCH"); in fetch()
703 ImapList flags = fetchList.getKeyedList("FLAGS"); in fetch()
735 ImapList bs = fetchList.getKeyedList("BODYSTRUCTURE"); in fetch()
810 private void parseBodyStructure(ImapList bs, Part part, String id) in parseBodyStructure()
812 if (bs.get(0) instanceof ImapList) { in parseBodyStructure()
818 if (bs.get(i) instanceof ImapList) { in parseBodyStructure()
865 ImapList bodyParams = null; in parseBodyStructure()
[all …]
/packages/apps/Email/tests/src/com/android/email/mail/store/
DImapResponseParserUnitTests.java20 import com.android.email.mail.store.ImapResponseParser.ImapList;
79 assertEquals("Line 3-4 word 3 class", ImapList.class, line3.get(2).getClass()); in testParseLiteral()
DImapStoreUnitTests.java96 ImapResponseParser.ImapList list = parser.new ImapList(); in doTestImapList()