| /netbsd-src/external/gpl3/gcc/dist/libcpp/ |
| H A D | line-map.cc | 448 new_linemap (line_maps *set, location_t start_location) in new_linemap() argument 451 start_location >= LINE_MAP_MAX_LOCATION, in new_linemap() 454 result->start_location = start_location; in new_linemap() 464 return (((map[1].start_location - 1 in LAST_SOURCE_LINE_LOCATION() 465 - map->start_location) in LAST_SOURCE_LINE_LOCATION() 467 + map->start_location); in LAST_SOURCE_LINE_LOCATION() 489 location_t start_location = set->highest_location + 1; in linemap_add() local 491 if (start_location < LINE_MAP_MAX_LOCATION_WITH_COLS) in linemap_add() 493 start_location += (1 << range_bits) - 1; in linemap_add() 494 start_location &= ~((1 << range_bits) - 1); in linemap_add() [all …]
|
| H A D | location-example.txt | 194 map->start_location: 2147483632 225 map->start_location: 2147483639 257 map->start_location: 2147483646 267 map->start_location: 2147483647
|
| H A D | init.cc | 767 = penult[0].start_location; in read_original_filename() 769 penult[1].start_location = penult[0].start_location; in read_original_filename()
|
| H A D | ChangeLog | 1703 (linemap_add): Set start_location to 0 if we run out of line map 1917 (new_linemap): Take start_location, not reason. Adjust. 2975 (linemap_add): Ensure that start_location has zero for the 2977 Initialize range_bits to zero. Assert that the start_location
|
| /netbsd-src/external/gpl3/gcc.old/dist/libcpp/ |
| H A D | line-map.c | 387 new_linemap (line_maps *set, location_t start_location) in new_linemap() argument 389 bool macro_p = start_location >= LINE_MAP_MAX_LOCATION; in new_linemap() 441 result->start_location = start_location; in new_linemap() 465 location_t start_location; in linemap_add() local 468 start_location = set->highest_location + (1 << set->default_range_bits); in linemap_add() 470 start_location &= ~((1 << set->default_range_bits) - 1); in linemap_add() 471 linemap_assert (0 == (start_location in linemap_add() 475 start_location = set->highest_location + 1; in linemap_add() 478 || (start_location in linemap_add() 496 if (start_location >= LINE_MAP_MAX_LOCATION) in linemap_add() [all …]
|
| H A D | location-example.txt | 194 map->start_location: 2147483632 225 map->start_location: 2147483639 257 map->start_location: 2147483646 267 map->start_location: 2147483647
|
| /netbsd-src/external/gpl3/gcc.old/dist/libcpp/include/ |
| H A D | line-map.h | 385 location_t start_location; member 585 return IS_ORDINARY_LOC (map->start_location); in MAP_ORDINARY_P() 639 return map->start_location; in MAP_START_LOCATION() 1150 return ((loc - ord_map->start_location) in SOURCE_LINE() 1158 return ((loc - ord_map->start_location) in SOURCE_COLUMN()
|
| /netbsd-src/external/gpl3/gcc/dist/libcpp/include/ |
| H A D | line-map.h | 386 location_t start_location; member 587 return IS_ORDINARY_LOC (map->start_location); in MAP_ORDINARY_P() 641 return map->start_location; in MAP_START_LOCATION() 1197 return ((loc - ord_map->start_location) in SOURCE_LINE() 1205 return ((loc - ord_map->start_location) in SOURCE_COLUMN()
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/c-family/ |
| H A D | c-ppoutput.c | 655 input_location = map->start_location; in pp_file_change() 660 print_line (map->start_location, flags); in pp_file_change() 673 print_line (map->start_location, flags); in pp_file_change()
|
| H A D | c-lex.c | 208 input_location = new_map->start_location; in fe_file_change() 231 input_location = new_map->start_location; in fe_file_change() 237 input_location = new_map->start_location; in fe_file_change()
|
| H A D | c-opts.c | 1468 cpp_force_token_locations (parse_in, cmd_map->start_location); in c_finish_options()
|
| H A D | c-common.c | 8761 location_t col_0 = ord_map_for_insertion->start_location; in try_to_locate_new_include_insertion_point()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/c-family/ |
| H A D | c-ppoutput.cc | 751 input_location = map->start_location; in pp_file_change() 756 print_line (map->start_location, flags); in pp_file_change() 769 print_line (map->start_location, flags); in pp_file_change()
|
| H A D | c-lex.cc | 207 input_location = new_map->start_location; in fe_file_change() 230 input_location = new_map->start_location; in fe_file_change() 236 input_location = new_map->start_location; in fe_file_change()
|
| H A D | c-common.cc | 9220 location_t col_0 = ord_map_for_insertion->start_location; in try_to_locate_new_include_insertion_point()
|
| /netbsd-src/external/apache2/llvm/dist/clang/bindings/python/clang/ |
| H A D | cindex.py | 2948 start_location, end_location = locations 2950 if hasattr(start_location, '__len__'): 2951 start_location = SourceLocation.from_position(self, f, 2952 start_location[0], start_location[1]) 2953 elif isinstance(start_location, int): 2954 start_location = SourceLocation.from_offset(self, f, 2955 start_location) 2963 assert isinstance(start_location, SourceLocation) 2966 return SourceRange.from_locations(start_location, end_location)
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/fortran/ |
| H A D | cpp.cc | 919 print_line (map->start_location, flags); in cb_file_change() 931 print_line (map->start_location, flags); in cb_file_change()
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/fortran/ |
| H A D | cpp.c | 899 print_line (map->start_location, flags); in cb_file_change() 911 print_line (map->start_location, flags); in cb_file_change()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/ |
| H A D | input.cc | 1353 map->start_location, in dump_location_info() 1354 (map->start_location in dump_location_info() 1360 map->start_location); in dump_location_info()
|
| H A D | ChangeLog-2004 | 42224 <from_line>: Rename field to start_location.
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
| H A D | input.c | 1202 map->start_location, in dump_location_info() 1203 (map->start_location in dump_location_info() 1209 map->start_location); in dump_location_info()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/cp/ |
| H A D | module.cc | 13605 interval.ordinary.second = map->start_location; in init() 16231 map->start_location = hwm + (offset - zero); in read_ordinary_maps() 16232 if (map->start_location < lwm) in read_ordinary_maps() 16234 lwm = map->start_location; in read_ordinary_maps()
|