Home
last modified time | relevance | path

Searched refs:match_func (Results 1 – 2 of 2) sorted by relevance

/aosp12/system/testing/gtest_extras/
H A DIsolate.cpp478 if (results.match_func(*test)) { in PrintResults()
504 .match_func = [](const Test& test) { return test.slow(); }, in __anond6bf063a0102()
517 .match_func = [](const Test& test) { return test.result() == TEST_XPASS; }, in __anond6bf063a0302()
526 .match_func = [](const Test& test) { return test.result() == TEST_FAIL; }, in __anond6bf063a0402()
535 .match_func = [](const Test& test) { return test.result() == TEST_TIMEOUT; }, in __anond6bf063a0502()
547 .match_func = [](const Test& test) { return test.result() == TEST_SKIPPED; }, in __anond6bf063a0702()
H A DIsolate.h53 bool (*match_func)(const Test&); member