Searched refs:at_pos (Results 1 – 5 of 5) sorted by relevance
299 at_pos = username_domain.find('@')300 if at_pos != -1:301 username = username_domain[:at_pos]302 domain = username_domain[at_pos+1:]
304 at_pos = username_domain.find('@')305 if at_pos != -1:306 username = username_domain[:at_pos]307 domain = username_domain[at_pos+1:]
209 std::string::size_type at_pos = canonicalized_email.find('@'); in FindEmailInList() local210 if (at_pos != std::string::npos) { in FindEmailInList()212 std::string("*").append(canonicalized_email.substr(at_pos)); in FindEmailInList()
113 size_t at_pos = user.find('@'); in CanChangeChannel() local114 if (at_pos != std::string::npos && at_pos + 1 < user.length()) in CanChangeChannel()
217 size_t at_pos = user_email.rfind('@'); in GetNameTooltip() local218 if (at_pos == std::string::npos) { in GetNameTooltip()222 size_t domain_start = at_pos + 1; in GetNameTooltip()