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

  /external/chromium_org/tools/gn/
filesystem_utils_unittest.cc 76 TEST(FilesystemUtils, IsPathAbsolute) {
77 EXPECT_TRUE(IsPathAbsolute("/foo/bar"));
78 EXPECT_TRUE(IsPathAbsolute("/"));
79 EXPECT_FALSE(IsPathAbsolute(""));
80 EXPECT_FALSE(IsPathAbsolute("//"));
81 EXPECT_FALSE(IsPathAbsolute("//foo/bar"));
84 EXPECT_TRUE(IsPathAbsolute("C:/foo"));
85 EXPECT_TRUE(IsPathAbsolute("C:/"));
86 EXPECT_TRUE(IsPathAbsolute("C:\\foo"));
87 EXPECT_TRUE(IsPathAbsolute("C:\\"))
    [all...]
source_dir.cc 57 } else if (IsPathAbsolute(p)) {
94 } else if (IsPathAbsolute(p)) {
filesystem_utils.h 108 bool IsPathAbsolute(const base::StringPiece& path);
filesystem_utils.cc 300 bool IsPathAbsolute(const base::StringPiece& path) {
323 DCHECK(IsPathAbsolute(source_root));
324 DCHECK(IsPathAbsolute(path));
  /external/chromium/base/
file_path.cc 87 bool IsPathAbsolute(const StringType& path) {
446 DCHECK(!IsPathAbsolute(component));
493 return IsPathAbsolute(path_);
    [all...]
  /external/chromium_org/base/files/
file_path.cc 81 bool IsPathAbsolute(const StringType& path) {
485 DCHECK(!IsPathAbsolute(*appended));
533 return IsPathAbsolute(path_);
    [all...]

Completed in 174 milliseconds