Searched defs:normpath (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
H A Dfind_files_unittest.py40 def normpath(self, path): member in class:MockWinFileSystem
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Dfilesystem.py183 def normpath(self, path): member in class:FileSystem
184 return os.path.normpath(path)
H A Dfilesystem_mock.py80 return self.normpath(path)
102 path = self.normpath(path)
179 return self.normpath(path) in self.dirs
265 norm_path = self.normpath(self.join(*path))
283 return re.sub(re.escape(os.path.sep), self.sep, os.path.normpath(path))
285 def normpath(self, path): member in class:MockFileSystem
343 # Since os.path.relpath() calls os.path.normpath()
365 # since os.path.normpath() collapses separators, but we use
384 path = self.normpath(path)
395 source = self.normpath(sourc
[all...]
/external/chromium_org/tools/grit/grit/
H A Dutil.py73 normalized_path = os.path.normpath(path_without_prefix.strip(os.path.sep))
319 return os.path.normpath(os.path.join(_root_dir, path))
362 def normpath(path): function
363 '''Version of os.path.normpath that also changes backward slashes to
366 # This is safe to always do because the Windows version of os.path.normpath
369 return os.path.normpath(path)

Completed in 3371 milliseconds