Home
last modified time | relevance | path

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

/external/llvm-project/lldb/unittests/Utility/
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()
/external/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
DPDBLocationToDWARFExpression.cpp47 if (!range->DoesIntersect(fdRange)) in GetCorrespondingFrameData()
/external/llvm-project/lldb/source/Target/
DMemory.cpp67 if (!chunk_range.DoesIntersect(flush_range)) in Flush()
/external/llvm-project/lldb/include/lldb/Utility/
DRangeMap.h101 bool DoesIntersect(const Range &rhs) const { in DoesIntersect() function
/external/llvm-project/lldb/source/Symbol/
DDWARFCallFrameInfo.cpp204 if (fde && fde->DoesIntersect( in GetFirstFDEEntryInRange()