Searched refs:checkIntersect (Results 1 – 1 of 1) sorted by relevance
| /llvm-project-15.0.7/clang/unittests/StaticAnalyzer/ |
| H A D | RangeSetTest.cpp | 312 this->checkIntersect({}, 42, {}); in TYPED_TEST() 314 this->checkIntersect({{42, 42}}, 42, {{42, 42}}); in TYPED_TEST() 326 this->checkIntersect({}, 10, 20, {}); in TYPED_TEST() 327 this->checkIntersect({}, 20, 10, {}); in TYPED_TEST() 332 this->checkIntersect({{10, 20}}, 21, 9, {}); in TYPED_TEST() 343 this->checkIntersect({}, {}, {}); in TYPED_TEST() 344 this->checkIntersect({}, {{0, 10}}, {}); in TYPED_TEST() 345 this->checkIntersect({{0, 10}}, {}, {}); in TYPED_TEST() 347 this->checkIntersect({{0, 10}}, {{4, 6}}, {{4, 6}}); in TYPED_TEST() 350 this->checkIntersect({{0, 10}}, {{4, 4}}, {{4, 4}}); in TYPED_TEST() [all …]
|