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