Searched defs:allDay (Results 1 - 3 of 3) sorted by relevance

/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/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},
577 this.allDay = that.allDay;
595 this.allDay
708 format3339(boolean allDay) argument
[all...]
/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 93 milliseconds