Searched refs:email (Results 1 - 25 of 379) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/resources/gaia_auth/
H A Doffline.js14 $('email-label').textContent = decodeURIComponent(params['stringEmail']);
18 $('empty-email-alert').textContent =
28 form.email.classList.remove('field-error');
32 if (form.email.value == '') {
33 form.email.classList.add('field-error');
34 form.email.focus();
41 'email': form.email.value,
49 var email = params['email'];
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitperl/VCSUtils_unittest/
H A DfixChangeLogPatch.pl42 # 2009-12-22 Alice <alice@email.address>
51 # 2009-12-21 Alice <alice@email.address>
67 2010-12-22 Bob <bob@email.address>
79 2010-12-22 Bob <bob@email.address>
94 -2010-12-22 Bob <bob@email.address>
102 2010-12-22 Alice <alice@email.address>
111 -2010-12-22 Bob <bob@email.address>
119 2010-12-22 Alice <alice@email.address>
134 -2010-12-22 Bob <bob@email.address>
138 2010-12-22 Alice <alice@email
[all...]
H A DfixChangeLogPatchThenSetChangeLogDateAndReviewer.pl44 2010-05-08 Alice <alice@email.address>
52 +2010-05-08 Alice <alice@email.address>
62 +2010-05-09 Alice <alice@email.address>
70 2010-05-08 Alice <alice@email.address>
/external/chromium/chrome/browser/ui/webui/options/chromeos/
H A Duser_image_source.cc17 const std::string& email) const {
21 if (users[i].email() == email) {
45 std::string email = path.substr(0, path.find_first_of("?")); local
46 SendResponse(request_id, new RefCountedBytes(GetUserImage(email)));
H A Daccounts_options_handler.cc80 std::string email; local
81 if (!args->GetString(0, &email)) {
85 users_settings()->WhitelistUser(Authenticator::Canonicalize(email));
89 std::string email; local
90 if (!args->GetString(0, &email)) {
94 users_settings()->UnwhitelistUser(Authenticator::Canonicalize(email));
95 UserManager::Get()->RemoveUser(email, NULL);
105 new StringValue(chrome::kChromeUIUserImageURL + it->email());
106 // SetWithoutPathExpansion because email has "." in it.
107 user_pictures.SetWithoutPathExpansion(it->email(), image_ur
120 const std::string& email = it->email(); local
[all...]
/external/chromium_org/remoting/tools/
H A Dgettoken.py25 email = raw_input()
30 chromoting_auth_token = chromoting_authenticator.authenticate(email, passwd)
34 email, passwd)
40 chromoting_auth_file.write(email)
52 chromoting_dir_auth_file.write(email)
H A Dgaia_auth.py17 def authenticate(self, email, passwd):
18 params = urllib.urlencode({'Email': email, 'Passwd': passwd,
/external/chromium_org/chrome/browser/signin/
H A Dsignin_names_io_thread_unittest.cc28 void SimulateSignin(const string16& email);
29 void SimulateSignout(const string16& email);
30 void AddNewProfile(const string16& name, const string16& email);
54 void SigninNamesOnIOThreadTest::SimulateSignin(const string16& email) { argument
55 GoogleServiceSigninSuccessDetails details(UTF16ToUTF8(email), "password");
62 void SigninNamesOnIOThreadTest::SimulateSignout(const string16& email) { argument
63 GoogleServiceSignoutDetails details(UTF16ToUTF8(email));
71 const string16& email) {
79 cache->AddProfileToCache(profile_dir, name, email, 0, std::string());
89 const string16 email local
70 AddNewProfile(const string16& name, const string16& email) argument
98 const string16 email = UTF8ToUTF16("foo@gmail.com"); local
107 const string16 email = UTF8ToUTF16("foo@gmail.com"); local
[all...]
H A Dsignin_names_io_thread.cc27 // Get list of profiles and record the email addresses of any connected
34 string16 email = cache.GetUserNameOfProfileAtIndex(i); local
35 if (!email.empty())
36 emails_.insert(email);
92 const string16& email) {
94 UpdateOnIOThread(type, email);
100 base::Unretained(this), type, email));
107 const string16& email) {
110 emails_.insert(email);
112 emails_.erase(email);
90 PostTaskToIOThread( int type, const string16& email) argument
105 UpdateOnIOThread( int type, const string16& email) argument
[all...]
H A Dsignin_names_io_thread.h23 // This class provides access to a list of email addresses for all profiles
26 // the list of email addresses, and is used by the one-click sign in code to
40 // Gets the set of email addresses of connected profiles. This method should
60 // Posts a task to the I/O thread to add or remove the email address from
62 void PostTaskToIOThread(int type, const string16& email);
64 // Updates the email set on the I/O thread. Protected for testing.
65 void UpdateOnIOThread(int type, const string16& email);
/external/chromium_org/chrome/browser/chromeos/login/
H A Dmock_user_manager.cc37 void MockUserManager::SetActiveUser(const std::string& email) { argument
39 user_ = User::CreateRegularUser(email);
50 User* MockUserManager::CreatePublicAccountUser(const std::string& email) { argument
52 user_ = User::CreatePublicAccountUser(email);
H A Duser.cc19 // Returns account name portion of an email.
20 std::string GetUserName(const std::string& email) { argument
21 std::string::size_type i = email.find('@');
23 return email;
25 return email.substr(0, i);
32 explicit RegularUser(const std::string& email);
95 explicit PublicAccountUser(const std::string& email);
137 // Fallback to the email account name in case display name haven't been set.
174 User* User::CreateRegularUser(const std::string& email) { argument
175 return new RegularUser(email);
194 CreatePublicAccountUser(const std::string& email) argument
198 User(const std::string& email) argument
231 RegularUser(const std::string& email) argument
294 PublicAccountUser(const std::string& email) argument
[all...]
H A Dwallpaper_manager.h112 // Returns custom wallpaper path. Append |sub_dir|, |email| and |file| to
115 const std::string& email,
119 bool GetWallpaperFromCache(const std::string& email,
146 // Removes all |email| related wallpaper info and saved wallpapers.
147 void RemoveUserWallpaperInfo(const std::string& email);
194 // Sets |email|'s wallpaper.
195 void SetUserWallpaper(const std::string& email);
230 // Caches |email|'s wallpaper to memory.
231 void CacheUserWallpaper(const std::string& email);
242 // Deletes all |email| relate
[all...]
/external/chromium_org/chrome/common/cloud_print/
H A Dcloud_print_proxy_info.h18 std::string email; member in struct:cloud_print::CloudPrintProxyInfo
/external/chromium_org/google_apis/gaia/
H A Dgaia_auth_util.cc59 std::string email = CanonicalizeEmail(email_address); local
60 size_t separator_pos = email.find('@');
61 if (separator_pos != email.npos && separator_pos < email.length() - 1)
62 return email.substr(separator_pos + 1);
64 NOTREACHED() << "Not a proper email address: " << email;
/external/chromium_org/chrome/browser/ui/webui/options/chromeos/
H A Duser_image_source.cc28 // to user email and optional parameters.
30 std::string* email,
33 *email = net::UnescapeURLComponent(url.path().substr(1),
54 const std::string& email,
57 const chromeos::User* user = chromeos::UserManager::Get()->FindUser(email);
94 std::string email; local
97 ParseRequest(url, &email, &is_image_animated);
98 callback.Run(GetUserImage(email, is_image_animated, ui::SCALE_FACTOR_100P));
104 std::string email; local
108 ParseRequest(url, &email,
29 ParseRequest(const GURL& url, std::string* email, bool* is_image_animated) argument
53 GetUserImage( const std::string& email, bool is_image_animated, ui::ScaleFactor scale_factor) const argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-javamail.jar ... org/apache/tools/ant/taskdefs/ org/apache/tools/ant/taskdefs/email/ org/apache/tools/ant/taskdefs/email/MimeMailer$SimpleAuthenticator. ...
/external/chromium/chrome/browser/resources/options/chromeos/
H A Daccounts_user_list.js42 user.picture = this.user_pictures_[user.email];
53 * Finds the index of user by given email.
55 * @param {string} email The email address to look for.
58 findUserByEmail_: function(email) {
63 if (user.email == email) {
76 var index = this.findUserByEmail_(user.email);
79 chrome.send('whitelistUser', [user.email]);
92 chrome.send('unwhitelistUser', [user.email]);
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
H A Dstring-validate-input.js11 // make up email address
15 (k%2)?email=name+"@mac.com":email=name+"(at)mac.com";
17 // validate the email address
20 if(pattern.test(email))
22 var r = email + " appears to be a valid email address.";
27 r = email + " does NOT appear to be a valid email address.";
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
H A Dstring-validate-input.js11 // make up email address
15 (k%2)?email=name+"@mac.com":email=name+"(at)mac.com";
17 // validate the email address
20 if(pattern.test(email))
22 var r = email + " appears to be a valid email address.";
27 r = email + " does NOT appear to be a valid email address.";
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
H A Dstring-validate-input.js11 // make up email address
15 (k%2)?email=username+"@mac.com":email=username+"(at)mac.com";
17 // validate the email address
20 if(pattern.test(email))
22 var r = email + " appears to be a valid email address.";
27 r = email + " does NOT appear to be a valid email address.";
/external/chromium/chrome/browser/printing/cloud_print/
H A Dcloud_print_proxy_service.h32 virtual void EnableForUser(const std::string& lsid, const std::string& email);
55 void EnableCloudPrintProxy(const std::string& lsid, const std::string& email);
59 void StatusCallback(bool enabled, std::string email);
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/oauth_contacts/
H A Dbackground.js35 if (entry['gd$email']) {
36 var emails = entry['gd$email'];
37 for (var j = 0, email; email = emails[j]; j++) {
38 contact['emails'].push(email['address']);
H A Dcontacts.js15 for (var j = 0, email; email = contact['emails'][j]; j++) {
17 liEmail.innerText = email;
/external/chromium/chrome/browser/chromeos/
H A Duser_cros_settings_provider.h54 // Returns true if given email is in user whitelist.
57 static bool IsEmailInCachedWhitelist(const std::string& email);
63 void WhitelistUser(const std::string& email);
64 void UnwhitelistUser(const std::string& email);
67 static void UpdateCachedOwner(const std::string& email);

Completed in 668 milliseconds

1234567891011>>