OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ImapList
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Email/tests/src/com/android/email/mail/store/imap/
ImapListTest.java
22
import com.android.email.mail.store.imap.
ImapList
;
37
ImapList
list = new
ImapList
();
57
* Test for {@link
ImapList
#EMPTY}.
60
assertTrue(
ImapList
.EMPTY.isEmpty());
65
ImapList
list = buildList(
ImapList
.EMPTY, ABC, LIST_1, ImapString.EMPTY);
92
assertFalse(
ImapList
.EMPTY.is(0, "abc"));
96
ImapList
list = buildList(
ImapList
.EMPTY, STRING_1, LIST_1, ImapString.EMPTY)
[
all
...]
/packages/apps/Email/src/com/android/email/mail/store/imap/
ImapList.java
24
public class
ImapList
extends ImapElement {
26
* {@link
ImapList
} representing an empty list.
28
public static final
ImapList
EMPTY = new
ImapList
() {
95
* If {@code index} is out of range or not a list, returns {@link
ImapList
#EMPTY}.
97
public final
ImapList
getListOrEmpty(int index) {
99
return el.isList() ? (
ImapList
) el : EMPTY;
125
* Return an {@link
ImapList
} keyed by {@code key}.
126
* Return {@link
ImapList
#EMPTY} if not found.
128
public final
ImapList
getKeyedListOrEmpty(String key)
[
all
...]
Completed in 54 milliseconds