Home
last modified time | relevance | path

Searched refs:m_fixit_hints (Results 1 – 6 of 6) sorted by relevance

/netbsd/src/external/gpl3/gcc/dist/libcpp/
Dline-map.cc2089 m_fixit_hints (), in rich_location()
2099 for (unsigned int i = 0; i < m_fixit_hints.count (); i++) in ~rich_location()
2349 if (m_fixit_hints.count () > 0) in get_last_fixit_hint()
2350 return get_fixit_hint (m_fixit_hints.count () - 1); in get_last_fixit_hint()
2390 for (unsigned int i = 0; i < m_fixit_hints.count (); i++) in stop_supporting_fixits()
2392 m_fixit_hints.truncate (0); in stop_supporting_fixits()
2484 m_fixit_hints.push (new fixit_hint (start, next_loc, new_content)); in maybe_add_fixit()
DChangeLog2415 m_fixit_hints.
2426 (rich_location::m_fixit_hints): ...this, converting from a
2900 (rich_location::m_fixit_hints): New field.
/netbsd/src/external/gpl3/gcc/dist/libcpp/include/
Dline-map.h1760 unsigned int get_num_fixit_hints () const { return m_fixit_hints.count (); } in get_num_fixit_hints()
1761 fixit_hint *get_fixit_hint (int idx) const { return m_fixit_hints[idx]; } in get_fixit_hint()
1826 semi_embedded_vec <fixit_hint *, MAX_STATIC_FIXIT_HINTS> m_fixit_hints; variable
/netbsd/src/external/gpl3/gcc/dist/gcc/
Ddiagnostic-show-locus.cc441 auto_vec <const fixit_hint *> m_fixit_hints; member in __anon39eef0690111::layout
1199 m_fixit_hints (richloc->get_num_fixit_hints ()), in layout()
1219 m_fixit_hints.safe_push (hint); in layout()
1223 m_fixit_hints.qsort (fixit_cmp); in layout()
1420 for (unsigned int i = 0; i < m_fixit_hints.length (); i++) in get_expanded_location()
1422 const fixit_hint *hint = m_fixit_hints[i]; in get_expanded_location()
1528 for (unsigned int i = 0; i < m_fixit_hints.length (); i++) in calculate_line_spans()
1530 const fixit_hint *hint = m_fixit_hints[i]; in calculate_line_spans()
2069 for (unsigned int i = 0; i < m_fixit_hints.length (); i++) in print_leading_fixits()
2071 const fixit_hint *hint = m_fixit_hints[i]; in print_leading_fixits()
[all …]
DChangeLog-201614287 * diagnostic-show-locus.c (class layout): Add field m_fixit_hints.
14298 (layout::layout): Populate m_fixit_hints.
14306 validated fixits in m_fixit_hints. Add "const" to hint pointers.
DChangeLog-201723948 (layout::layout): Sort m_fixit_hints.