Lines Matching refs:path
85 sys.path.append(input_api.os_path.join(
144 original_sys_path = sys.path
146 sys.path = sys.path + [input_api.os_path.join(
152 # Restore sys.path to what it was before.
153 sys.path = original_sys_path
158 impacted_files = union([_CollectImpactedFiles(path) for path in deps_files])
159 impacted_file_objs = [ImpactedFile(path) for path in impacted_files]
163 return os.path.isfile(p) and os.path.basename(p) == 'DEPS'
177 parent_dir = os.path.dirname(deps_file)
179 abs_f = os.path.join(parent_dir, relative_f)
189 def __init__(self, path):
190 self._path = path
193 path = self._path.replace(os.sep, '/')
194 return os.path.normpath(path)
227 for path, rule_type, rule_description in deps_checker.CheckAddedCppIncludes(
229 description_with_path = '{}\n {}'.format(path, rule_description)
262 def PathToGuardMacro(path):
264 x = input_api.re.sub(leading_src_pattern, 'v8_', path)
382 def LicenseFilter(path):
383 input_api.FilterSourceFile(path, files_to_skip=_LICENSE_FILE)