HomeSort by: relevance | last modified time | path
    Searched defs:exploc (Results 1 - 20 of 20) sorted by relevancy

  /src/external/gpl3/gcc/dist/gcc/
gcc-rich-location.cc 81 expanded_location exploc = expand_location (loc); local
82 char_span line = fc.get_source_line (exploc.file, exploc.line);
85 if (line.length () < (size_t)exploc.column)
88 for (int column = 1; column < exploc.column; ++column)
diagnostic-format-json.cc 98 expanded_location exploc = expand_location (loc); local
100 if (exploc.file)
101 result->set_string ("file", exploc.file);
102 result->set_integer ("line", exploc.line);
117 const int col = context->converted_column (exploc);
optinfo-emit-json.cc 196 expanded_location exploc = expand_location (loc); local
198 obj->set_string ("file", exploc.file);
199 obj->set_integer ("line", exploc.line);
200 obj->set_integer ("column", exploc.column);
tree-diagnostic-path.cc 205 expanded_location exploc local
208 if (exploc.file != LOCATION_FILE (dc->m_last_location))
209 diagnostic_start_span (dc) (dc, exploc);
edit-context.cc 1476 expanded_location exploc = expand_location (loc); local
1479 ASSERT_EQ (line_num, exploc.line);
1480 ASSERT_EQ (column, exploc.column);
1502 expanded_location exploc = expand_location (loc); local
1505 ASSERT_EQ (line_num, exploc.line);
1506 ASSERT_EQ (column, exploc.column);
diagnostic-show-locus.cc 173 /* Utility class to augment an exploc with the corresponding display column. */
179 const expanded_location &exploc,
182 : expanded_location (exploc),
183 m_display_col (location_compute_display_column (fc, exploc, policy))
185 if (exploc.column > 0)
191 expanded_location prev_exploc (exploc);
210 layout_point (const exploc_with_display_col &exploc)
211 : m_line (exploc.line)
213 m_columns[CU_BYTES] = exploc.column;
214 m_columns[CU_DISPLAY_COLS] = exploc.m_display_col
1434 expanded_location exploc = m_exploc; local
1447 expanded_location exploc = expand_location (loc); local
2312 expanded_location exploc = expand_location (hint->get_start_loc ()); local
    [all...]
input.cc 1189 expanded_location exploc,
1192 if (!(exploc.file && *exploc.file && exploc.line && exploc.column))
1193 return exploc.column;
1194 char_span line = fc.get_source_line (exploc.file, exploc.line);
1195 /* If line is NULL, this function returns exploc.column which is the
1198 exploc.column, policy)
1404 expanded_location exploc local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
gcc-rich-location.cc 80 expanded_location exploc = expand_location (loc); local
81 char_span line = location_get_source_line (exploc.file, exploc.line);
84 if (line.length () < (size_t)exploc.column)
87 for (int column = 1; column < exploc.column; ++column)
diagnostic-format-json.cc 49 expanded_location exploc = expand_location (loc); local
51 if (exploc.file)
52 result->set ("file", new json::string (exploc.file));
53 result->set ("line", new json::integer_number (exploc.line));
68 const int col = diagnostic_converted_column (context, exploc);
optinfo-emit-json.cc 196 expanded_location exploc = expand_location (loc); local
198 obj->set ("file", new json::string (exploc.file));
199 obj->set ("line", new json::integer_number (exploc.line));
200 obj->set ("column", new json::integer_number (exploc.column));
tree-diagnostic-path.cc 155 expanded_location exploc local
158 if (exploc.file != LOCATION_FILE (dc->last_location))
159 dc->start_span (dc, exploc);
edit-context.cc 1451 expanded_location exploc = expand_location (loc); local
1454 ASSERT_EQ (line_num, exploc.line);
1455 ASSERT_EQ (column, exploc.column);
1477 expanded_location exploc = expand_location (loc); local
1480 ASSERT_EQ (line_num, exploc.line);
1481 ASSERT_EQ (column, exploc.column);
diagnostic-show-locus.cc 173 /* Utility class to augment an exploc with the corresponding display column. */
178 exploc_with_display_col (const expanded_location &exploc,
181 : expanded_location (exploc),
182 m_display_col (location_compute_display_column (exploc, policy))
184 if (exploc.column > 0)
190 expanded_location prev_exploc (exploc);
209 layout_point (const exploc_with_display_col &exploc)
210 : m_line (exploc.line)
212 m_columns[CU_BYTES] = exploc.column;
213 m_columns[CU_DISPLAY_COLS] = exploc.m_display_col
1411 expanded_location exploc = m_exploc; local
1424 expanded_location exploc = expand_location (loc); local
2255 expanded_location exploc = expand_location (hint->get_start_loc ()); local
    [all...]
input.cc 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 local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/c-family/
c-indentation.cc 45 on the line (up to or before EXPLOC). */
49 expanded_location exploc,
54 char_span line = fc.get_source_line (exploc.file, exploc.line);
57 if ((size_t)exploc.column > line.length ())
60 for (int i = 1; i < exploc.column; i++)
705 expanded_location exploc; local
706 exploc.file = file;
707 exploc.line = line;
708 exploc.column = column
747 expanded_location exploc; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/c-family/
c-indentation.cc 45 on the line (up to or before EXPLOC). */
48 get_visual_column (expanded_location exploc,
53 char_span line = location_get_source_line (exploc.file, exploc.line);
56 if ((size_t)exploc.column > line.length ())
59 for (int i = 1; i < exploc.column; i++)
694 expanded_location exploc; local
695 exploc.file = file;
696 exploc.line = line;
697 exploc.column = column
732 expanded_location exploc; local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/jit/
jit-playback.cc 3687 expanded_location exploc = expand_location (gcc_loc); local
3688 if (exploc.file)
3689 rec_loc = m_recording_ctxt->new_location (exploc.file,
3690 exploc.line,
3691 exploc.column,
  /src/external/gpl3/gcc.old/dist/gcc/jit/
jit-playback.cc 3509 expanded_location exploc = expand_location (gcc_loc); local
3510 if (exploc.file)
3511 rec_loc = m_recording_ctxt->new_location (exploc.file,
3512 exploc.line,
3513 exploc.column,
  /src/external/gpl3/gcc/dist/gcc/c/
c-typeck.cc 7124 location_t exploc = expansion_point_location_if_in_system_header (loc);
7126 bool warned = emit_diagnostic_valist (kind, exploc, opt, gmsgid, ap);
7129 inform (exploc, "(near initialization for %qs)", ofwhat);
7174 location_t exploc = expansion_point_location_if_in_system_header (loc);
7177 warned = warning_at (exploc, opt, gmsgid);
7180 inform (exploc, "(near initialization for %qs)", ofwhat);
7102 location_t exploc = expansion_point_location_if_in_system_header (loc); local
7152 location_t exploc = expansion_point_location_if_in_system_header (loc); local
  /src/external/gpl3/gcc.old/dist/gcc/c/
c-typeck.cc 6609 location_t exploc = expansion_point_location_if_in_system_header (loc);
6613 bool warned = emit_diagnostic_valist (DK_PEDWARN, exploc, opt, gmsgid, &ap);
6617 inform (exploc, "(near initialization for %qs)", ofwhat); local
6637 location_t exploc = expansion_point_location_if_in_system_header (loc);
6640 warned = warning_at (exploc, opt, gmsgid);
6643 inform (exploc, "(near initialization for %qs)", ofwhat);
6589 location_t exploc = expansion_point_location_if_in_system_header (loc); local

Completed in 53 milliseconds