Searched defs:parent_dir (Results 1 - 3 of 3) sorted by relevance

/external/libchrome/base/files/
H A Dfile_path_watcher_unittest.cc155 FilePath parent_dir; variable
156 ASSERT_TRUE(android::GetExternalStorageDirectory(&parent_dir));
157 ASSERT_TRUE(temp_dir_.CreateUniqueTempDirUnderPath(parent_dir));
/external/tensorflow/tensorflow/core/platform/
H A Denv_test.cc164 const string parent_dir = io::JoinPath(BaseDir(), "root_dir"); local
165 const string child_dir1 = io::JoinPath(parent_dir, "child_dir1");
166 const string child_dir2 = io::JoinPath(parent_dir, "child_dir2");
167 TF_EXPECT_OK(env_->CreateDir(parent_dir));
168 const string root_file1 = io::JoinPath(parent_dir, "root_file1");
169 const string root_file2 = io::JoinPath(parent_dir, "root_file2");
170 const string root_file3 = io::JoinPath(parent_dir, ".root_file3");
181 env_->DeleteRecursively(parent_dir, &undeleted_files, &undeleted_dirs));
192 const string parent_dir = io::JoinPath(BaseDir(), "root_dir"); local
196 env_->DeleteRecursively(parent_dir,
[all...]
/external/tensorflow/tensorflow/core/debug/
H A Ddebug_io_utils.cc645 string parent_dir = io::Dirname(dir).ToString(); local
646 if (!env->FileExists(parent_dir).ok()) {
648 Status s = RecursiveCreateDir(env, parent_dir); // Recursive call
652 strings::StrCat("Failed to create directory ", parent_dir));
654 } else if (env->FileExists(parent_dir).ok() &&
655 !env->IsDirectory(parent_dir).ok()) {
658 strings::StrCat("Failed to create directory ", parent_dir,
669 strings::StrCat("Failed to create directory ", parent_dir));

Completed in 270 milliseconds