Searched refs:space_pos (Results 1 – 2 of 2) sorted by relevance
273 const char *space_pos = strchr (full, ' '); in GetClassName() local274 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() local299 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() local327 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()
1502 size_t space_pos = line.find_first_not_of (k_space_delimiters); in skip_spaces() local1503 if (space_pos > 0) in skip_spaces()1504 line.erase(0, space_pos); in skip_spaces()