Searched refs:allDay (Results 1 - 5 of 5) sorted by relevance

/frameworks/opt/calendar/src/com/android/calendarcommon/
H A DRecurrenceSet.java191 boolean allDay = start.allDay;
195 if (inUtc || allDay) {
217 if (allDay) {
235 values.put(CalendarContract.Events.ALL_DAY, allDay ? 1 : 0);
268 boolean allDay = cursor.getInt(allDayColumn) == 1;
281 if (!allDay) {
293 if (allDay) {
295 dtstartTime.allDay = true;
327 final boolean allDay
[all...]
/frameworks/base/core/java/android/text/format/
H A DTime.java51 * True if this is an allDay event. The hour, minute, second fields are
54 public boolean allDay; field in class:Time
270 this.allDay = false;
291 * @throws IllegalArgumentException if {@link #allDay} is true but {@code
416 * included only a date and no time field, then the <code>allDay</code>
420 * <code>allDay</code> is set to false. The fields <code>weekDay</code>,
471 * the {@link #allDay} field is set to true and the {@link #hour},
580 this.allDay = that.allDay;
598 this.allDay
711 format3339(boolean allDay) argument
[all...]
/frameworks/base/core/tests/coretests/src/android/text/format/
H A DTimeTest.java362 if (!t.allDay || t.year != 1980 || t.month != 04 || t.monthDay != 23) {
367 if (t.allDay || t.year != 1980 || t.month != 04 || t.monthDay != 23 ||
374 if (t.allDay || t.year != 1980 || t.month != 04 || t.monthDay != 23 ||
381 if (t.allDay || t.year != 1980 || t.month != 04 || t.monthDay != 23 ||
388 if (t.allDay || t.year != 1980 || t.month != 04 || t.monthDay != 23 ||
395 if (t.allDay || t.year != 1980 || t.month != 04 || t.monthDay != 23 ||
403 if (t.allDay || t.year != 1980 || t.month != 04 || t.monthDay != 23 ||
411 if (t.allDay || t.year != 1980 || t.month != 04 || t.monthDay != 23 ||
/frameworks/opt/calendar/tests/src/com/android/calendarcommon/
H A DRecurrenceSetTest.java70 null, null, 1250812800000L, "UTC", "P2H", 1 /*allDay*/, false);
71 // allDay=1 just means the start time is 00:00:00 UTC.
83 null, null, 1250841723000L, "America/Los_Angeles", "P2H", 0 /*allDay*/, false);
84 // allDay=1 just means the start time is 00:00:00 UTC.
94 null, null, 1250863200000L, "America/Los_Angeles", "P3600S" /*P1H*/, 0 /*allDay*/,
102 null, null, 1250863200000L, "America/Los_Angeles", "P3600S" /*P1H*/, 0 /*allDay*/,
130 String exrule, String exdate, long dtstart, String tzid, String duration, int allDay,
151 assertEquals(allDay,
129 verifyPopulateContentValues(String recurrence, String rrule, String rdate, String exrule, String exdate, long dtstart, String tzid, String duration, int allDay, boolean badFormat) argument
/frameworks/base/core/jni/
H A Dandroid_text_format_Time.cpp72 bool allDay = env->GetBooleanField(o, g_allDayField); local
73 if (allDay &&
76 sprintf(msg, "allDay is true but sec, min, hour are not 0.");
165 bool allDay = env->GetBooleanField(This, g_allDayField);
167 if (!allDay) {
661 g_allDayField = env->GetFieldID(timeClass, "allDay", "Z");

Completed in 134 milliseconds