Lines Matching refs:m_arrDates
258 int32_t iCount = pdfium::CollectionSize<int32_t>(m_arrDates); in DrawDatesInBK()
260 DATEINFO* pDataInfo = m_arrDates[j].get(); in DrawDatesInBK()
338 int32_t iCount = pdfium::CollectionSize<int32_t>(m_arrDates); in DrawDatesIn()
340 DATEINFO* pDataInfo = m_arrDates[j].get(); in DrawDatesIn()
372 if (m_iDay < 1 || m_iDay > pdfium::CollectionSize<int32_t>(m_arrDates)) in DrawDatesInCircle()
375 DATEINFO* pDate = m_arrDates[m_iDay - 1].get(); in DrawDatesInCircle()
503 for (const auto& pDateInfo : m_arrDates) { in CalDateItem()
540 m_arrDates.clear(); in ClearDateItem()
558 m_arrDates.push_back(pdfium::MakeUnique<DATEINFO>( in ResetDateItem()
611 int32_t iDatesCount = pdfium::CollectionSize<int32_t>(m_arrDates); in RemoveSelDay()
614 m_arrDates[iSelDay - 1]->dwStates &= ~FWL_ITEMSTATE_MCD_Selected; in RemoveSelDay()
625 if (iDay <= pdfium::CollectionSize<int32_t>(m_arrDates)) in AddSelDay()
626 m_arrDates[iDay - 1]->dwStates |= FWL_ITEMSTATE_MCD_Selected; in AddSelDay()
663 for (const auto& pDateInfo : m_arrDates) { in GetDayAtPoint()
672 if (iDay <= 0 || iDay > pdfium::CollectionSize<int32_t>(m_arrDates)) in GetDayRect()
675 DATEINFO* pDateInfo = m_arrDates[iDay - 1].get(); in GetDayRect()
758 DATEINFO* lpDatesInfo = m_arrDates[iCurSel - 1].get(); in OnLButtonUp()
760 if (iOldSel > 0 && iOldSel <= pdfium::CollectionSize<int32_t>(m_arrDates)) { in OnLButtonUp()
761 lpDatesInfo = m_arrDates[iOldSel - 1].get(); in OnLButtonUp()