OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:MessageListContext
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Email/src/com/android/email/
MessageListContext.java
36
public class
MessageListContext
implements Parcelable {
40
* the creation of a new {@link
MessageListContext
}
56
private
MessageListContext
(long accountId, long searchMailboxId, SearchParams searchParams) {
69
public static
MessageListContext
forIntent(Context context, Intent intent) {
95
public static
MessageListContext
forSearch(
100
return new
MessageListContext
(accountId, searchMailboxId, searchParams);
106
public static
MessageListContext
forMailbox(long accountId, long mailboxId) {
109
return new
MessageListContext
(accountId, mailboxId, null);
133
if ((o == null) || !(o instanceof
MessageListContext
)) {
137
MessageListContext
om = (MessageListContext) o
[
all
...]
/packages/apps/Email/src/com/android/email/activity/
UIControllerTwoPane.java
27
import com.android.email.
MessageListContext
;
89
setListContext(
MessageListContext
.forMailbox(accountId, mailboxId));
327
public void openInternal(final
MessageListContext
listContext, final long messageId) {
UIControllerBase.java
31
import com.android.email.
MessageListContext
;
107
* Should be set using {@link #setListContext(
MessageListContext
)}.
109
protected
MessageListContext
mListContext;
587
open(
MessageListContext
.forMailbox(accountId, mailboxId), Message.NO_MESSAGE);
596
public final void open(final
MessageListContext
listContext, final long messageId) {
608
protected void setListContext(
MessageListContext
listContext) {
620
final
MessageListContext
listContext, final long messageId);
[
all
...]
Completed in 37 milliseconds