Searched refs:overlapsWith (Results 1 – 3 of 3) sorted by relevance
| /llvm-project-15.0.7/clang/unittests/Tooling/ |
| H A D | RefactoringTest.cpp | 772 EXPECT_TRUE(Range(10, 10).overlapsWith(Range(0, 11))); in TEST() 773 EXPECT_TRUE(Range(0, 11).overlapsWith(Range(10, 10))); in TEST() 774 EXPECT_FALSE(Range(10, 10).overlapsWith(Range(0, 10))); in TEST() 775 EXPECT_FALSE(Range(0, 10).overlapsWith(Range(10, 10))); in TEST() 776 EXPECT_TRUE(Range(0, 10).overlapsWith(Range(2, 6))); in TEST() 777 EXPECT_TRUE(Range(2, 6).overlapsWith(Range(0, 10))); in TEST()
|
| /llvm-project-15.0.7/clang/include/clang/Tooling/Core/ |
| H A D | Replacement.h | 58 bool overlapsWith(Range RHS) const { in overlapsWith() function
|
| /llvm-project-15.0.7/clang/lib/Tooling/Core/ |
| H A D | Replacement.cpp | 307 .overlapsWith(Range(R2.getOffset(), R2.getLength())); in add()
|