Lines Matching defs:lc
43 const char *lc;
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 != NULL; v++) {
151 if (!atf::config::get(v->lc).empty()) {
155 ATF_REQUIRE(atf::config::get(v->lc).empty());
157 ATF_REQUIRE(!atf::config::get(v->lc).empty());
162 for (const struct varnames* v = all_vars; v->lc != NULL; v++) {
166 compare_one(v->lc, test_value);
182 for (const struct varnames* v = all_vars; v->lc != NULL; v++)
183 ATF_REQUIRE(vars.find(v->lc) != vars.end());
196 for (const struct varnames* v = all_vars; v->lc != NULL; v++)
197 ATF_REQUIRE(atf::config::has(v->lc));
200 for (const struct varnames* v = all_vars; v->lc != NULL; v++)