HomeSort by relevance Sort by last modified time
    Searched defs:NormalizePath (Results 1 - 6 of 6) sorted by null

  /build/kati/
strutil_test.cc 91 static string NormalizePath(string s) {
92 ::NormalizePath(&s);
97 ASSERT_EQ(NormalizePath(""), "");
98 ASSERT_EQ(NormalizePath("."), "");
99 ASSERT_EQ(NormalizePath("/"), "/");
100 ASSERT_EQ(NormalizePath("/tmp"), "/tmp");
101 ASSERT_EQ(NormalizePath("////tmp////"), "/tmp");
102 ASSERT_EQ(NormalizePath("a////b"), "a/b");
103 ASSERT_EQ(NormalizePath("a//.//b"), "a/b");
104 ASSERT_EQ(NormalizePath("a////b//../c/////"), "a/c")
    [all...]
strutil.cc 311 void NormalizePath(string* o) {
377 NormalizePath(o);
506 NormalizePath(&r);
  /external/v8/build/
vs_toolchain.py 339 def NormalizePath(path):
362 NormalizePath(os.environ['GYP_MSVS_OVERRIDE_PATH']),
363 NormalizePath(os.environ['WINDOWSSDKDIR']),
365 NormalizePath(os.environ.get('WDK_DIR', '')),
  /external/v8/gypfiles/
vs_toolchain.py 336 def NormalizePath(path):
359 NormalizePath(os.environ['GYP_MSVS_OVERRIDE_PATH']),
360 NormalizePath(os.environ['WINDOWSSDKDIR']),
362 NormalizePath(os.environ.get('WDK_DIR', '')),
  /external/chromium-trace/catapult/telemetry/third_party/pyfakefs/pyfakefs/
fake_filesystem.py 424 NormalizePath, does not make it absolute. Eliminates dot components
457 def NormalizePath(self, path):
545 file_path = self.NormalizePath(file_path)
641 if not self.Exists(self.NormalizePath(file_path)):
678 # Don't call self.NormalizePath(), as we don't want to prepend self.cwd.
689 file_path = self.NormalizePath(file_path)
773 file_path = self.NormalizePath(file_path)
885 directory_path = self.NormalizePath(directory_path)
927 file_path = self.NormalizePath(file_path)
    [all...]
  /external/chromium-trace/catapult/third_party/pyfakefs/pyfakefs/
fake_filesystem.py 442 NormalizePath, does not make it absolute. Eliminates dot components
475 def NormalizePath(self, path):
563 file_path = self.NormalizePath(file_path)
659 if not self.Exists(self.NormalizePath(file_path)):
696 # Don't call self.NormalizePath(), as we don't want to prepend self.cwd.
707 file_path = self.NormalizePath(file_path)
791 file_path = self.NormalizePath(file_path)
903 directory_path = self.NormalizePath(directory_path)
945 file_path = self.NormalizePath(file_path)
    [all...]

Completed in 404 milliseconds