Searched defs:split (Results 1 - 4 of 4) sorted by relevance
/bind-9.6-ESV-R11/unit/atf-src/atf-c++/detail/ |
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 atf::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 | 94 impl::split(const std::string& str, const std::string& delim) function in class:impl
|
/bind-9.6-ESV-R11/unit/atf-src/atf-c/detail/ |
H A D | text_test.c | 233 ATF_TC(split); variable 234 ATF_TC_HEAD(split, tc) 236 atf_tc_set_md_var(tc, "descr", "Checks the split function"); 238 ATF_TC_BODY(split, tc) 299 atf_tc_set_md_var(tc, "descr", "Checks the split function using " 418 ATF_TP_ADD_TC(tp, split);
|
H A D | tp_main.c | 215 char *split; local 217 split = strchr(arg, '='); 218 if (split == NULL) { 223 *split = '\0'; 224 split++; 226 err = atf_map_insert(config, arg, split, false);
|
Completed in 22 milliseconds