Home
last modified time | relevance | path

Searched refs:repeatMonth (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/base/notification/distributed_notification_service/services/ans/src/
H A Dreminder_store_strategy.cpp483 uint16_t repeatMonth = 0; in AppendValuesBucket() local
493 repeatMonth = calendar->GetRepeatMonth(); in AppendValuesBucket()
513 values.PutInt(ReminderCalendarTable::REPEAT_MONTHS, repeatMonth); in AppendValuesBucket()
533 uint16_t repeatMonth = 0; in RecoverFromOldVersion() local
534 … ReminderStrategy::GetRdbValue<uint16_t>(resultSet, ReminderTable::REPEAT_MONTHS, repeatMonth); in RecoverFromOldVersion()
535 calendar->SetRepeatMonth(repeatMonth); in RecoverFromOldVersion()
631 uint16_t repeatMonth = 0; in RecoverFromDb() local
632 …inderStrategy::GetRdbValue<uint16_t>(resultSet, ReminderCalendarTable::REPEAT_MONTHS, repeatMonth); in RecoverFromDb()
633 calendar->SetRepeatMonth(repeatMonth); in RecoverFromDb()
/ohos5.0/base/notification/distributed_notification_service/frameworks/ans/test/unittest/
H A Dreminder_request_calendar_test.cpp194 std::vector<uint8_t> repeatMonth; variable
198 repeatMonth.push_back(-1);
200 …auto calendar = std::make_shared<ReminderRequestCalendar>(nowTime, repeatMonth, repeatDay, daysOfW…
205 repeatMonth.clear();
206 repeatMonth.push_back(13);
207 … calendar = std::make_shared<ReminderRequestCalendar>(nowTime, repeatMonth, repeatDay, daysOfWeek);
/ohos5.0/base/notification/distributed_notification_service/interfaces/inner_api/
H A Dreminder_request_calendar.h194 void SetRepeatMonth(const uint16_t repeatMonth);
/ohos5.0/base/notification/distributed_notification_service/frameworks/ans/src/
H A Dreminder_request_calendar.cpp133 void ReminderRequestCalendar::SetRepeatMonth(const uint16_t repeatMonth) in SetRepeatMonth() argument
135 repeatMonth_ = repeatMonth; in SetRepeatMonth()