Lines Matching refs:from
137 TemporaryDir from; in TEST() local
140 TemporaryFile from_1(from.path); in TEST()
141 auto from_subdir = StringPrintf("%s/subdir", from.path); in TEST()
147 auto result = MoveDir(from.path, to.path); in TEST()
149 ASSERT_TRUE(fs::is_empty(from.path)); in TEST()
165 TemporaryFile from; in TEST() local
167 ASSERT_FALSE(IsOk(MoveDir(from.path, to.path))); in TEST()
171 TemporaryDir from; in TEST() local
173 TemporaryFile from_1(from.path); in TEST()
174 ASSERT_FALSE(IsOk(MoveDir(from.path, to.path))); in TEST()
185 TemporaryDir from; in TEST() local
186 TemporaryFile from_1(from.path); in TEST()
187 auto from_subdir = StringPrintf("%s/subdir", from.path); in TEST()
193 ASSERT_FALSE(IsOk(MoveDir(from.path, "/data/local/tmp/does/not/exist"))); in TEST()
197 for (const auto& it : fs::recursive_directory_iterator(from.path)) { in TEST()