Home
last modified time | relevance | path

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

/external/llvm-project/lldb/include/lldb/Utility/
DRangeMap.h95 const BaseType rhs_end = rhs.GetRangeEnd(); in DoesAdjoinOrIntersect() local
96 bool result = (lhs_base <= rhs_end) && (lhs_end >= rhs_base); in DoesAdjoinOrIntersect()
105 const BaseType rhs_end = rhs.GetRangeEnd(); in DoesIntersect() local
106 bool result = (lhs_base < rhs_end) && (lhs_end > rhs_base); in DoesIntersect()
/external/llvm-project/lldb/source/Target/
DThreadList.cpp716 collection::iterator rhs_pos, rhs_end = rhs.m_threads.end(); in Update() local
717 for (rhs_pos = rhs.m_threads.begin(); rhs_pos != rhs_end; ++rhs_pos) { in Update()