Lines Matching refs:LineIndex
215 for (size_t LineIndex = 0; LineIndex != Text.size(); ++LineIndex) { in dump() local
216 Text[LineIndex] += spaces(LongestLine - Text[LineIndex].size()); in dump()
218 if (Code[LineIndex].Addr == J.From) { in dump()
219 Text[LineIndex] += " --+"; in dump()
221 } else if (Code[LineIndex].Addr == J.To) { in dump()
222 Text[LineIndex] += " <-+"; in dump()
225 Text[LineIndex] += " |"; in dump()
231 for (ssize_t LineIndex = Text.size() - 1; LineIndex >= 0; --LineIndex) { in dump() local
232 Text[LineIndex] += spaces(LongestLine - Text[LineIndex].size()); in dump()
233 if (Code[LineIndex].Addr == J.From) { in dump()
234 Text[LineIndex] += " --+"; in dump()
236 } else if (Code[LineIndex].Addr == J.To) { in dump()
237 Text[LineIndex] += " <-+"; in dump()
240 Text[LineIndex] += " |"; in dump()