OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kPathDelimiter
(Results
1 - 2
of
2
) sorted by null
/external/webrtc/webrtc/test/testsupport/
fileutils.cc
52
const char*
kPathDelimiter
= "\\";
54
const char*
kPathDelimiter
= "/";
92
temp_path = temp_path.substr(0, temp_path.find_last_of(
kPathDelimiter
));
124
path = path +
kPathDelimiter
+ relative_dir_path;
127
size_t path_delimiter_index = path.find_last_of(
kPathDelimiter
);
129
std::string root_filename = path +
kPathDelimiter
+ kProjectRootFileName;
131
return path +
kPathDelimiter
;
135
path_delimiter_index = path.find_last_of(
kPathDelimiter
);
151
return path +
kPathDelimiter
;
233
kPathDelimiter
;
[
all
...]
fileutils_unittest.cc
22
static const char*
kPathDelimiter
= "\\";
24
static const char*
kPathDelimiter
= "/";
78
expected_end =
kPathDelimiter
+ expected_end +
kPathDelimiter
;
90
ASSERT_EQ(0, chdir(
kPathDelimiter
));
129
ASSERT_EQ(0, chdir(
kPathDelimiter
));
Completed in 157 milliseconds