HomeSort by relevance Sort by last modified time
    Searched refs:eventInfo (Results 1 - 14 of 14) 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/
CalendarAppWidgetService.java 22 import com.android.calendar.widget.CalendarAppWidgetModel.EventInfo;
230 final EventInfo eventInfo = mModel.mEventInfos.get(rowInfo.mIndex);
231 if (eventInfo.allDay) {
237 int displayColor = Utils.getDisplayColorFromColor(eventInfo.color);
240 if (!eventInfo.allDay && eventInfo.start <= now && now <= eventInfo.end) {
248 if (!eventInfo.allDay) {
249 updateTextView(views, R.id.when, eventInfo.visibWhen, eventInfo.when)
    [all...]
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...]
  /external/libnfc-nxp/src/
phLibNfc_SE.c 175 if((pEvtInfo->eventInfo.aid.length != 0) && ((pEvtInfo->eventInfo.aid.length <= 16))) // PLG
178 Se_Trans_Info.UiccEvtInfo.aid.buffer =pEvtInfo->eventInfo.aid.buffer;
179 Se_Trans_Info.UiccEvtInfo.aid.length =pEvtInfo->eventInfo.aid.length;
188 && (info.psEventInfo->eventInfo.uicc_info.param.length
193 info.psEventInfo->eventInfo.uicc_info.param.buffer;
195 info.psEventInfo->eventInfo.uicc_info.param.length;
210 if ((pEvtInfo->eventInfo.aid.length != 0) && ((pEvtInfo->eventInfo.aid.length <= 16)))
213 Se_Trans_Info.UiccEvtInfo.aid.buffer = pEvtInfo->eventInfo.aid.buffer
    [all...]
phHciNfc_WI.c 657 phHal_sEventInfo_t EventInfo;
686 EventInfo.eventHost = phHal_eHostController;
687 EventInfo.eventSource = phHal_ePICC_DevType;
693 EventInfo.eventType = NFC_EVT_START_OF_TRANSACTION;
698 EventInfo.eventType = NFC_EVT_END_OF_TRANSACTION;
703 EventInfo.eventType = NFC_EVT_TRANSACTION;
704 EventInfo.eventInfo.aid.buffer = (uint8_t *)p_wi_info->aid;
708 EventInfo.eventInfo.aid.length = length - HCP_HEADER_LEN
    [all...]
phHciNfc_Emulation.c     [all...]
phHciNfc_PollingLoop.c 721 event_info.eventInfo.rd_phases = pEvent[HCP_HEADER_LEN];
734 event_info.eventInfo.rd_phases = pEvent[HCP_HEADER_LEN];
phHal4Nfc_P2P.c 618 psEventInfo->eventInfo.pRemoteDevInfo,
phHal4Nfc.c     [all...]
phHciNfc_DevMgmt.c     [all...]
phHciNfc_NfcIPMgmt.c     [all...]
  /packages/apps/Calendar/src/com/android/calendar/
CalendarController.java 153 public static class EventInfo {
203 void handleEvent(EventInfo event);
276 EventInfo info = new EventInfo();
325 EventInfo info = new EventInfo();
338 public void sendEvent(Object sender, final EventInfo event) {
783 private String eventInfoToString(EventInfo eventInfo) {
787 if ((eventInfo.eventType & EventType.GO_TO) != 0)
    [all...]
  /external/libnfc-nxp/inc/
phNfcHalTypes.h 913 }eventInfo;
    [all...]
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
CalendarProvider2Test.java 181 EventInfo eventInfo;
184 eventInfo = findEvent(eventName);
188 Log.i(TAG, "insert " + eventInfo.mTitle);
189 insertEvent(mCalendarId, eventInfo);
491 private class EventInfo {
505 public EventInfo(String title, String startDate, String endDate,
511 public EventInfo(String title, String startDate, String endDate,
536 public EventInfo(String title, String description, String startDate, String endDate,
542 public EventInfo(String title, String description, String startDate, String endDate
    [all...]

Completed in 345 milliseconds