HomeSort by relevance Sort by last modified time
    Searched refs:CreateFolder (Results 1 - 25 of 36) sorted by null

1 2

  /external/chromium_org/third_party/webrtc/base/
unixfilesystem.h 59 virtual bool CreateFolder(const Pathname &pathname, mode_t mode);
62 virtual bool CreateFolder(const Pathname &pathname);
pathutils.h 120 inline bool CreateFolder(const Pathname& path) {
121 return Filesystem::CreateFolder(path);
126 return !create || CreateFolder(path);
win32filesystem.h 40 virtual bool CreateFolder(const Pathname &pathname);
unixfilesystem.cc 91 bool UnixFilesystem::CreateFolder(const Pathname &path, mode_t mode) {
112 if (!CreateFolder(Pathname(pathname.substr(0, len)), mode)) {
120 bool UnixFilesystem::CreateFolder(const Pathname &path) {
121 return CreateFolder(path, 0755);
202 return !create || CreateFolder(pathname);
325 // that you could not call CreateFolder(pathname).
460 if (!CreateFolder(*path, 0700)) {
fileutils.h 152 virtual bool CreateFolder(const Pathname &pathname) = 0;
290 static bool CreateFolder(const Pathname &pathname) {
291 return EnsureDefaultFilesystem()->CreateFolder(pathname);
win32filesystem.cc 33 bool Win32Filesystem::CreateFolder(const Pathname &pathname) {
55 if (!CreateFolder(parent)) {
217 return !create || CreateFolder(pathname);
371 return CreateFolder(*path);
fileutils.cc 159 if (!CreateFolder(new_dir))
fileutils_mock.h 173 bool CreateFolder(const Pathname &pathname) {
  /external/chromium_org/chrome/browser/bookmarks/
chrome_bookmark_client_unittest.cc 71 static base::DictionaryValue* CreateFolder(const std::string& title,
82 folder->Append(CreateFolder("Empty", empty));
87 list->Append(CreateFolder("Folder", folder));
93 return CreateFolder(GetManagedFolderTitle(), CreateTestTree());
179 CreateFolder(GetManagedFolderTitle(), updated.release()));
196 CreateFolder(GetManagedFolderTitle(), updated.release()));
203 updated->Append(CreateFolder("Container", CreateTestTree()));
217 CreateFolder(GetManagedFolderTitle(), updated.release()));
  /external/chromium_org/components/policy/core/browser/
managed_bookmarks_tracker_unittest.cc 100 static base::DictionaryValue* CreateFolder(const std::string& title,
111 folder->Append(CreateFolder("Empty", empty));
116 list->Append(CreateFolder("Folder", folder));
131 return CreateFolder(GetManagedFolderTitle(), CreateTestTree());
212 CreateFolder(GetManagedFolderTitle(), updated.release()));
232 CreateFolder(GetManagedFolderTitle(), updated.release()));
242 updated->Append(CreateFolder("Container", CreateTestTree()));
256 CreateFolder(GetManagedFolderTitle(), updated.release()));
  /external/chromium_org/testing/gtest/include/gtest/internal/
gtest-filepath.h 150 bool CreateFolder() const;
  /external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
gtest-filepath.h 154 bool CreateFolder() const;
  /external/gtest/include/gtest/internal/
gtest-filepath.h 150 bool CreateFolder() const;
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-filepath.h 154 bool CreateFolder() const;
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-filepath.h 154 bool CreateFolder() const;
  /external/protobuf/gtest/include/gtest/internal/
gtest-filepath.h 154 bool CreateFolder() const;
  /ndk/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-filepath.h 150 bool CreateFolder() const;
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
remote_to_local_syncer.h 190 void CreateFolder(scoped_ptr<SyncTaskToken> token);
  /external/chromium_org/testing/gtest/src/
gtest-filepath.cc 318 return parent.CreateDirectoriesRecursively() && this->CreateFolder();
325 bool FilePath::CreateFolder() const {
  /external/chromium_org/third_party/mesa/src/src/gtest/src/
gtest-filepath.cc 311 return parent.CreateDirectoriesRecursively() && this->CreateFolder();
318 bool FilePath::CreateFolder() const {
  /external/gtest/src/
gtest-filepath.cc 313 return parent.CreateDirectoriesRecursively() && this->CreateFolder();
320 bool FilePath::CreateFolder() const {
  /external/llvm/utils/unittest/googletest/src/
gtest-filepath.cc 309 return parent.CreateDirectoriesRecursively() && this->CreateFolder();
316 bool FilePath::CreateFolder() const {
  /external/mesa3d/src/gtest/src/
gtest-filepath.cc 311 return parent.CreateDirectoriesRecursively() && this->CreateFolder();
318 bool FilePath::CreateFolder() const {
  /external/protobuf/gtest/src/
gtest-filepath.cc 279 return parent.CreateDirectoriesRecursively() && this->CreateFolder();
286 bool FilePath::CreateFolder() const {
  /ndk/sources/third_party/googletest/googletest/src/
gtest-filepath.cc 313 return parent.CreateDirectoriesRecursively() && this->CreateFolder();
320 bool FilePath::CreateFolder() const {

Completed in 952 milliseconds

1 2