Searched refs:ws (Results 1 - 5 of 5) sorted by relevance

/bind-9.11.3/unit/atf-src/atf-c++/
H A Dtests_test.cpp52 std::vector< std::string > ws = atf::text::split(str, "\n"); local
53 for (std::vector< std::string >::const_iterator iter = ws.begin();
54 iter != ws.end(); iter++)
H A Dtests.cpp418 std::vector< std::string > ws = atf::text::split(str, "="); local
419 if (ws.size() == 1 && str[str.length() - 1] == '=') {
420 vars[ws[0]] = "";
422 if (ws.size() != 2)
426 vars[ws[0]] = ws[1];
/bind-9.11.3/unit/atf-src/tools/
H A Dui.cpp61 struct winsize ws; local
62 if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &ws) != -1)
63 width = ws.ws_col;
H A Datf-run.cpp213 std::vector< std::string > ws = tools::text::split(str, "="); local
214 if (ws.size() == 1 && str[str.length() - 1] == '=') {
215 m_cmdline_vars[ws[0]] = "";
217 if (ws.size() != 2)
221 m_cmdline_vars[ws[0]] = ws[1];
H A Dtest_program_test.cpp90 std::vector< std::string > ws = tools::text::split(str, "\n"); local
91 for (std::vector< std::string >::const_iterator iter = ws.begin();
92 iter != ws.end(); iter++)

Completed in 752 milliseconds