OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:eventInfo
(Results
1 - 5
of
5
) sorted by null
/packages/apps/Calendar/tests/src/com/android/calendar/widget/
CalendarAppWidgetServiceTest.java
20
import com.android.calendar.widget.CalendarAppWidgetModel.
EventInfo
;
99
EventInfo
eventInfo
= new
EventInfo
();
100
eventInfo
.visibWhen = View.VISIBLE;
101
eventInfo
.visibWhere = View.VISIBLE;
102
eventInfo
.visibTitle = View.VISIBLE;
103
eventInfo
.when = "3am";
104
eventInfo
.where = location;
105
eventInfo
.title = title
[
all
...]
/packages/apps/Calendar/src/com/android/calendar/widget/
CalendarAppWidgetModel.java
45
* {@link
EventInfo
} instance, since a row in the widget might be either a
71
* {@link
EventInfo
} is a class that represents an event in the widget. It
75
static class
EventInfo
{
90
public
EventInfo
() {
99
builder.append("
EventInfo
[visibTitle=");
148
EventInfo
other = (
EventInfo
) obj;
244
final List<
EventInfo
> mEventInfos;
257
mEventInfos = new ArrayList<
EventInfo
>(50);
354
private
EventInfo
populateEventInfo(long eventId, boolean allDay, long start, long end
[
all
...]
CalendarAppWidgetService.java
22
import com.android.calendar.widget.CalendarAppWidgetModel.
EventInfo
;
232
final
EventInfo
eventInfo
= mModel.mEventInfos.get(rowInfo.mIndex);
233
if (
eventInfo
.allDay) {
239
int displayColor = Utils.getDisplayColorFromColor(
eventInfo
.color);
242
if (!
eventInfo
.allDay &&
eventInfo
.start <= now && now <=
eventInfo
.end) {
250
updateTextView(views, R.id.when,
eventInfo
.visibWhen,
eventInfo
.when)
[
all
...]
/external/libnfc-nxp/inc/
phNfcHalTypes.h
913
}
eventInfo
;
[
all
...]
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
CalendarProvider2Test.java
182
EventInfo
eventInfo
;
185
eventInfo
= findEvent(eventName);
189
Log.i(TAG, "insert " +
eventInfo
.mTitle);
190
insertEvent(mCalendarId,
eventInfo
);
492
private class
EventInfo
{
506
public
EventInfo
(String title, String startDate, String endDate,
512
public
EventInfo
(String title, String startDate, String endDate,
537
public
EventInfo
(String title, String description, String startDate, String endDate,
543
public
EventInfo
(String title, String description, String startDate, String endDate
[
all
...]
Completed in 65 milliseconds