Searched refs:pos2 (Results 1 - 2 of 2) sorted by relevance

/bind-9.6-ESV-R11/unit/atf-src/atf-c++/detail/
H A Dtext.cpp113 std::string::size_type pos2 = str.find_last_not_of(" \t"); local
115 if (pos1 == std::string::npos && pos2 == std::string::npos)
118 return str.substr(0, str.length() - pos2);
119 else if (pos2 == std::string::npos)
122 return str.substr(pos1, pos2 - pos1 + 1);
/bind-9.6-ESV-R11/unit/atf-src/atf-run/
H A Dtest-program.cpp343 const std::string::size_type pos2 = line.find("):", pos); local
344 if (pos2 == std::string::npos)
348 out_arg = line.substr(pos + 1, pos2 - pos - 1);
349 out_reason = atf::text::trim(line.substr(pos2 + 2));

Completed in 12 milliseconds