Searched defs:lc (Results 1 - 3 of 3) sorted by relevance

/bind-9.6-ESV-R11/unit/atf-src/atf-c/
H A Dconfig_test.c43 const char *lc; member in struct:varnames
76 for (v = all_vars; v->lc != NULL; v++)
88 for (v = all_vars; v->lc != NULL; v++) {
89 if (strcmp(v->lc, var) == 0)
90 ATF_CHECK_STREQ(atf_config_get(v->lc), test_value);
92 ATF_CHECK(strcmp(atf_config_get(v->lc), test_value) != 0);
113 for (v = all_vars; v->lc != NULL; v++)
114 ATF_CHECK(strcmp(atf_config_get(v->lc), test_value) != 0);
117 for (v = all_vars; v->lc != NULL; v++) {
119 if (strcmp(atf_config_get(v->lc), "") !
[all...]
/bind-9.6-ESV-R11/unit/atf-src/atf-c++/
H A Dconfig_test.cpp43 const char *lc; member in struct:varnames
103 for (const struct varnames* v = all_vars; v->lc != NULL; v++)
112 for (const struct varnames* v = all_vars; v->lc != NULL; v++)
122 for (const struct varnames* v = all_vars; v->lc != NULL; v++) {
123 if (std::strcmp(v->lc, var) == 0)
124 ATF_REQUIRE_EQ(atf::config::get(v->lc), test_value);
126 ATF_REQUIRE(atf::config::get(v->lc) != test_value);
145 for (const struct varnames* v = all_vars; v->lc != NULL; v++)
146 ATF_REQUIRE(atf::config::get(v->lc) != test_value);
149 for (const struct varnames* v = all_vars; v->lc !
[all...]
/bind-9.6-ESV-R11/unit/atf-src/atf-c++/detail/
H A Dtext.cpp86 std::string lc; local
89 lc += std::tolower(*iter);
90 return lc;

Completed in 50 milliseconds