Searched refs:next_slash (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/net/tools/dump_cache/
H A Durl_utilities.cc19 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_org/url/
H A Durl_parse_file.cc55 int next_slash = FindNextSlash(spec, after_slashes, spec_len); local
56 if (next_slash == spec_len) {
72 if (DoesBeginWindowsDriveSpec(spec, next_slash + 1, spec_len)) {
74 ParsePathInternal(spec, MakeRange(next_slash, spec_len),
85 int host_len = next_slash - after_slashes;
87 parsed->host = MakeRange(after_slashes, next_slash);
90 if (next_slash < spec_len) {
91 ParsePathInternal(spec, MakeRange(next_slash, spec_len),
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
H A Drealpath.c59 const char* next_slash = strchr(in, '/'); local
62 if (next_slash) {
63 namelen = next_slash - in;
64 next_in = next_slash + 1;
/external/libselinux/src/
H A Dlabel_file.c584 const char *prev_slash, *next_slash; local
594 if ((next_slash = strstr(key, "//"))) {
599 while (next_slash) {
600 memcpy(clean_key + sofar, prev_slash, next_slash - prev_slash);
601 sofar += next_slash - prev_slash;
602 prev_slash = next_slash + 1;
603 next_slash = strstr(prev_slash, "//");
/external/qemu/distrib/libselinux/src/
H A Dlabel_file.c583 const char *prev_slash, *next_slash; local
593 if ((next_slash = strstr(key, "//"))) {
598 while (next_slash) {
599 memcpy(clean_key + sofar, prev_slash, next_slash - prev_slash);
600 sofar += next_slash - prev_slash;
601 prev_slash = next_slash + 1;
602 next_slash = strstr(prev_slash, "//");
/external/lldb/source/Host/macosx/
H A DSymbols.cpp498 char *next_slash = strchr(last_dot, '/'); local
499 if (next_slash != NULL)
501 *next_slash = '\0';

Completed in 292 milliseconds