Searched refs:first_slash (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/rlz/win/lib/
H A Dmachine_id_win.cc28 wchar_t* first_slash = wcspbrk(system_path, L"\\/"); local
29 if (first_slash != NULL)
30 *(first_slash + 1) = 0;
/external/chromium_org/mojo/shell/
H A Ddbus_application_loader_linux.cc82 size_t first_slash = url_.path().find_first_of('/'); local
83 DCHECK_NE(first_slash, std::string::npos);
85 const std::string service_name = url_.path().substr(0, first_slash);
86 const std::string object_path = url_.path().substr(first_slash);
/external/chromium_org/base/
H A Dvlog.cc38 std::string::size_type first_slash = pattern.find_first_of("\\/"); local
39 if (first_slash != std::string::npos)
/external/lldb/source/Host/common/
H A DFileSpec.cpp102 const char *first_slash = ::strchr (src_path, '/'); local
105 if (first_slash == NULL)
113 size_t user_name_len = first_slash - src_path - 1;
118 ::strcpy (remainder, first_slash);

Completed in 588 milliseconds