Lines Matching refs:Sequence
160 DWARFDebugLine::Sequence::Sequence() { in Sequence() function in DWARFDebugLine::Sequence
164 void DWARFDebugLine::Sequence::reset() { in reset()
203 Sequence.reset(); in resetRowAndSequence()
207 if (Sequence.Empty) { in appendRowToMatrix()
209 Sequence.Empty = false; in appendRowToMatrix()
210 Sequence.LowPC = Row.Address; in appendRowToMatrix()
211 Sequence.FirstRowIndex = RowNumber; in appendRowToMatrix()
217 Sequence.HighPC = Row.Address; in appendRowToMatrix()
218 Sequence.LastRowIndex = RowNumber; in appendRowToMatrix()
219 if (Sequence.isValid()) in appendRowToMatrix()
220 LineTable->appendSequence(Sequence); in appendRowToMatrix()
221 Sequence.reset(); in appendRowToMatrix()
506 if (!State.Sequence.Empty) { in parse()
513 std::sort(Sequences.begin(), Sequences.end(), Sequence::orderByLowPC); in parse()
530 DWARFDebugLine::Sequence sequence; in lookupAddress()
535 DWARFDebugLine::Sequence::orderByLowPC); in lookupAddress()
536 DWARFDebugLine::Sequence found_seq; in lookupAddress()
576 DWARFDebugLine::Sequence sequence; in lookupAddressRange()
581 DWARFDebugLine::Sequence::orderByLowPC); in lookupAddressRange()
596 DWARFDebugLine::Sequence cur_seq = *seq_pos; in lookupAddressRange()