HomeSort by relevance Sort by last modified time
    Searched defs:slash_pos (Results 1 - 10 of 10) sorted by null

  /external/google-breakpad/src/common/windows/
string_utils.cc 40 size_t slash_pos = base_name.find_last_of(L"/\\"); local
41 if (slash_pos != wstring::npos) {
42 base_name.erase(0, slash_pos + 1);
  /external/libbrillo/brillo/dbus/
utils.cc 59 size_t slash_pos = part.find('/'); local
61 if (slash_pos != std::string::npos && colon_pos != std::string::npos &&
62 slash_pos < colon_pos) {
65 std::string domain = part.substr(0, slash_pos);
66 std::string code = part.substr(slash_pos + 1, colon_pos - slash_pos - 1);
69 } else if (slash_pos == std::string::npos &&
  /art/compiler/driver/
compiler_options.cc 196 size_t slash_pos = boot_image_filename.rfind('/'); local
197 if (slash_pos == std::string::npos) {
200 return boot_image_filename.compare(slash_pos + 1, 5u, "core-") == 0;
  /external/perfetto/src/traced/probes/ftrace/
ftrace_config_muxer.cc 61 auto slash_pos = event.find("/"); local
62 if (slash_pos == std::string::npos)
64 return std::make_pair(event.substr(0, slash_pos),
65 event.substr(slash_pos + 1));
  /external/protobuf/src/google/protobuf/compiler/
command_line_interface_unittest.cc 370 string::size_type slash_pos = name.find_last_of('/'); local
371 if (slash_pos != string::npos) {
372 string dir = name.substr(0, slash_pos);
    [all...]
command_line_interface.cc 1259 string::size_type slash_pos = value.find_last_of('\/'); local
    [all...]
  /external/google-breakpad/src/common/solaris/
dump_symbols.cc 502 size_t slash_pos = obj_file.find_last_of("/"); local
503 if (slash_pos != std::string::npos)
504 filename = obj_file.substr(slash_pos + 1);
  /external/tensorflow/tensorflow/cc/framework/
cc_op_gen.cc 69 size_t slash_pos = path.rfind('/'); local
70 if (slash_pos == path.npos) slash_pos = -1;
72 return path.substr(slash_pos + 1, dot_pos - (slash_pos + 1));
    [all...]
  /external/curl/lib/
ssh.h 142 char *slash_pos; /* used by the SFTP_CREATE_DIRS state */ member in struct:ssh_conn
ftp.c 4103 const char *slash_pos; \/* position of the first '\/' char in curpos *\/ local
    [all...]

Completed in 552 milliseconds