Lines Matching defs:items
49 std::vector<HolidayInfoItem> items = ReadHolidayFile(path);
50 for (size_t i = 0; i < items.size(); i++) {
51 struct tm tmObj = {.tm_mday = items[i].day, .tm_mon = items[i].month, .tm_year = items[i].year};
59 items[i].year += YEAR_START;
60 items[i].month += MONTH_GREATER_ONE;
63 vetor->push_back(items[i]);
66 vetor.push_back(items[i]);
164 std::vector<HolidayInfoItem> items;
166 return items;
181 items.push_back(holidayItem);
187 return items;