Lines Matching refs:line

34    - Answer 1: "Filename and line number."  (Or column number, if
39 - Answer 2: "Compilation unit, filename, and line number." This is
43 set a breakpoint on line 12 of the fifth #inclusion of "foo.c"?
45 - Answer 3: "Compilation unit, chain of #inclusions, and line
70 In this interface, the first line of a file is numbered 1, not 0.
88 2002, GCC does record the effect of #line directives in the source
89 line info, but not in macro info. This means that GDB's symtabs
97 suitable for ordinary non-macro line number info.
99 Suppose you take your main source file, and after each line
107 splicing the last #included line with the next line of the
110 Libcpp calls line numbers in this big imaginary file "logical line
111 numbers", and has a data structure called a "line map" that can map
112 logical line numbers onto actual source filenames and line numbers,
114 particular logical line number. Basically, this means you can pass
115 around a single line number and some kind of "compilation unit"
135 /* If `included_from' is non-zero, the line number in that source
196 Record in SOURCE's macro table that, at line number LINE in SOURCE,
202 The first line of the source file has a line number of 1, not 0.
207 int line,
223 Record in SOURCE's macro table that, at line number LINE in SOURCE,
227 void macro_define_object (struct macro_source_file *source, int line,
233 Record in SOURCE's macro table that, at line number LINE in SOURCE,
241 void macro_define_function (struct macro_source_file *source, int line,
247 Record in SOURCE's macro table that, at line number LINE in SOURCE,
249 void macro_undef (struct macro_source_file *source, int line,
282 /* Return a pointer to the macro definition for NAME in scope at line
289 int line, const char *name));
293 line number LINE of SOURCE. Set *DEFINITION_LINE to the line
299 int line,