Home | History | Annotate | Download | only in cros

Lines Matching refs:username

20 def NormalizeEmail(username):
21 """Remove dots from username. Add @gmail.com if necessary.
25 @param username: username/email to be scrubbed.
27 parts = re.split('@', username)
60 username=None, password=None, gaia_id=None,
84 @param username: Log in using this username instead of the default.
139 self.username = b_options.username if username is None else username
141 self.username = NormalizeEmail(self.username)
142 b_options.username = self.username