Lines Matching refs:line
170 std::string line;
171 while (getline(fin, line)) {
172 line = Trim(line);
173 if (line.compare(ITEM_BEGIN_TAG) != 0) {
177 while (getline(fin, line)) {
178 line = Trim(line);
179 ParseFileLine(line, &(holidayItem));
180 if (line.compare(ITEM_END_TAG) == 0) {
190 void HolidayManager::ParseFileLine(const std::string &line, HolidayInfoItem *holidayItem)
197 bool found = RegexSearchNoExcept(line, match, reg);
200 std::string value = line.substr(line.find_last_of(":") + 1, line.length());
213 std::string displayName = line.substr(line.find_last_of("=") + 1, line.length());