Home | History | Annotate | Download | only in gcc

Lines Matching defs:exploc

1066 location_compute_display_column (expanded_location exploc,
1069 if (!(exploc.file && *exploc.file && exploc.line && exploc.column))
1070 return exploc.column;
1071 char_span line = location_get_source_line (exploc.file, exploc.line);
1072 /* If line is NULL, this function returns exploc.column which is the
1075 exploc.column, policy);
1279 expanded_location exploc
1282 if (exploc.column == 0)
1286 char_span line_text = location_get_source_line (exploc.file,
1287 exploc.line);
1292 exploc.file, exploc.line,
1304 int len_lnum = num_digits (exploc.line);
1311 int indent = 6 + strlen (exploc.file) + len_lnum + len_loc;