Searched defs:startDate (Results 1 - 7 of 7) sorted by relevance

/packages/apps/UnifiedEmail/src/com/android/emailcommon/service/
H A DSearchParams.java74 public SearchParams(long mailboxId, String filter, long searchMailboxId, Date startDate, argument
79 mStartDate = startDate;
/packages/apps/Email/tests/src/com/android/emailcommon/mail/
H A DMockFolder.java136 public Message[] getMessages(long startDate, long endDate, MessageRetrievalListener listener) argument
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
H A DCalendarSyncTestingBase.java233 public EventInfo(String title, String startDate, String endDate, argument
235 init(title, startDate, endDate, allDay, DEFAULT_TIMEZONE);
238 public EventInfo(String title, long startDate, long endDate, argument
242 mDtstart = startDate;
249 public EventInfo(String title, long startDate, long endDate, argument
253 mDtstart = startDate;
262 public EventInfo(String title, String startDate, String endDate, argument
264 init(title, startDate, endDate, allDay, timezone);
267 public void init(String title, String startDate, String endDate, argument
277 time.parse3339(startDate);
287 EventInfo(String title, String description, String startDate, String endDate, String rrule, boolean allDay) argument
293 EventInfo(String title, String description, String startDate, String endDate, String rrule, boolean allDay, String timezone) argument
298 init(String title, String description, String startDate, String endDate, String rrule, boolean allDay, String timezone) argument
330 EventInfo(String originalTitle, String originalInstance, String title, String description, String startDate, String endDate, boolean allDay) argument
336 init(String originalTitle, String originalInstance, String title, String description, String startDate, String endDate, boolean allDay, String timezone) argument
[all...]
H A DCalendarProvider2Test.java298 public DumpInstances(String startDate, String endDate) { argument
300 time.parse3339(startDate);
322 public QueryNumInstances(String startDate, String endDate, int expected) { argument
324 time.parse3339(startDate);
350 public VerifyAllInstances(String startDate, String endDate, String[] dates) { argument
352 time.parse3339(startDate);
438 * Creates a command to check that the given range [startDate,endDate]
441 * @param startDate the beginning of the date range
445 public VerifyInstance(String startDate, String endDate, String date) { argument
447 time.parse3339(startDate);
508 EventInfo(String title, String startDate, String endDate, boolean allDay) argument
514 EventInfo(String title, String startDate, String endDate, boolean allDay, String timezone) argument
519 init(String title, String startDate, String endDate, boolean allDay, String timezone) argument
542 EventInfo(String title, String description, String startDate, String endDate, String rrule, boolean allDay) argument
548 EventInfo(String title, String description, String startDate, String endDate, String rrule, boolean allDay, String timezone) argument
553 init(String title, String description, String startDate, String endDate, String rrule, boolean allDay, String timezone) argument
585 EventInfo(String originalTitle, String originalInstance, String title, String description, String startDate, String endDate, boolean allDay, String customPackageName, String customPackageUri, String mUid2445) argument
593 init(String originalTitle, String originalInstance, String title, String description, String startDate, String endDate, boolean allDay, String timezone, String customPackageName, String customPackageUri, String uid2445) argument
614 InstanceInfo(String eventName, String startDate, String endDate, int expected) argument
[all...]
/packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
H A DFolder.java125 public abstract Message[] getMessages(long startDate, long endDate, MessageRetrievalListener listener) argument
/packages/apps/Email/src/com/android/email/mail/store/
H A DImapFolder.java520 private String generateDateRangeCommand(final long startDate, final long endDate, argument
532 // If the caller requests a startDate of zero, then ignore the BEFORE parameter.
535 if (startDate != 0) {
536 final String beforeDateStr = formatter.format(startDate);
537 if (startDate < endDate) {
557 public Message[] getMessages(long startDate, long endDate, MessageRetrievalListener listener) argument
560 String command = generateDateRangeCommand(startDate, endDate, false);
573 command = generateDateRangeCommand(startDate, endDate, true);
H A DPop3Store.java345 public Pop3Message[] getMessages(long startDate, long endDate, argument

Completed in 500 milliseconds