Home | History | Annotate | Download | only in atf-c++

Lines Matching refs:lc

43     const char *lc;
99 for (const struct varnames* v = all_vars; v->lc != NULL; v++)
108 for (const struct varnames* v = all_vars; v->lc != NULL; v++)
118 for (const struct varnames* v = all_vars; v->lc != NULL; v++) {
119 if (std::strcmp(v->lc, var) == 0)
120 ATF_REQUIRE_EQ(atf::config::get(v->lc), test_value);
122 ATF_REQUIRE(atf::config::get(v->lc) != test_value);
141 for (const struct varnames* v = all_vars; v->lc != NULL; v++)
142 ATF_REQUIRE(atf::config::get(v->lc) != test_value);
145 for (const struct varnames* v = all_vars; v->lc != NULL; v++) {
147 if (!atf::config::get(v->lc).empty()) {
151 ATF_REQUIRE(atf::config::get(v->lc).empty());
153 ATF_REQUIRE(!atf::config::get(v->lc).empty());
158 for (const struct varnames* v = all_vars; v->lc != NULL; v++) {
162 compare_one(v->lc, test_value);
178 for (const struct varnames* v = all_vars; v->lc != NULL; v++)
179 ATF_REQUIRE(vars.find(v->lc) != vars.end());
192 for (const struct varnames* v = all_vars; v->lc != NULL; v++)
193 ATF_REQUIRE(atf::config::has(v->lc));
196 for (const struct varnames* v = all_vars; v->lc != NULL; v++)