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

  /external/chromium_org/tools/gn/
filesystem_utils_unittest.cc 93 TEST(FilesystemUtils, IsPathAbsolute) {
94 EXPECT_TRUE(IsPathAbsolute("/foo/bar"));
95 EXPECT_TRUE(IsPathAbsolute("/"));
96 EXPECT_FALSE(IsPathAbsolute(""));
97 EXPECT_FALSE(IsPathAbsolute("//"));
98 EXPECT_FALSE(IsPathAbsolute("//foo/bar"));
101 EXPECT_TRUE(IsPathAbsolute("C:/foo"));
102 EXPECT_TRUE(IsPathAbsolute("C:/"));
103 EXPECT_TRUE(IsPathAbsolute("C:\\foo"));
104 EXPECT_TRUE(IsPathAbsolute("C:\\"))
    [all...]
source_dir.cc 57 } else if (IsPathAbsolute(p)) {
94 } else if (IsPathAbsolute(p)) {
filesystem_utils.h 119 bool IsPathAbsolute(const base::StringPiece& path);
filesystem_utils.cc 356 bool IsPathAbsolute(const base::StringPiece& path) {
380 DCHECK(IsPathAbsolute(source_root));
381 DCHECK(IsPathAbsolute(path));
  /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 308 milliseconds