OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:allDay
(Results
1 - 25
of
35
) sorted by null
1
2
/packages/apps/Calendar/src/com/android/calendar/agenda/
AgendaAdapter.java
78
boolean
allDay
;
132
boolean
allDay
= cursor.getInt(AgendaWindowAdapter.INDEX_ALL_DAY) != 0;
133
holder.
allDay
=
allDay
;
153
if (
allDay
) {
200
if (
allDay
) {
211
if (!
allDay
&& !TextUtils.equals(tzString, eventTz)) {
AgendaWindowAdapter.java
306
boolean
allDay
;
635
agendaItem.
allDay
= cursor.getInt(AgendaWindowAdapter.INDEX_ALL_DAY) != 0;
636
if (agendaItem.
allDay
) { // UTC to Local time conversion
652
if (agendaItem.
allDay
) {
667
if (item.
allDay
) {
682
item.
allDay
), selectedTime);
722
mSelectedVH.
allDay
= item.
allDay
;
[
all
...]
/packages/apps/Calendar/src/com/android/calendar/widget/
CalendarAppWidgetModel.java
87
boolean
allDay
;
125
result = prime * result + (
allDay
? 1231 : 1237);
151
if (
allDay
!= other.
allDay
)
282
final boolean
allDay
= cursor.getInt(CalendarAppWidgetService.INDEX_ALL_DAY) != 0;
297
if (
allDay
) {
303
Log.d(TAG, "Row #" + rowId + "
allDay
:" +
allDay
+ " start:" + start
314
mEventInfos.add(populateEventInfo(eventId,
allDay
, start, end, startDay, endDay, title,
322
if (
allDay
) {
[
all
...]
/developers/build/prebuilts/gradle/AgendaData/Application/src/main/java/com/example/android/wearable/agendadata/
CalendarQueryService.java
160
event.
allDay
= cursor.getInt(allDayIdx) != 0;
246
public boolean
allDay
;
265
data.putBoolean(ALL_DAY,
allDay
);
/developers/samples/android/wearable/wear/AgendaData/Application/src/main/java/com/example/android/wearable/agendadata/
CalendarQueryService.java
160
event.
allDay
= cursor.getInt(allDayIdx) != 0;
246
public boolean
allDay
;
265
data.putBoolean(ALL_DAY,
allDay
);
/development/samples/browseable/AgendaData/Application/src/com.example.android.wearable.agendadata/
CalendarQueryService.java
160
event.
allDay
= cursor.getInt(allDayIdx) != 0;
246
public boolean
allDay
;
265
data.putBoolean(ALL_DAY,
allDay
);
/frameworks/base/core/java/android/text/format/
Time.java
76
* True if this is an
allDay
event. The hour, minute, second fields are
79
public boolean
allDay
;
305
this.
allDay
= false;
331
* @throws IllegalArgumentException if {@link #
allDay
} is true but {@code
385
* included only a date and no time field, then the <code>
allDay
</code>
389
* <code>
allDay
</code> is set to false. The fields <code>weekDay</code>,
457
allDay
= false;
480
allDay
= true;
530
* the {@link #
allDay
} field is set to true and the {@link #hour},
585
allDay
= false
[
all
...]
/packages/apps/Calendar/src/com/android/calendar/
Event.java
48
* 1) events with an earlier start (begin for normal events, startday for
allday
)
49
* 2) events with a later end (end for normal events, endday for
allday
)
54
* therefore show up in the
allday
area).
124
public boolean
allDay
;
164
e.
allDay
=
allDay
;
185
dest.
allDay
=
allDay
;
206
e.
allDay
= false;
357
// Sort events in two passes so we ensure the
allday
and standard event
[
all
...]
/packages/apps/Calendar/src/com/android/calendar/alerts/
AlertService.java
343
info.
allDay
, info.location);
362
info.
allDay
, info.location);
379
info.
allDay
, info.location);
516
if (info.
allDay
) {
527
getGracePeriodMs(startAdjustedForAllDay, endAdjustedForAllDay, info.
allDay
);
654
final boolean
allDay
= alertCursor.getInt(ALERT_INDEX_ALL_DAY) != 0;
[
all
...]
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarDatabaseHelper.java
567
// timezone for event with
allDay
events are in local timezone
610
+ "
allDay
INTEGER NOT NULL DEFAULT 0,"
633
// timezone for event with
allDay
events are in local timezone
[
all
...]