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

  /external/chromium_org/chrome/common/extensions/
manifest_handler_helpers.cc 22 size_t first_non_slash = path->find_first_not_of('/'); local
23 if (first_non_slash == std::string::npos) {
28 *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 91 size_t first_non_slash = path.find_first_not_of("/\\"); local
92 if (first_non_slash != std::string::npos && first_non_slash > 0)
93 path.erase(0, first_non_slash);

Completed in 77 milliseconds