OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:first_non_slash
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/chrome/common/extensions/
manifest_handler_helpers.cc
24
size_t
first_non_slash
= path->find_first_not_of('/');
local
25
if (
first_non_slash
== std::string::npos) {
30
*path = path->substr(
first_non_slash
);
/external/chromium/net/base/
net_util_win.cc
40
size_t
first_non_slash
= path.find_first_not_of("/\\");
local
41
if (
first_non_slash
!= std::string::npos &&
first_non_slash
> 0)
42
path.erase(0,
first_non_slash
);
/external/chromium_org/net/base/
net_util_win.cc
103
size_t
first_non_slash
= path.find_first_not_of("/\\");
local
104
if (
first_non_slash
!= std::string::npos &&
first_non_slash
> 0)
105
path.erase(0,
first_non_slash
);
Completed in 313 milliseconds