Lines Matching refs:holidayItemMap
61 if (holidayItemMap.find(startDate) != holidayItemMap.end()) {
62 std::vector<HolidayInfoItem> *vetor = &(holidayItemMap.find(startDate)->second);
67 holidayItemMap.insert(std::pair<std::string, std::vector<HolidayInfoItem>>(startDate, vetor));
78 holidayItemMap = holidayDataMap;
96 if (holidayItemMap.find(startDate) != holidayItemMap.end()) {
97 std::vector<HolidayInfoItem> list = holidayItemMap.find(startDate)->second;
131 for (iter = holidayItemMap.begin(); iter != holidayItemMap.end(); ++iter) {