Lines Matching refs:include_path
57 include_path = found_item.group(1)
59 if '\\' in include_path:
61 include_path,
65 if '/' not in include_path:
69 print(' WARNING: include specified with no directory: ' + include_path)
72 if self._resolve_dotdot and '../' in include_path:
74 include_path = os.path.join(dependee_dir, include_path)
75 include_path = os.path.relpath(include_path, self._root_dir)
77 rule = rules.RuleApplyingTo(include_path, dependee_path)
80 return True, results.DependencyViolation(include_path, rule, rules)