Home
last modified time | relevance | path

Searched refs:real_to_path (Results 1 – 2 of 2) sorted by relevance

/external/chromium/base/test/
Dtest_file_util_posix.cc37 FilePath real_to_path = dest_dir; in CopyRecursiveDirNoCache() local
38 if (PathExists(real_to_path)) { in CopyRecursiveDirNoCache()
39 if (!AbsolutePath(&real_to_path)) in CopyRecursiveDirNoCache()
42 real_to_path = real_to_path.DirName(); in CopyRecursiveDirNoCache()
43 if (!AbsolutePath(&real_to_path)) in CopyRecursiveDirNoCache()
46 if (real_to_path.value().compare(0, source_dir.value().size(), in CopyRecursiveDirNoCache()
/external/chromium/base/
Dfile_util_posix.cc218 FilePath real_to_path = to_path; in CopyDirectory() local
219 if (PathExists(real_to_path)) { in CopyDirectory()
220 if (!AbsolutePath(&real_to_path)) in CopyDirectory()
223 real_to_path = real_to_path.DirName(); in CopyDirectory()
224 if (!AbsolutePath(&real_to_path)) in CopyDirectory()
230 if (real_to_path.value().size() >= real_from_path.value().size() && in CopyDirectory()
231 real_to_path.value().compare(0, real_from_path.value().size(), in CopyDirectory()