Home
last modified time | relevance | path

Searched refs:DoesIntersect (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/lldb/unittests/Utility/
H A DRangeTest.cpp236 TEST(RangeTest, DoesIntersect) { in TEST() argument
239 EXPECT_FALSE(r.DoesIntersect(RangeT(1, 1))); in TEST()
240 EXPECT_FALSE(r.DoesIntersect(RangeT(1, 2))); in TEST()
241 EXPECT_TRUE(r.DoesIntersect(RangeT(2, 2))); in TEST()
242 EXPECT_TRUE(r.DoesIntersect(RangeT(4, 2))); in TEST()
243 EXPECT_TRUE(r.DoesIntersect(RangeT(6, 2))); in TEST()
244 EXPECT_FALSE(r.DoesIntersect(RangeT(7, 2))); in TEST()
245 EXPECT_FALSE(r.DoesIntersect(RangeT(8, 2))); in TEST()
/llvm-project-15.0.7/lldb/source/Plugins/Process/Utility/
H A DMemoryTagManagerAArch64MTE.cpp171 return rhs.GetRange().DoesIntersect(lhs.GetRange()); in MakeTaggedRanges()
188 if (!region.GetRange().DoesIntersect(range)) in MakeTaggedRanges()
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBLocationToDWARFExpression.cpp48 if (!range->DoesIntersect(fdRange)) in GetCorrespondingFrameData()
/llvm-project-15.0.7/lldb/source/Target/
H A DMemory.cpp68 if (!chunk_range.DoesIntersect(flush_range)) in Flush()
/llvm-project-15.0.7/lldb/source/Symbol/
H A DDWARFCallFrameInfo.cpp207 if (fde && fde->DoesIntersect( in GetFirstFDEEntryInRange()
/llvm-project-15.0.7/lldb/include/lldb/Utility/
H A DRangeMap.h112 bool DoesIntersect(const Range &rhs) const { in DoesIntersect() function