HomeSort by relevance Sort by last modified time
    Searched full:space_pos (Results 1 - 3 of 3) sorted by null

  /external/lldb/source/Target/
ObjCLanguageRuntime.cpp 273 const char *space_pos = strchr (full, ' '); local
274 if (space_pos)
276 m_class.SetCStringWithLength (class_start, space_pos - class_start);
298 const char *space_pos = strchr (full, ' '); local
299 if (space_pos)
301 m_class_category.SetCStringWithLength (class_start, space_pos - class_start);
326 const char *space_pos = strchr (full, ' '); local
327 if (space_pos)
329 ++space_pos; // skip the space
330 m_selector.SetCStringWithLength (space_pos, m_full.GetLength() - (space_pos - full) - 1)
    [all...]
  /external/chromium_org/net/ftp/
ftp_network_transaction.cc 168 size_t space_pos = line.rfind(' ', comma_pos);
169 if (space_pos != std::string::npos)
170 line = line.substr(space_pos + 1);
    [all...]
  /external/lldb/tools/debugserver/source/
RNBRemote.cpp 1502 size_t space_pos = line.find_first_not_of (k_space_delimiters); local
    [all...]

Completed in 83 milliseconds