HomeSort by relevance Sort by last modified time
    Searched refs:next_slash (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/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_org/url/
url_parse_file.cc 55 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/
realpath.c 59 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/
label_file.c 587 const char *prev_slash, *next_slash; local
596 if ((next_slash = strstr(key, "//"))) {
601 while (next_slash) {
602 memcpy(clean_key + sofar, prev_slash, next_slash - prev_slash);
603 sofar += next_slash - prev_slash;
604 prev_slash = next_slash + 1;
605 next_slash = strstr(prev_slash, "//");
  /external/qemu/distrib/libselinux/src/
label_file.c 583 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/
Symbols.cpp 498 char *next_slash = strchr(last_dot, '/'); local
499 if (next_slash != NULL)
501 *next_slash = '\0';
    [all...]

Completed in 888 milliseconds