Searched refs:TheMapOfTests (Results 1 - 3 of 3) sorted by relevance

/external/valgrind/unittest/
H A Dold_test_suite.h86 extern std::map<int, Test> *TheMapOfTests;
90 if (TheMapOfTests == NULL)
91 TheMapOfTests = new std::map<int, Test>;
92 CHECK(TheMapOfTests->count(id) == 0);
93 (*TheMapOfTests)[id] = Test(f, id, flags);
H A Dold_test_suite.cc40 std::map<int, Test> *TheMapOfTests = NULL; variable
74 (*TheMapOfTests)[test_id].Run();
137 for (std::map<int,Test>::iterator it = TheMapOfTests->begin();
138 it != TheMapOfTests->end(); ++it) {
143 for (std::map<int,Test>::iterator it = TheMapOfTests->begin();
144 it != TheMapOfTests->end(); ++it) {
160 if (!TheMapOfTests->count(test_id)) {
168 if (!TheMapOfTests->count(test_id)) {
184 for (std::map<int,Test>::iterator it = TheMapOfTests->begin();
185 it != TheMapOfTests
[all...]
/external/valgrind/main/drd/tests/
H A Dtsan_unittest.cpp181 std::map<int, Test> TheMapOfTests; variable
190 CHECK(TheMapOfTests.count(id) == 0);
191 TheMapOfTests[id] = Test(f, flags);
238 for (std::map<int,Test>::iterator it = TheMapOfTests.begin();
239 it != TheMapOfTests.end(); ++it) {
244 for (std::map<int,Test>::iterator it = TheMapOfTests.begin();
245 it != TheMapOfTests.end(); ++it) {
253 CHECK(TheMapOfTests.count(f_num));
254 TheMapOfTests[f_num].Run();
261 for (std::map<int,Test>::iterator it = TheMapOfTests
[all...]

Completed in 242 milliseconds