OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:first_slash
(Results
1 - 2
of
2
) sorted by null
/system/extras/multinetwork/
httpurl.cpp
55
const auto
first_slash
= parameters->host.find_first_of("/");
local
56
if (
first_slash
!= std::string::npos) {
57
parameters->path = parameters->host.substr(
first_slash
);
58
parameters->host.erase(
first_slash
);
/external/libchrome/base/
vlog.cc
39
std::string::size_type
first_slash
= pattern.find_first_of("\\/");
local
40
if (
first_slash
!= std::string::npos)
Completed in 179 milliseconds