HomeSort by relevance Sort by last modified time
    Searched refs:other_possible_usernames (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/components/autofill/content/renderer/
password_form_conversion_utils.cc 77 std::vector<base::string16> other_possible_usernames; local
99 // Remove the selected username from other_possible_usernames.
100 if (!other_possible_usernames.empty() &&
102 other_possible_usernames.resize(other_possible_usernames.size() - 1);
111 // other_possible_usernames is used only for autofill, not for form
114 other_possible_usernames.push_back(input_element->value());
147 password_form->other_possible_usernames.swap(other_possible_usernames);
password_form_conversion_utils_browsertest.cc 124 password_form->other_possible_usernames[0]);
126 password_form->other_possible_usernames[1]);
password_autofill_agent.cc 748 if (form_data.other_possible_usernames.size())
824 fill_data.other_possible_usernames.begin();
825 iter != fill_data.other_possible_usernames.end();
    [all...]
  /external/chromium_org/components/autofill/core/common/
password_form_fill_data.cc 69 !iter->second->other_possible_usernames.empty()) {
70 // Note that there may be overlap between other_possible_usernames and
71 // other saved usernames or with other other_possible_usernames. For now
78 result->other_possible_usernames[key] =
79 iter->second->other_possible_usernames;
password_form_fill_data.h 56 UsernamesCollection other_possible_usernames; member in struct:autofill::PasswordFormFillData
password_form.cc 38 other_possible_usernames == form.other_possible_usernames &&
autofill_data_validation.cc 77 form.other_possible_usernames.begin();
78 it != form.other_possible_usernames.end(); ++it) {
password_form.h 117 std::vector<base::string16> other_possible_usernames; member in struct:autofill::PasswordForm
  /external/chromium_org/components/autofill/content/common/
autofill_param_traits_macros.h 37 IPC_STRUCT_TRAITS_MEMBER(other_possible_usernames)
autofill_messages.h 82 IPC_STRUCT_TRAITS_MEMBER(other_possible_usernames)
  /external/chromium_org/components/password_manager/core/browser/
password_form_manager_unittest.cc 121 saved_match_.other_possible_usernames.push_back(
411 // |other_possible_usernames| set anymore.
419 .other_possible_usernames.size());
431 base::string16 new_username = saved_match()->other_possible_usernames[0];
440 // |other_possible_usernames| should also be empty, but username_value should
449 .other_possible_usernames.size());
617 credentials.other_possible_usernames.push_back(ASCIIToUTF16("543-43-1234"));
618 credentials.other_possible_usernames.push_back(
620 credentials.other_possible_usernames.push_back(
629 EXPECT_THAT(credentials.other_possible_usernames, Eq(expected))
    [all...]
password_autofill_manager.cc 171 usernames_iter = fill_data.other_possible_usernames.begin();
172 usernames_iter != fill_data.other_possible_usernames.end();
password_form_manager.cc 263 pending_credentials_.other_possible_usernames =
264 credentials.other_possible_usernames;
487 // reasons. Also remove duplicates, both in other_possible_usernames and
488 // between other_possible_usernames and username_value.
491 form->other_possible_usernames.begin();
492 it != form->other_possible_usernames.end(); ++it) {
498 form->other_possible_usernames.swap(temp);
543 pending_credentials_.other_possible_usernames.clear();
597 for (size_t i = 0; i < it->second->other_possible_usernames.size(); ++i) {
598 if (it->second->other_possible_usernames[i] == username)
    [all...]
login_database.cc 91 Pickle usernames_pickle = SerializeVector(form.other_possible_usernames);
376 Pickle pickle = SerializeVector(form.other_possible_usernames);
480 form->other_possible_usernames = DeserializeVector(pickle);
password_manager.cc 437 if (!it->second->other_possible_usernames.empty()) {
  /external/chromium_org/chrome/renderer/autofill/
password_autofill_agent_browsertest.cc 222 fill_data_.other_possible_usernames[key].push_back(alternate_username3_);
707 // Check that we complete other_possible_usernames as well.
    [all...]

Completed in 862 milliseconds