Home
last modified time | relevance | path

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

/packages/apps/Email/tests/src/com/android/email/mail/store/imap/
DImapResponseTest.java44 final ImapResponse SEARCH = buildResponse(null, false, new ImapSimpleString("SEARCH"), in testIsDataResponse() local
52 assertTrue(SEARCH.isDataResponse(0, ImapConstants.SEARCH)); in testIsDataResponse()
56 assertFalse(SEARCH.isDataResponse(1, ImapConstants.SEARCH)); in testIsDataResponse()
/packages/providers/ApplicationsProvider/src/com/android/providers/applications/
DApplicationsProvider.java78 private static final int SEARCH = 2; field in ApplicationsProvider
139 SEARCH); in buildUriMatcher()
141 SEARCH); in buildUriMatcher()
300 case SEARCH: in getType()
350 case SEARCH: { in query()
/packages/apps/Music/src/com/android/music/
DArtistAlbumBrowserActivity.java79 private final static int SEARCH = CHILD_MENU_BASE; field in ArtistAlbumBrowserActivity
350 menu.add(0, SEARCH, 0, R.string.search_title); in onCreateContextMenu()
378 menu.add(0, SEARCH, 0, R.string.search_title); in onCreateContextMenu()
456 case SEARCH: in onContextItemSelected()
DAlbumBrowserActivity.java78 private final static int SEARCH = CHILD_MENU_BASE; field in AlbumBrowserActivity
294 menu.add(0, SEARCH, 0, R.string.search_title); in onCreateContextMenu()
345 case SEARCH: in onContextItemSelected()
DTrackBrowserActivity.java77 private static final int SEARCH = CHILD_MENU_BASE + 6; field in TrackBrowserActivity
669 menu.add(0, SEARCH, 0, R.string.search_title); in onCreateContextMenu()
739 case SEARCH: in onContextItemSelected()
/packages/apps/Calendar/src/com/android/calendar/
DCalendarController.java119 final long SEARCH = 1L << 8; field
611 } else if (event.eventType == EventType.SEARCH) { in sendEvent()
852 } else if ((eventInfo.eventType & EventType.SEARCH) != 0) { in eventInfoToString()
DSearchActivity.java221 searchEventInfo.eventType = EventType.SEARCH; in search()
373 mController.sendEvent(this, EventType.SEARCH, null, null, -1, ViewType.CURRENT, 0, query, in onQueryTextSubmit()
DAllInOneActivity.java1236 mController.sendEvent(this, EventType.SEARCH, null, null, -1, ViewType.CURRENT, 0, query, in onQueryTextSubmit()
/packages/apps/Browser/src/com/android/browser/provider/
DBrowserProvider2.java361 map.put(Searches.SEARCH, Searches.SEARCH); in map.put() argument
448 Searches.SEARCH + " TEXT," + in onCreate()
1569 String search = values.getAsString(Searches.SEARCH); in insertSearchesInTransaction()
1576 Searches.SEARCH + "=?", new String[] { search }, null, null, null); in insertSearchesInTransaction()
1583 return db.insertOrThrow(TABLE_SEARCHES, Searches.SEARCH, values); in insertSearchesInTransaction()
/packages/apps/Calendar/src/com/android/calendar/agenda/
DAgendaFragment.java359 return EventType.GO_TO | EventType.EVENTS_CHANGED | ((mUsedForSearch)?EventType.SEARCH:0); in getSupportedEventTypes()
374 } else if (event.eventType == EventType.SEARCH) { in handleEvent()
/packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
DTags.java44 public static final int SEARCH = 0x0F; field in Tags
384 public static final int SEARCH_PAGE = SEARCH << PAGE_SHIFT;
/packages/apps/Email/src/com/android/email/mail/store/imap/
DImapConstants.java75 public static final String SEARCH = "SEARCH"; field in ImapConstants
/packages/apps/Email/src/com/android/email/mail/store/
DImapFolder.java377 if (!response.isDataResponse(0, ImapConstants.SEARCH)) { in getSearchUids()