OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:real_to_path
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/base/files/
file_util_win.cc
153
FilePath
real_to_path
= to_path;
local
154
if (PathExists(
real_to_path
)) {
155
real_to_path
= MakeAbsoluteFilePath(
real_to_path
);
156
if (
real_to_path
.empty())
159
real_to_path
= MakeAbsoluteFilePath(
real_to_path
.DirName());
160
if (
real_to_path
.empty())
166
if (
real_to_path
.value().size() >= real_from_path.value().size() &&
167
real_to_path
.value().compare(0, real_from_path.value().size()
[
all
...]
file_util_posix.cc
264
FilePath
real_to_path
= to_path;
local
265
if (PathExists(
real_to_path
)) {
266
real_to_path
= MakeAbsoluteFilePath(
real_to_path
);
267
if (
real_to_path
.empty())
270
real_to_path
= MakeAbsoluteFilePath(
real_to_path
.DirName());
271
if (
real_to_path
.empty())
277
if (
real_to_path
.value().size() >= real_from_path.value().size() &&
278
real_to_path
.value().compare(0, real_from_path.value().size()
[
all
...]
Completed in 26 milliseconds