Searched refs:space_pos (Results 1 – 6 of 6) sorted by relevance
135 const char *space_pos = strchr(full, ' '); in GetClassName() local136 if (space_pos) { in GetClassName()137 m_class.SetCStringWithLength(class_start, space_pos - class_start); in GetClassName()154 const char *space_pos = strchr(full, ' '); in GetClassNameWithCategory() local155 if (space_pos) { in GetClassNameWithCategory()157 space_pos - class_start); in GetClassNameWithCategory()176 const char *space_pos = strchr(full, ' '); in GetSelector() local177 if (space_pos) { in GetSelector()178 ++space_pos; // skip the space in GetSelector()179 m_selector.SetCStringWithLength(space_pos, m_full.GetLength() - in GetSelector()[all …]
50 auto space_pos = symbol_view.find(" ");51 if (space_pos == absl::string_view::npos) return std::string();52 symbol_view = symbol_view.substr(space_pos + 1); // to mangled symbol
1762 size_t space_pos = line.find_first_not_of(k_space_delimiters); in skip_spaces() local1763 if (space_pos > 0) in skip_spaces()1764 line.erase(0, space_pos); in skip_spaces()