Lines Matching refs:substr
577 expireTime.tm_year = StringToInt(strTime.substr(0, yearOffset)) - baseYear;
578 expireTime.tm_mon = (StringToInt(strTime.substr(monBase, offset)) + monRectify) % monCount;
579 expireTime.tm_mday = StringToInt(strTime.substr(dayBase, offset));
581 expireTime.tm_hour = StringToInt(strTime.substr(hourBase, offset));
582 expireTime.tm_min = StringToInt(strTime.substr(minBase, offset));
583 expireTime.tm_sec = StringToInt(strTime.substr(secBase, offset));
601 result.push_back(str.substr(pos1, pos2 - pos1));
606 result.push_back(str.substr(pos1));
731 std::string weekDayStr = weekday.substr(weekday.length() - weekStrLen, weekStrLen);
732 std::string WeekNumStr = weekday.substr(0, weekday.length() - weekStrLen);
906 std::string colorStrSub = colorStr.substr(1);