Lines Matching defs:startDate
58 std::string startDate(strDate);
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));
95 std::string startDate = Format(year, month, day);
96 if (holidayItemMap.find(startDate) != holidayItemMap.end()) {
97 std::vector<HolidayInfoItem> list = holidayItemMap.find(startDate)->second;
202 std::string startDate = value.size() >= 8 ? value.substr(0, 8) : ""; // 8 is date formarted string length
203 if (startDate.size() == 8) {
205 strptime(startDate.c_str(), "%Y%m%d", &timeObj);