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

  /external/chromium_org/extensions/common/
manifest_handler_helpers.cc 24 size_t first_non_slash = path->find_first_not_of('/'); local
25 if (first_non_slash == std::string::npos) {
30 *path = path->substr(first_non_slash);
  /external/chromium_org/net/base/
filename_util.cc 84 size_t first_non_slash = path.find_first_not_of("/\\"); local
85 if (first_non_slash != std::string::npos && first_non_slash > 0)
86 path.erase(0, first_non_slash);

Completed in 185 milliseconds