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

1 2

  /external/chromium_org/third_party/libjingle/source/talk/base/
unixfilesystem.h 76 virtual bool CreateFolder(const Pathname &pathname, mode_t mode);
79 virtual bool CreateFolder(const Pathname &pathname);
pathutils.h 137 inline bool CreateFolder(const Pathname& path) {
138 return Filesystem::CreateFolder(path);
143 return !create || CreateFolder(path);
win32filesystem.h 57 virtual bool CreateFolder(const Pathname &pathname);
unixfilesystem.cc 108 bool UnixFilesystem::CreateFolder(const Pathname &path, mode_t mode) {
129 if (!CreateFolder(Pathname(pathname.substr(0, len)), mode)) {
137 bool UnixFilesystem::CreateFolder(const Pathname &path) {
138 return CreateFolder(path, 0755);
219 return !create || CreateFolder(pathname);
342 // that you could not call CreateFolder(pathname).
477 if (!CreateFolder(*path, 0700)) {
fileutils.h 170 virtual bool CreateFolder(const Pathname &pathname) = 0;
308 static bool CreateFolder(const Pathname &pathname) {
309 return EnsureDefaultFilesystem()->CreateFolder(pathname);
win32filesystem.cc 50 bool Win32Filesystem::CreateFolder(const Pathname &pathname) {
72 if (!CreateFolder(parent)) {
234 return !create || CreateFolder(pathname);
388 return CreateFolder(*path);
  /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 153 virtual bool CreateFolder(const Pathname &pathname) = 0;
291 static bool CreateFolder(const Pathname &pathname) {
292 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);
  /external/chromium_org/chrome/browser/bookmarks/
chrome_bookmark_client_unittest.cc 70 static base::DictionaryValue* CreateFolder(const std::string& title,
81 folder->Append(CreateFolder("Empty", empty));
86 list->Append(CreateFolder("Folder", folder));
92 return CreateFolder(GetManagedFolderTitle(), CreateTestTree());
177 CreateFolder(GetManagedFolderTitle(), updated.release()));
193 CreateFolder(GetManagedFolderTitle(), updated.release()));
200 updated->Append(CreateFolder("Container", CreateTestTree()));
213 CreateFolder(GetManagedFolderTitle(), updated.release()));
  /external/chromium_org/components/policy/core/browser/
managed_bookmarks_tracker_unittest.cc 99 static base::DictionaryValue* CreateFolder(const std::string& title,
110 folder->Append(CreateFolder("Empty", empty));
115 list->Append(CreateFolder("Folder", folder));
130 return CreateFolder(GetManagedFolderTitle(), CreateTestTree());
210 CreateFolder(GetManagedFolderTitle(), updated.release()));
229 CreateFolder(GetManagedFolderTitle(), updated.release()));
239 updated->Append(CreateFolder("Container", CreateTestTree()));
252 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 189 void CreateFolder(const SyncStatusCallback& callback);
  /external/chromium_org/testing/gtest/src/
gtest-filepath.cc 311 return parent.CreateDirectoriesRecursively() && this->CreateFolder();
318 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 {

Completed in 460 milliseconds

1 2