Home | History | Annotate | Download | only in common

Lines Matching defs:line

181       Line line;
183 // the absolute address of the line.
184 line.address = iterator_->value;
185 line.filename = current_source_file_;
186 // The n_desc of a N_SLINE entry is the line number. It's a
187 // signed 16-bit field; line numbers from 32768 to 65535 are
189 line.number = (uint16_t) iterator_->descriptor;
190 queued_lines_.push_back(line);
238 for (vector<Line>::const_iterator it = queued_lines_.begin();
240 if (!handler_->Line(it->address, it->filename, it->number))
249 // The value of an N_SLINE entry is the offset of the line from
252 // The n_desc of a N_SLINE entry is the line number. It's a
253 // signed 16-bit field; line numbers from 32768 to 65535 are
256 if (! handler_->Line(line_address, current_source_file_, line_number))