| /netbsd/src/external/gpl3/gcc/dist/libcpp/include/ |
| D | line-map.h | 320 struct GTY(()) source_range struct 330 static source_range from_location (location_t loc) in from_location() argument 332 source_range result; in from_location() 339 static source_range from_locations (location_t start, in from_locations() argument 342 source_range result; in from_locations() 756 source_range src_range; 1035 source_range, void *); 1040 extern source_range get_range_from_loc (line_maps *set, location_t loc); 1058 source_range src_range, in COMBINE_LOCATION_DATA() 1740 add_fixit_remove (source_range src_range); [all …]
|
| D | cpplib.h | 981 source_range get_next (); 1001 source_range get_range (int idx) const in get_range() 1007 void add_range (source_range range); 1011 source_range *m_ranges;
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/ |
| D | edit-context.cc | 1300 source_range range = source_range::from_locations (start, finish); in test_applying_fixits_replace_containing_newline() 1337 source_range range; in test_applying_fixits_remove() 1399 replace_a.add_fixit_replace (source_range::from_locations (c7, c9), in test_applying_fixits_multiple() 1404 replace_b.add_fixit_replace (source_range::from_locations (c11, c15), in test_applying_fixits_multiple() 1587 r1.add_fixit_replace (source_range::from_locations (c1, c3), in test_applying_fixits_modernize_named_init() 1592 r2.add_fixit_replace (source_range::from_locations (c8, c8), in test_applying_fixits_modernize_named_init() 1757 source_range range = source_range::from_locations (c11, c14); in test_applying_fixits_column_validation() 1774 source_range range = source_range::from_locations (c11, c15); in test_applying_fixits_column_validation()
|
| D | diagnostic-show-locus.cc | 1256 source_range src_range = get_range_from_loc (line_table, loc_range->m_loc); in maybe_add_location_range() 3423 source_range range; in test_one_liner_fixit_replace_non_equal_range() 3497 source_range range = source_range::from_locations (loc, c47); in test_one_liner_fixit_validation_adhoc_locations() 3513 source_range range = source_range::from_locations (loc, c47); in test_one_liner_fixit_validation_adhoc_locations() 3985 source_range range; in test_one_liner_fixit_replace_non_equal_range_utf8() 4073 source_range range = source_range::from_locations (loc, c52); in test_one_liner_fixit_validation_adhoc_locations_utf8() 4093 source_range range = source_range::from_locations (loc, c52); in test_one_liner_fixit_validation_adhoc_locations_utf8() 4584 richloc.add_fixit_replace (source_range::from_locations (c15, c17), in test_fixit_consolidation() 4598 richloc.add_fixit_replace (source_range::from_locations (c10, c15), in test_fixit_consolidation() 4613 richloc.add_fixit_replace (source_range::from_locations (c10, c15), in test_fixit_consolidation() [all …]
|
| D | substring-locations.cc | 154 source_range fmt_loc_range in emit_warning_n_va() 157 source_range fmt_substring_range in emit_warning_n_va()
|
| D | input.cc | 1042 source_range src_range; in make_location() 1055 make_location (location_t caret, source_range src_range) in make_location() 1578 source_range src_range = get_range_from_loc (line_table, strlocs[i]); in get_substring_ranges_for_loc() 1756 source_range *out_range) in get_source_range_for_char() 2016 source_range src_range = get_range_from_loc (line_table, range_c_b_d); in test_accessing_ordinary_linemaps() 2163 source_range tok_range = get_range_from_loc (line_table, tok_loc); in assert_token_loc_eq() 2477 source_range actual_range = source_range(); in assert_char_at_range() 3338 source_range actual_range; in test_lexer_string_locations_concatenation_2()
|
| D | input.h | 239 extern location_t make_location (location_t caret, source_range src_range);
|
| D | diagnostic.cc | 2274 source_range where; in test_print_parseable_fixits_remove() 2296 source_range where; in test_print_parseable_fixits_replace() 2326 source_range where; in test_print_parseable_fixits_bytes_vs_display_columns()
|
| D | print-tree.cc | 1023 source_range r = EXPR_LOCATION_RANGE (node); in print_node()
|
| D | tree.h | 1227 static inline source_range 6435 set_source_range (tree expr, source_range src_range);
|
| D | tree.cc | 14176 source_range src_range = get_range_from_loc (line_table, loc); in set_block() 14183 source_range src_range; in set_source_range() 14190 set_source_range (tree expr, source_range src_range) in set_source_range()
|
| D | ChangeLog-2016 | 14569 constructor based on source_range. 15438 "caret_idx", and converting output param from source_range * to 15449 "caret_idx", and converting output param from source_range * to 30483 * diagnostic.c (source_range::debug): Delete.
|
| D | ChangeLog-2017 | 11325 (maybe_warn): Convert source_range * param to a location_t. Pass 11328 source_range * in favor of just a location_t. 11332 source_range * param to a location_t.
|
| D | ChangeLog-2015 | 2351 from source_range to a location_t. 6059 (source_range::debug): Likewise. 8251 (source_range::debug): New function.
|
| /netbsd/src/external/gpl3/gcc/dist/libcpp/ |
| D | charset.cc | 835 m_ranges = XNEWVEC (source_range, m_alloc_ranges); in cpp_substring_ranges() 848 cpp_substring_ranges::add_range (source_range range) in add_range() 854 = (source_range *)xrealloc (m_ranges, in add_range() 855 sizeof (source_range) * m_alloc_ranges); in add_range() 1077 source_range *char_range, in _cpp_valid_ucn() 1199 source_range char_range, in convert_ucn() 1387 source_range char_range, in convert_hex() 1457 source_range char_range, in convert_oct() 1520 source_range char_range; in convert_escape() 1793 source_range range = loc_reader->get_next (); in cpp_interpret_string_1() [all …]
|
| D | line-map.cc | 118 source_range src_range, in can_be_stored_compactly_p() 159 source_range src_range, in get_combined_adhoc_loc() 262 static source_range 272 source_range 286 source_range result; in get_range_from_loc() 293 return source_range::from_location (loc); in get_range_from_loc() 2284 source_range range = get_range_from_loc (m_line_table, where); in add_fixit_remove() 2292 rich_location::add_fixit_remove (source_range src_range) in add_fixit_remove() 2315 source_range range = get_range_from_loc (m_line_table, where); in add_fixit_replace() 2323 rich_location::add_fixit_replace (source_range src_range, in add_fixit_replace()
|
| D | internal.h | 827 source_range *char_range,
|
| D | ChangeLog | 2180 * include/line-map.h (source_range::intersects_line_p): Delete. 2188 (source_range::intersects_line_p): Rename to... 2351 * charset.c (cpp_interpret_string_1): Add a source_range for the 2466 constructor based on source_range. 2489 * include/line-map.h (source_range::from_locations): New method. 2759 * include/line-map.h (source_range::debug): Delete. 2769 source_range or location_range *. 2778 source_range. 2786 source_range or location_range *. 2882 param; convert param from source_range to source_location. Drop [all …]
|
| D | lex.cc | 1356 source_range src_range; in get_location_for_byte_range_in_cur_line() 1824 source_range tok_range; in warn_about_normalization() 4026 source_range tok_range; in _cpp_lex_direct()
|
| D | directives.cc | 537 source_range misspelled_token_range in _cpp_handle_directive()
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/cp/ |
| D | cp-tree.h | 78 source_range src_range = get_range_from_loc (line_table, m_loc); in get_start() 83 source_range src_range = get_range_from_loc (line_table, m_loc); in get_finish()
|
| D | module.cc | 15578 source_range range = get_range_from_loc (line_table, loc); in write_location() 15663 source_range range; in read_location()
|