Home | History | Annotate | Download | only in impl

Lines Matching defs:__line

509 	std::string __line;
511 while (std::getline(__conf_file, __line))
513 std::string::size_type __i = __line.find_first_not_of(" \t\n\v");
515 if (__line.length() <= 0 || __line[__i] == '#')
521 __line.erase(__remove(__line.begin(), __line.end(), ' '),
522 __line.end());
523 std::string::size_type __pos = __line.find("=");
524 std::string __factor_name = __line.substr(0, __pos);
525 std::string::size_type __end = __line.find_first_of(";\n");
526 std::string __factor_value = __line.substr(__pos + 1, __end - __pos);