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

  /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 &&
  /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);
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
Dummy83BufferGenerator.java 137 int i, tilde_pos, slash_pos; local
145 slash_pos = randomNumber % 8;
154 if (i == slash_pos)
  /external/curl/lib/
ssh.h 142 char *slash_pos; /* used by the SFTP_CREATE_DIRS state */ member in struct:ssh_conn
ftp.c 4138 const char *slash_pos; \/* position of the first '\/' char in curpos *\/ local
    [all...]
ssh-libssh.c     [all...]
ssh.c     [all...]
  /art/compiler/driver/
compiler_driver.h 381 size_t slash_pos = boot_image_filename.rfind('/'); local
382 if (slash_pos == std::string::npos) {
385 return boot_image_filename.compare(slash_pos + 1, 5u, "core-") == 0;
  /external/tensorflow/tensorflow/cc/framework/
cc_op_gen.cc 68 size_t slash_pos = path.rfind('/'); local
69 if (slash_pos == path.npos) slash_pos = -1;
71 return path.substr(slash_pos + 1, dot_pos - (slash_pos + 1));
    [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/compiler-rt/lib/sanitizer_common/
sanitizer_common.cc 191 if (const char *slash_pos = internal_strrchr(module, '/')) {
192 return 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...]
  /prebuilts/devtools/tools/lib/
fat32lib.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/fat32lib/unspecified/
fat32lib-unspecified.jar 

Completed in 794 milliseconds