Lines Matching full:7
50 static const char * day_names_def[7] = LV_CALENDAR_DEFAULT_DAY_NAMES;
78 for(i = 0; i < 7; i++) { in lv_calendar_set_day_names()
127 for(i = 0; i < 7; i++) { in lv_calendar_set_showed_date()
141 lv_btnmatrix_set_btn_ctrl(calendar->btnm, i + 7, LV_BTNMATRIX_CTRL_DISABLED); in lv_calendar_set_showed_date()
144 for(i = day_first + act_mo_len, c = 1; i < 6 * 7; i++, c++) { in lv_calendar_set_showed_date()
146 lv_btnmatrix_set_btn_ctrl(calendar->btnm, i + 7, LV_BTNMATRIX_CTRL_DISABLED); in lv_calendar_set_showed_date()
153 lv_btnmatrix_set_selected_btn(calendar->btnm, day_first + 7); in lv_calendar_set_showed_date()
259 for(i = 0; i < 8 * 7; i++) { in lv_calendar_constructor()
264 else if(i < 7) { in lv_calendar_constructor()
273 calendar->map[8 * 7 - 1] = ""; in lv_calendar_constructor()
296 if(dsc->id < 7) { in draw_part_begin_event_cb()
343 return (month == 1) ? (28 + is_leap_year(year)) : 31 - month % 7 % 2; in get_month_length()
369 …y_of_week = (day + (31 * (month - 2 + 12 * a) / 12) + b + (b / 4) - (b / 100) + (b / 400) - 1) % 7; in get_day_of_week()
371 …t day_of_week = (day + (31 * (month - 2 + 12 * a) / 12) + b + (b / 4) - (b / 100) + (b / 400)) % 7; in get_day_of_week()
390 … lv_btnmatrix_set_btn_ctrl(calendar->btnm, calendar->highlighted_dates[i].day - 1 + day_first + 7, in highlight_update()
397 …lv_btnmatrix_set_btn_ctrl(calendar->btnm, calendar->today.day - 1 + day_first + 7, LV_CALENDAR_CTR… in highlight_update()