Lines Matching full:includes
28 includes = {}
45 includes[relative_path] = current_includes
47 for defn_file, defn_file_includes in includes.items():
58 … if main_header_file not in includes and alternative_main_header_file not in includes:
61 …raise Exception('%s should have included %s, but it includes only: %s' % (defn_file, main_header_f…
62 if main_header_file in includes and defn_file not in includes[main_header_file]:
63 … Exception('%s should have included %s, but it includes only: %s' % (main_header_file, defn_file, …
64 …if alternative_main_header_file in includes and defn_file not in includes[alternative_main_header_…
65 … Exception('%s should have included %s, but it includes only: %s' % (main_header_file, defn_file, …
66 for other_header, other_header_includes in includes.items():
68 … raise Exception('Unexpected direct include: %s includes %s' % (other_header, defn_file))