Lines Matching defs:month
498 bool IsValidDate(uint32_t year, uint32_t month, uint32_t day)
503 if (month < NUM_1 || month > NUM_12) {
507 if (day < 1 || day > daysInMonth[month - 1]) {
7669 auto month = StringToInt(date[NUM_1].c_str(), NUM_1);
7671 fullImpl->getNodeModifiers()->getDatePickerModifier()->setStartDate(node->uiNodeHandle, year, month, day);
7704 auto month = StringToInt(date[NUM_1].c_str(), NUM_12);
7706 fullImpl->getNodeModifiers()->getDatePickerModifier()->setEndDate(node->uiNodeHandle, year, month, day);
7739 auto month = StringToInt(date[NUM_1].c_str());
7741 fullImpl->getNodeModifiers()->getDatePickerModifier()->setSelectedDate(node->uiNodeHandle, year, month, day);
10144 g_numberValues[SELECTED_MONTH_INDEX].u32 = selectedDate.month;