OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:next_to_last_slash
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/tools/gn/
gyp_helper.cc
31
size_t
next_to_last_slash
= dir.rfind('/', last_slash - 1);
local
32
if (
next_to_last_slash
!= std::string::npos) {
33
dir_name = dir.substr(
next_to_last_slash
+ 1,
34
last_slash -
next_to_last_slash
- 1);
label.cc
74
size_t
next_to_last_slash
= loc.rfind('/', loc.size() - 2);
local
75
DCHECK(
next_to_last_slash
!= std::string::npos);
76
result->assign(&loc[
next_to_last_slash
+ 1],
77
loc.size() -
next_to_last_slash
- 2);
Completed in 39 milliseconds