OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:first_slash
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/rlz/win/lib/
machine_id_win.cc
28
wchar_t*
first_slash
= wcspbrk(system_path, L"\\/");
local
29
if (
first_slash
!= NULL)
30
*(
first_slash
+ 1) = 0;
/external/chromium_org/mojo/shell/
dbus_application_loader_linux.cc
82
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/
vlog.cc
38
std::string::size_type
first_slash
= pattern.find_first_of("\\/");
local
39
if (
first_slash
!= std::string::npos)
/external/lldb/source/Host/common/
FileSpec.cpp
102
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
);
[
all
...]
Completed in 239 milliseconds