HomeSort by relevance Sort by last modified time
    Searched refs:FilePath (Results 26 - 50 of 464) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/llvm/utils/unittest/googletest/src/
gtest-filepath.cc 32 #include "gtest/internal/gtest-filepath.h"
98 FilePath FilePath::GetCurrentDir() {
102 return FilePath(kCurrentDirectoryString);
105 return FilePath(_getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd);
108 return FilePath(getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd);
112 // Returns a copy of the FilePath with the case-insensitive extension removed.
113 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
114 // FilePath("dir/file"). If a case-insensitive extension is not
115 // found, returns a copy of the original FilePath
    [all...]
  /external/mesa3d/src/gtest/src/
gtest-filepath.cc 32 #include "gtest/internal/gtest-filepath.h"
100 FilePath FilePath::GetCurrentDir() {
104 return FilePath(kCurrentDirectoryString);
107 return FilePath(_getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd);
110 return FilePath(getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd);
114 // Returns a copy of the FilePath with the case-insensitive extension removed.
115 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
116 // FilePath("dir/file"). If a case-insensitive extension is not
117 // found, returns a copy of the original FilePath
    [all...]
  /external/protobuf/gtest/src/
gtest-filepath.cc 32 #include <gtest/internal/gtest-filepath.h>
100 FilePath FilePath::GetCurrentDir() {
104 return FilePath(kCurrentDirectoryString);
107 return FilePath(_getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd);
110 return FilePath(getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd);
114 // Returns a copy of the FilePath with the case-insensitive extension removed.
115 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
116 // FilePath("dir/file"). If a case-insensitive extension is not
117 // found, returns a copy of the original FilePath
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/src/
gtest-filepath.cc 33 #include "gtest/internal/gtest-filepath.h"
101 FilePath FilePath::GetCurrentDir() {
105 return FilePath(kCurrentDirectoryString);
108 return FilePath(_getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd);
111 return FilePath(getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd);
115 // Returns a copy of the FilePath with the case-insensitive extension removed.
116 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
117 // FilePath("dir/file"). If a case-insensitive extension is not
118 // found, returns a copy of the original FilePath
    [all...]
  /ndk/sources/third_party/googletest/googletest/src/
gtest-filepath.cc 33 #include "gtest/internal/gtest-filepath.h"
101 FilePath FilePath::GetCurrentDir() {
105 return FilePath(kCurrentDirectoryString);
108 return FilePath(_getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd);
111 return FilePath(getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd);
115 // Returns a copy of the FilePath with the case-insensitive extension removed.
116 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
117 // FilePath("dir/file"). If a case-insensitive extension is not
118 // found, returns a copy of the original FilePath
    [all...]
  /system/connectivity/shill/
certificate_file.h 38 virtual base::FilePath CreatePEMFromStrings(
42 void set_root_directory(const base::FilePath& root_directory) {
64 // path the output data on success or an empty FilePath otherwise.
65 base::FilePath WriteFile(const std::string& output_data);
68 base::FilePath root_directory_;
71 base::FilePath output_file_;
mock_certificate_file.h 35 base::FilePath(const std::string& pem_contents));
37 base::FilePath(const std::vector<std::string>& pem_contents));
store_factory.h 23 class FilePath;
35 StoreInterface* CreateStore(const base::FilePath& path);
  /external/libchrome/base/files/
file_enumerator.h 38 // for (base::FilePath name = enum.Next(); !name.empty(); name = enum.Next())
53 FilePath GetName() const;
74 FilePath filename_;
107 FileEnumerator(const FilePath& root_path,
110 FileEnumerator(const FilePath& root_path,
113 const FilePath::StringType& pattern);
121 FilePath Next();
128 bool ShouldSkip(const FilePath& path);
139 const FilePath& source, bool show_links);
148 FilePath root_path_
    [all...]
important_file_writer.h 57 static bool WriteFileAtomically(const FilePath& path,
65 ImportantFileWriter(const FilePath& path,
69 ImportantFileWriter(const FilePath& path,
77 const FilePath& path() const { return path_; }
119 const FilePath path_;
scoped_temp_dir.cc 32 bool ScopedTempDir::CreateUniqueTempDirUnderPath(const FilePath& base_path) {
49 bool ScopedTempDir::Set(const FilePath& path) {
73 FilePath ScopedTempDir::Take() {
74 FilePath ret = path_;
75 path_ = FilePath();
  /system/webservd/webservd/
temp_file_manager.h 36 virtual bool DeleteFile(const base::FilePath& path) = 0;
42 TempFileManager(const base::FilePath& temp_dir_path,
50 base::FilePath CreateTempFileName(const std::string& request_id);
57 void DeleteFiles(const std::vector<base::FilePath>& files);
60 base::FilePath temp_dir_path_;
65 std::map<std::string, std::vector<base::FilePath>> request_files_;
74 bool DeleteFile(const base::FilePath& path) override;
temp_file_manager.cc 23 TempFileManager::TempFileManager(const base::FilePath& temp_dir_path,
33 base::FilePath TempFileManager::CreateTempFileName(
35 std::vector<base::FilePath>& file_list_ref = request_files_[request_id];
38 base::FilePath file_name = temp_dir_path_.AppendASCII(name);
51 void TempFileManager::DeleteFiles(const std::vector<base::FilePath>& files) {
52 for (const base::FilePath& file : files)
56 bool FileDeleter::DeleteFile(const base::FilePath& path) {
  /system/core/crash_reporter/
udev_collector.h 49 bool ProcessUdevCrashLogs(const base::FilePath& crash_directory,
56 bool ProcessDevCoredump(const base::FilePath& crash_directory,
60 bool AppendDevCoredump(const base::FilePath& crash_directory,
61 const base::FilePath& coredump_path,
64 bool ClearDevCoredump(const base::FilePath& coredump_path);
70 log_config_path_ = base::FilePath(path);
  /external/dbus-binding-generator/chromeos-dbus-bindings/
method_name_generator.h 17 class FilePath;
28 const base::FilePath& output_file);
  /external/libbrillo/brillo/
file_utils.h 22 BRILLO_EXPORT bool TouchFile(const base::FilePath& path,
31 BRILLO_EXPORT bool TouchFile(const base::FilePath& path);
  /external/libchrome/base/test/
test_file_util.cc 12 bool EvictFileFromSystemCacheWithRetry(const FilePath& path) {
24 void PrintTo(const FilePath& path, std::ostream* out) {
  /external/google-breakpad/src/testing/gtest/test/
gtest-options_test.cc 63 FilePath GetAbsolutePathOf(const FilePath& relative_path) {
64 return FilePath::ConcatPaths(FilePath::GetCurrentDir(), relative_path);
81 EXPECT_STREQ(GetAbsolutePathOf(FilePath("test_detail.xml")).c_str(),
87 EXPECT_STREQ(GetAbsolutePathOf(FilePath("filename.abc")).c_str(),
95 FilePath(std::string("path") + GTEST_PATH_SEP_ +
129 original_working_dir_ = FilePath::GetCurrentDir();
133 FilePath::GetCurrentDir().c_str());
140 FilePath original_working_dir_
    [all...]
  /external/gtest/test/
gtest-options_test.cc 63 FilePath GetAbsolutePathOf(const FilePath& relative_path) {
64 return FilePath::ConcatPaths(FilePath::GetCurrentDir(), relative_path);
81 EXPECT_EQ(GetAbsolutePathOf(FilePath("test_detail.xml")).string(),
87 EXPECT_EQ(GetAbsolutePathOf(FilePath("filename.abc")).string(),
95 FilePath(std::string("path") + GTEST_PATH_SEP_ +
130 original_working_dir_ = FilePath::GetCurrentDir();
134 FilePath::GetCurrentDir().string());
141 FilePath original_working_dir_
    [all...]
  /external/protobuf/gtest/test/
gtest-options_test.cc 63 FilePath GetAbsolutePathOf(const FilePath& relative_path) {
64 return FilePath::ConcatPaths(FilePath::GetCurrentDir(), relative_path);
81 EXPECT_STREQ(GetAbsolutePathOf(FilePath("test_detail.xml")).c_str(),
87 EXPECT_STREQ(GetAbsolutePathOf(FilePath("filename.abc")).c_str(),
95 FilePath(std::string("path") + GTEST_PATH_SEP_ +
129 original_working_dir_ = FilePath::GetCurrentDir();
133 FilePath::GetCurrentDir().c_str());
140 FilePath original_working_dir_
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest-options_test.cc 63 FilePath GetAbsolutePathOf(const FilePath& relative_path) {
64 return FilePath::ConcatPaths(FilePath::GetCurrentDir(), relative_path);
81 EXPECT_EQ(GetAbsolutePathOf(FilePath("test_detail.xml")).string(),
87 EXPECT_EQ(GetAbsolutePathOf(FilePath("filename.abc")).string(),
95 FilePath(std::string("path") + GTEST_PATH_SEP_ +
130 original_working_dir_ = FilePath::GetCurrentDir();
134 FilePath::GetCurrentDir().string());
141 FilePath original_working_dir_
    [all...]
  /ndk/sources/third_party/googletest/googletest/test/
gtest-options_test.cc 63 FilePath GetAbsolutePathOf(const FilePath& relative_path) {
64 return FilePath::ConcatPaths(FilePath::GetCurrentDir(), relative_path);
81 EXPECT_EQ(GetAbsolutePathOf(FilePath("test_detail.xml")).string(),
87 EXPECT_EQ(GetAbsolutePathOf(FilePath("filename.abc")).string(),
95 FilePath(std::string("path") + GTEST_PATH_SEP_ +
130 original_working_dir_ = FilePath::GetCurrentDir();
134 FilePath::GetCurrentDir().string());
141 FilePath original_working_dir_
    [all...]
  /external/deqp/framework/delibs/decpp/
deDirectoryIterator.cpp 37 DirectoryIterator::DirectoryIterator (const FilePath& path)
38 : m_path(FilePath::normalize(path))
41 DE_CHECK_RUNTIME_ERR(m_path.getType() == FilePath::TYPE_DIRECTORY);
60 FilePath DirectoryIterator::getItem (void) const
63 return FilePath::join(m_path, m_fileInfo.name);
80 DirectoryIterator::DirectoryIterator (const FilePath& path)
81 : m_path (FilePath::normalize(path))
86 DE_CHECK_RUNTIME_ERR(m_path.getType() == FilePath::TYPE_DIRECTORY);
105 FilePath DirectoryIterator::getItem (void) const
108 return FilePath::join(m_path, m_curEntry->d_name)
    [all...]
  /external/libchrome/base/process/
process_handle_mac.cc 29 FilePath GetProcessExecutablePath(ProcessHandle process) {
32 return FilePath();
34 return FilePath(pathbuf);
  /system/update_engine/update_manager/
real_config_provider.cc 44 store.Load(base::FilePath(root_prefix_ + kConfigFilePath));
46 if (store.Load(base::FilePath(root_prefix_ +
51 store.Load(base::FilePath(root_prefix_ + kConfigFilePath));

Completed in 1394 milliseconds

12 3 4 5 6 7 8 91011>>