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

  /external/gtest/test/
gtest-filepath_test.cc 321 EXPECT_TRUE(FilePath(current_drive).DirectoryExists());
323 EXPECT_TRUE(FilePath("/").DirectoryExists());
338 EXPECT_FALSE(FilePath(non_drive).DirectoryExists());
348 EXPECT_FALSE(FilePath("").DirectoryExists());
355 EXPECT_TRUE(FilePath(".").DirectoryExists());
356 EXPECT_TRUE(FilePath(".\\").DirectoryExists());
359 EXPECT_TRUE(FilePath(".").DirectoryExists());
360 EXPECT_TRUE(FilePath("./").DirectoryExists());
507 EXPECT_FALSE(testdata_path_.DirectoryExists()) << testdata_path_.c_str();
509 EXPECT_TRUE(testdata_path_.DirectoryExists());
    [all...]
  /external/gtest/include/gtest/internal/
gtest-filepath.h 162 bool DirectoryExists() const;
  /external/gtest/src/
gtest-filepath.cc 187 bool FilePath::DirectoryExists() const {
276 if (pathname_.GetLength() == 0 || this->DirectoryExists()) {
302 return this->DirectoryExists(); // An error is OK if the directory exists.

Completed in 36 milliseconds