OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:next_slash
(Results
1 - 3
of
3
) sorted by null
/external/chromium/net/tools/dump_cache/
url_utilities.cc
19
size_t
next_slash
= url.find_first_of('/', b);
local
21
if (
next_slash
!= std::string::npos
23
&& next_colon <
next_slash
) {
26
if (
next_slash
== std::string::npos) {
30
next_slash
= url.size();
33
return std::string(url, b,
next_slash
- b);
/external/chromium/googleurl/src/
url_parse_file.cc
80
int
next_slash
= FindNextSlash(spec, after_slashes, spec_len);
local
81
if (
next_slash
== spec_len) {
97
if (DoesBeginWindowsDriveSpec(spec,
next_slash
+ 1, spec_len)) {
99
ParsePathInternal(spec, MakeRange(
next_slash
, spec_len),
110
int host_len =
next_slash
- after_slashes;
112
parsed->host = MakeRange(after_slashes,
next_slash
);
115
if (
next_slash
< spec_len) {
116
ParsePathInternal(spec, MakeRange(
next_slash
, spec_len),
/external/libselinux/src/
label_file.c
579
const char *prev_slash, *
next_slash
;
local
588
if ((
next_slash
= strstr(key, "//"))) {
593
while (
next_slash
) {
594
memcpy(clean_key + sofar, prev_slash,
next_slash
- prev_slash);
595
sofar +=
next_slash
- prev_slash;
596
prev_slash =
next_slash
+ 1;
597
next_slash
= strstr(prev_slash, "//");
Completed in 227 milliseconds