Searched refs:space_pos (Results 1 - 3 of 3) sorted by relevance

/external/lldb/source/Target/
H A DObjCLanguageRuntime.cpp273 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_ful
[all...]
/external/chromium_org/net/ftp/
H A Dftp_network_transaction.cc168 size_t space_pos = line.rfind(' ', comma_pos);
169 if (space_pos != std::string::npos)
170 line = line.substr(space_pos + 1);
/external/lldb/tools/debugserver/source/
H A DRNBRemote.cpp1502 size_t space_pos = line.find_first_not_of (k_space_delimiters); local
1503 if (space_pos > 0)
1504 line.erase(0, space_pos);

Completed in 181 milliseconds