Home
last modified time | relevance | path

Searched refs:file_path (Results 1 – 2 of 2) sorted by relevance

/ndk/sources/third_party/googletest/googletest/test/
Dgtest-filepath_test.cc564 FilePath file_path(FilePath::GenerateUniqueFileName(testdata_path_, in TEST_F() local
566 EXPECT_EQ(unique_file0_.string(), file_path.string()); in TEST_F()
567 EXPECT_FALSE(file_path.FileOrDirectoryExists()); // file not there in TEST_F()
570 EXPECT_FALSE(file_path.FileOrDirectoryExists()); // file still not there in TEST_F()
571 CreateTextFile(file_path.c_str()); in TEST_F()
572 EXPECT_TRUE(file_path.FileOrDirectoryExists()); in TEST_F()
/ndk/sources/host-tools/ndk-depends/
Dndk-depends.cc960 String file_path = search_paths[n]; in FindLibraryPath() local
961 if (file_path.empty()) in FindLibraryPath()
963 if (file_path[file_path.size() - 1] != _T('/') && in FindLibraryPath()
964 file_path[file_path.size() - 1] != _T('\\')) { in FindLibraryPath()
965 file_path.append(_T("/")); in FindLibraryPath()
967 file_path.append(libname); in FindLibraryPath()
969 LOG2(_T(" in %s: "), file_path.c_str()); in FindLibraryPath()
971 if (_tstat(file_path.c_str(), &st) < 0) { in FindLibraryPath()
981 result->assign(file_path); in FindLibraryPath()