/external/chromium_org/chrome/browser/chromeos/login/users/ |
multi_profile_user_controller.cc | 101 if (policy::PolicyCertServiceFactory::UsedPolicyCertificates(user->email())) { 138 primary_user_email = primary_user->email(); 216 if (!IsUserAllowedInSession((*it)->email(), NULL)) { 217 delegate_->OnUserNotAllowed((*it)->email());
|
chrome_user_manager_impl.cc | 212 multi_profile_user_controller_->IsUserAllowedInSession((*it)->email(), 289 // Ensure the value of owner email has been fetched. 292 // Value of owner email is not fetched yet. RemoveUserInternal will be 508 GetUserImageManager((*ui)->email())->LoadUserImage(); 575 const std::string user_email = (*it)->email(); 663 SaveUserDisplayName(GetActiveUser()->email(), 682 GetUserImageManager(user->email())->UserLoggedIn(false, true); 814 public_account_pending_data_removal == GetActiveUser()->email())) { 828 users.insert((*it)->email()); 833 const std::string active_user_id = GetActiveUser()->email(); [all...] |
/external/chromium_org/chrome/browser/resources/options/chromeos/ |
accounts_options_page.css | 27 .user-email-label { 36 .user-email-name-block {
|
/external/chromium_org/cloud_print/service/ |
service_state.cc | 28 const char kEmailOptionName[] = "email"; 161 const std::string& email, 173 post_body += "&Email=" + net::EscapeUrlEncodedData(email, true); 212 bool ServiceState::Configure(const std::string& email, 217 email_ = email;
|
/external/chromium_org/components/autofill/core/browser/ |
autofill_test_utils.cc | 80 test::CreateTestFormField("Email", "email", "", "email", &field); 164 const char* last_name, const char* email, const char* company, 171 check_and_set(profile, EMAIL_ADDRESS, email); 184 const char* last_name, const char* email, const char* company, 190 SetProfileInfo(profile, first_name, middle_name, last_name, email,
|
/external/chromium_org/components/invalidation/ |
invalidation_notifier.h | 62 const std::string& email, const std::string& token) OVERRIDE;
|
push_client_channel.h | 44 virtual void UpdateCredentials(const std::string& email,
|
/external/chromium_org/jingle/notifier/listener/ |
xmpp_push_client.h | 52 const std::string& email, const std::string& token) OVERRIDE;
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
commit-log-editor | 227 my $email = ""; 246 $email = $3; 259 my $authorshipString = patchAuthorshipString($author, $email, $date); 276 my $authorshipString = patchAuthorshipString($author, $email, $date);
|
/external/chromium_org/third_party/webrtc/common_audio/signal_processing/ |
spl_sqrt_floor_arm.S | 2 @ Written by Wilco Dijkstra, 1996. The following email exchange establishes the
|
/external/chromium_org/ui/app_list/ |
app_list_view_delegate.h | 52 // The email address of this user. 53 base::string16 email; member in struct:app_list::AppListViewDelegate::User
|
/external/libpng/contrib/gregbook/ |
writepng.h | 105 char *email; member in struct:_mainprog_info
|
/external/nanopb-c/tests/basic_stream/ |
decode_stream.c | 26 printf("email: \"%s\"\n", person.email);
|
/external/chromium_org/chrome/browser/ui/webui/options/chromeos/ |
core_chromeos_options_handler.cc | 58 user_dict->SetString("email", display_name); 75 std::string email; local 76 if ((*i)->GetAsString(&email)) { 77 // Translate email to the display email. 78 std::string display_email = user_manager->GetUserDisplayEmail(email); 80 user_list->Append(CreateUserInfo(email, display_email, std::string())); 295 if (user && user->email() != user_manager->GetPrimaryUser()->email()) { 296 const std::string& primary_email = user_manager->GetPrimaryUser()->email(); [all...] |
/external/openssl/crypto/x509v3/ |
v3_utl.c | 72 static int append_ia5(STACK_OF(OPENSSL_STRING) **sk, ASN1_IA5STRING *email); 521 ASN1_IA5STRING *email; local 524 /* Now add any email address(es) to STACK */ 530 email = X509_NAME_ENTRY_get_data(ne); 531 if(!append_ia5(&ret, email)) return NULL; 547 static int append_ia5(STACK_OF(OPENSSL_STRING) **sk, ASN1_IA5STRING *email) 551 if(email->type != V_ASN1_IA5STRING) return 1; 552 if(!email->data || !email->length) return 1; 556 if(sk_OPENSSL_STRING_find(*sk, (char *)email->data) != -1) return 1 [all...] |
/external/chromium_org/components/gcm_driver/ |
gcm_account_mapper.cc | 90 new_mapping.email = token_iter->email; 101 account_mapping->email = token_iter->email; 250 outgoing_message.data[kAccountMessageKey] = account_mapping.email;
|
/external/chromium_org/remoting/webapp/ |
oauth2.js | 38 remoting.OAuth2.prototype.KEY_EMAIL_ = 'remoting-email'; 45 'https://www.googleapis.com/auth/userinfo#email'; 340 * Get the user's email address. 342 * @param {function(string):void} onOk Callback invoked when the email 356 /** @param {string} email */ 357 var onResponse = function(email) { 358 window.localStorage.setItem(that.KEY_EMAIL_, email); 359 onOk(email); 367 * If the user's email address is cached, return it, otherwise return null. 369 * @return {?string} The email address, if it has been cached by a previous cal [all...] |
/external/chromium_org/tools/dromaeo_benchmark_runner/ |
dromaeo_benchmark_runner.py | 66 parser.add_option("-e", "--email", dest="email", 93 def __init__(self, email, spreadsheet_title): 112 self.gd_client.email = email 113 self.gd_client.password = getpass.getpass('Password for %s: ' % email) 232 spreadsheet_writer = SpreadsheetWriter(options.email,
|
/external/chromium_org/third_party/markdown/ |
inlinepatterns.py | 495 email = self.unescape(m.group(2)) 496 if email.startswith("mailto:"): 497 email = email[len("mailto:"):] 507 letters = [codepoint2name(ord(letter)) for letter in email] 510 mailto = "mailto:" + email
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
PKIXNameConstraintValidator.java | 213 String email = extractNameAsString(((GeneralSubtree)it.next()) local 218 if (email != null) 220 intersect.add(email); 230 intersectEmail(email, _permitted, intersect); 237 private Set unionEmail(Set excluded, String email) 241 if (email == null) 245 excluded.add(email); 257 unionEmail(_excluded, email, union); 479 private void checkPermittedEmail(Set permitted, String email) 493 if (emailIsConstrained(email, str) [all...] |
/external/chromium_org/ash/test/ |
test_session_state_delegate.cc | 23 // The the "canonicalized" user ID from a given |email| address. 24 std::string GetUserIDFromEmail(const std::string& email) { 25 std::string user_id = email; 212 // Make sure this is a user id and not an email address.
|
/external/chromium_org/chrome/browser/chromeos/app_mode/ |
kiosk_profile_loader.cc | 172 void KioskProfileLoader::WhiteListCheckFailed(const std::string& email) { 181 const std::string& email, bool success) {
|
/external/chromium_org/chrome/browser/chromeos/login/ |
app_launch_signin_screen.cc | 52 if (user->email() == owner_email) { 170 void AppLaunchSigninScreen::SetDisplayEmail(const std::string& email) {
|
existing_user_controller.h | 97 virtual void SetDisplayEmail(const std::string& email) OVERRIDE; 153 virtual void WhiteListCheckFailed(const std::string& email) OVERRIDE; 283 // The displayed email for the next login attempt set by |SetDisplayEmail|.
|
/external/chromium_org/chrome/browser/ui/app_list/search/people/ |
people_result.cc | 68 set_details(base::UTF8ToUTF16(person_->email)); 96 // to the user is 'Send Email'. 176 GURL(kEmailUrlPrefix + person_->email),
|