Home
last modified time | relevance | path

Searched refs:m_begin (Results 1 – 4 of 4) sorted by relevance

/external/llvm-project/lldb/source/Plugins/ObjectFile/PECOFF/
DPECallFrameInfo.cpp361 EHProgram::const_iterator m_begin; member in EHProgramRange
367 : m_begin(begin), m_end(end) {} in EHProgramRange()
372 if (m_begin != m_end) in BuildUnwindPlanRow()
373 row->SetOffset(m_begin->offset); in BuildUnwindPlanRow()
378 for (EHProgram::const_iterator it = m_begin; it != m_end; ++it) { in BuildUnwindPlanRow()
396 for (EHProgram::const_iterator it = m_begin; it != m_end; ++it) { in BuildUnwindPlanRow()
423 for (EHProgram::const_iterator it = m_begin; it != m_end; ++it) { in GetCFAFrameOffset()
/external/deqp/framework/common/
DtcuFormatUtil.hpp95 , m_begin (begin) in Bitfield()
103 for (const BitDesc* curDesc = m_begin; curDesc != m_end; curDesc++) in toStream()
126 const BitDesc* m_begin; member in tcu::Format::Bitfield
/external/catch2/docs/
Dmatchers.md161 int m_begin, m_end;
163 IntRange( int begin, int end ) : m_begin( begin ), m_end( end ) {}
167 return i >= m_begin && i <= m_end;
176 ss << "is between " << m_begin << " and " << m_end;
/external/deqp/modules/glshared/
DglsFboUtil.hpp55 const T* m_begin; member
58 const T* begin (void) const { return m_begin; } in begin()