Lines Matching refs:lc
43 const char *lc; member
103 for (const struct varnames* v = all_vars; v->lc != NULL; v++) in all_vars_count()
112 for (const struct varnames* v = all_vars; v->lc != NULL; v++) in unset_all()
122 for (const struct varnames* v = all_vars; v->lc != NULL; v++) { in compare_one()
123 if (std::strcmp(v->lc, var) == 0) in compare_one()
124 ATF_REQUIRE_EQ(atf::config::get(v->lc), test_value); in compare_one()
126 ATF_REQUIRE(atf::config::get(v->lc) != test_value); in compare_one()
145 for (const struct varnames* v = all_vars; v->lc != NULL; v++) in ATF_TEST_CASE_BODY()
146 ATF_REQUIRE(atf::config::get(v->lc) != test_value); in ATF_TEST_CASE_BODY()
149 for (const struct varnames* v = all_vars; v->lc != NULL; v++) { in ATF_TEST_CASE_BODY()
151 if (!atf::config::get(v->lc).empty()) { in ATF_TEST_CASE_BODY()
155 ATF_REQUIRE(atf::config::get(v->lc).empty()); in ATF_TEST_CASE_BODY()
157 ATF_REQUIRE(!atf::config::get(v->lc).empty()); in ATF_TEST_CASE_BODY()
162 for (const struct varnames* v = all_vars; v->lc != NULL; v++) { in ATF_TEST_CASE_BODY()
166 compare_one(v->lc, test_value); in ATF_TEST_CASE_BODY()
182 for (const struct varnames* v = all_vars; v->lc != NULL; v++) in ATF_TEST_CASE_BODY()
183 ATF_REQUIRE(vars.find(v->lc) != vars.end()); in ATF_TEST_CASE_BODY()
196 for (const struct varnames* v = all_vars; v->lc != NULL; v++) in ATF_TEST_CASE_BODY()
197 ATF_REQUIRE(atf::config::has(v->lc)); in ATF_TEST_CASE_BODY()
200 for (const struct varnames* v = all_vars; v->lc != NULL; v++) in ATF_TEST_CASE_BODY()