Home
last modified time | relevance | path

Searched refs:space_pos (Results 1 – 2 of 2) sorted by relevance

/external/lldb/source/Target/
DObjCLanguageRuntime.cpp273 const char *space_pos = strchr (full, ' '); in GetClassName() local
274 if (space_pos) in GetClassName()
276 m_class.SetCStringWithLength (class_start, space_pos - class_start); in GetClassName()
298 const char *space_pos = strchr (full, ' '); in GetClassNameWithCategory() local
299 if (space_pos) in GetClassNameWithCategory()
301 m_class_category.SetCStringWithLength (class_start, space_pos - class_start); in GetClassNameWithCategory()
326 const char *space_pos = strchr (full, ' '); in GetSelector() local
327 if (space_pos) in GetSelector()
329 ++space_pos; // skip the space in GetSelector()
330 … m_selector.SetCStringWithLength (space_pos, m_full.GetLength() - (space_pos - full) - 1); in GetSelector()
/external/lldb/tools/debugserver/source/
DRNBRemote.cpp1502 size_t space_pos = line.find_first_not_of (k_space_delimiters); in skip_spaces() local
1503 if (space_pos > 0) in skip_spaces()
1504 line.erase(0, space_pos); in skip_spaces()