Home
last modified time | relevance | path

Searched refs:dayIndex (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/picker/
H A Ddatepicker_pattern.cpp1866 for (uint32_t dayIndex = MIN_DAY; dayIndex <= maxDay; ++dayIndex) { in SolarMonthDaysColumnsBuilding() local
1867 if (index == current.GetMonth() && dayIndex == current.GetDay()) { in SolarMonthDaysColumnsBuilding()
1872 …options_[monthDaysColumn].emplace_back(PickerDateF::CreateMonthDay(index, dayIndex, false, false)); in SolarMonthDaysColumnsBuilding()
1911 for (uint32_t dayIndex = startDay; dayIndex <= maxDay; ++dayIndex) { in FillLunarMonthDaysOptions() local
1912 if (!current.isLeapMonth && current.month == index && current.day == dayIndex) { in FillLunarMonthDaysOptions()
1917 … options_[monthDaysColumn].emplace_back(PickerDateF::CreateMonthDay(index, dayIndex, true, false)); in FillLunarMonthDaysOptions()
1925 for (uint32_t dayIndex = startDay; dayIndex <= maxDay; ++dayIndex) { in FillLunarMonthDaysOptions() local
1926 if (current.isLeapMonth && current.month == index && current.day == dayIndex) { in FillLunarMonthDaysOptions()
1931 … options_[monthDaysColumn].emplace_back(PickerDateF::CreateMonthDay(index, dayIndex, true, true)); in FillLunarMonthDaysOptions()
/ohos5.0/foundation/arkui/ace_engine_lite/frameworks/src/core/modules/presets/
H A Ddate_time_format_module.cpp488 const uint8_t dayIndex = 2; in SetDateStyle() local
489 StyleState dayStyle = GetStyle(style, "day", dayIndex); in SetDateStyle()