Searched defs:split (Results 1 - 6 of 6) sorted by relevance
/bind-9.11.3/unit/atf-src/atf-c++/detail/ |
H A D | text_test.cpp | 158 ATF_TEST_CASE(split); variable 159 ATF_TEST_CASE_HEAD(split) 161 set_md_var("descr", "Tests the split function"); 163 ATF_TEST_CASE_BODY(split) 165 using atf::text::split; 169 words = split("", " "); 172 words = split(" ", " "); 175 words = split(" ", " "); 178 words = split("a b", " "); 183 words = split(" [all...] |
H A D | text.cpp | 90 impl::split(const std::string& str, const std::string& delim) function in class:impl
|
/bind-9.11.3/unit/atf-src/tools/ |
H A D | text_test.cpp | 162 ATF_TEST_CASE(split); variable 163 ATF_TEST_CASE_HEAD(split) 165 set_md_var("descr", "Tests the split function"); 167 ATF_TEST_CASE_BODY(split) 169 using tools::text::split; 173 words = split("", " "); 176 words = split(" ", " "); 179 words = split(" ", " "); 182 words = split("a b", " "); 187 words = split(" [all...] |
H A D | text.cpp | 89 impl::split(const std::string& str, const std::string& delim) function in class:impl
|
/bind-9.11.3/unit/atf-src/atf-c/detail/ |
H A D | text_test.c | 230 ATF_TC(split); variable 231 ATF_TC_HEAD(split, tc) 233 atf_tc_set_md_var(tc, "descr", "Checks the split function"); 235 ATF_TC_BODY(split, tc) 296 atf_tc_set_md_var(tc, "descr", "Checks the split function using " 415 ATF_TP_ADD_TC(tp, split);
|
H A D | tp_main.c | 210 char *split; local 212 split = strchr(arg, '='); 213 if (split == NULL) { 218 *split = '\0'; 219 split++; 221 err = atf_map_insert(config, arg, split, false);
|
Completed in 16 milliseconds