OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ConversationListContext
(Results
1 - 7
of
7
) sorted by null
/packages/apps/UnifiedEmail/src/com/android/mail/
ConversationListContext.java
31
* This class is supposed to have the same thing that the Gmail
ConversationListContext
40
public class
ConversationListContext
{
67
public static
ConversationListContext
forBundle(Bundle bundle) {
72
return new
ConversationListContext
(account, bundle.getString(EXTRA_SEARCH_QUERY), folder);
81
public static
ConversationListContext
forFolder(Account account, Folder folder) {
82
return new
ConversationListContext
(account, null, folder);
88
public static
ConversationListContext
forSearchQuery(Account account, Folder folder,
90
return new
ConversationListContext
(account, Preconditions.checkNotNull(query), folder);
101
private
ConversationListContext
(Account a, String query, Folder f) {
112
public static final boolean isSearchResult(
ConversationListContext
in)
[
all
...]
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
SuppressNotificationReceiver.java
25
import com.android.mail.
ConversationListContext
;
120
final
ConversationListContext
listContext = mController.getCurrentListContext();
127
if (
ConversationListContext
.isSearchResult(listContext)) {
OnePaneController.java
35
import com.android.mail.
ConversationListContext
;
148
private static boolean inInbox(final Account account, final
ConversationListContext
context) {
151
|| account.settings == null) && !
ConversationListContext
.isSearchResult(context)
231
protected void showConversationList(
ConversationListContext
listContext) {
234
if (
ConversationListContext
.isSearchResult(listContext)) {
284
if (
ConversationListContext
.isSearchResult(mConvListContext)) {
MaterialSearchViewController.java
32
import com.android.mail.
ConversationListContext
;
89
ConversationListContext
.EXTRA_SEARCH_QUERY), supportVoice);
ConversationListFragment.java
43
import com.android.mail.
ConversationListContext
;
136
private
ConversationListContext
mViewContext;
288
public static ConversationListFragment newInstance(
ConversationListContext
viewContext) {
320
// only activity creating a
ConversationListContext
is a MailActivity
366
final boolean showSearchHeader =
ConversationListContext
.isSearchResult(mViewContext);
476
mViewContext =
ConversationListContext
.forBundle(args.getBundle(CONVERSATION_LIST_KEY));
[
all
...]
TwoPaneController.java
35
import com.android.mail.
ConversationListContext
;
198
protected void showConversationList(
ConversationListContext
listContext) {
[
all
...]
AbstractActivityController.java
63
import com.android.mail.
ConversationListContext
;
152
/** Tag for {@link
ConversationListContext
#searchQuery} */
195
protected
ConversationListContext
mConvListContext;
558
public
ConversationListContext
getCurrentListContext() {
[
all
...]
Completed in 576 milliseconds