/external/chromium_org/components/autofill/content/renderer/ |
password_form_conversion_utils.h | 16 struct PasswordForm; 18 // Create a PasswordForm from DOM form. Webkit doesn't allow storing 22 scoped_ptr<PasswordForm> CreatePasswordForm(
|
/external/chromium/chrome/browser/password_manager/ |
password_store_mac_internal.h | 28 std::vector<webkit_glue::PasswordForm*> PasswordsFillingForm( 29 const webkit_glue::PasswordForm& query_form); 34 std::vector<webkit_glue::PasswordForm*> PasswordsMergeableWithForm( 35 const webkit_glue::PasswordForm& query_form); 37 // Returns the PasswordForm for the Keychain entry that matches |form| on all 41 webkit_glue::PasswordForm* PasswordExactlyMatchingForm( 42 const webkit_glue::PasswordForm& query_form); 49 const webkit_glue::PasswordForm& query_form); 52 std::vector<webkit_glue::PasswordForm*> GetAllPasswordFormPasswords(); 57 bool AddPassword(const webkit_glue::PasswordForm& form) [all...] |
password_store_mac.h | 41 virtual void AddLoginImpl(const webkit_glue::PasswordForm& form); 42 virtual void UpdateLoginImpl(const webkit_glue::PasswordForm& form); 43 virtual void RemoveLoginImpl(const webkit_glue::PasswordForm& form); 47 const webkit_glue::PasswordForm& form); 51 std::vector<webkit_glue::PasswordForm*>* forms); 53 std::vector<webkit_glue::PasswordForm*>* forms); 58 bool AddToKeychainIfNecessary(const webkit_glue::PasswordForm& form); 63 const webkit_glue::PasswordForm& form); 68 std::vector<webkit_glue::PasswordForm*> GetUnusedKeychainForms(); 72 const std::vector<webkit_glue::PasswordForm*>& forms) [all...] |
password_store_x.h | 32 typedef std::vector<webkit_glue::PasswordForm*> PasswordFormList; 38 virtual bool AddLogin(const webkit_glue::PasswordForm& form) = 0; 39 virtual bool UpdateLogin(const webkit_glue::PasswordForm& form) = 0; 40 virtual bool RemoveLogin(const webkit_glue::PasswordForm& form) = 0; 43 virtual bool GetLogins(const webkit_glue::PasswordForm& form, 65 virtual void AddLoginImpl(const webkit_glue::PasswordForm& form); 66 virtual void UpdateLoginImpl(const webkit_glue::PasswordForm& form); 67 virtual void RemoveLoginImpl(const webkit_glue::PasswordForm& form); 71 const webkit_glue::PasswordForm& form); 75 std::vector<webkit_glue::PasswordForm*>* forms) [all...] |
login_database.h | 34 bool AddLogin(const webkit_glue::PasswordForm& form); 38 bool UpdateLogin(const webkit_glue::PasswordForm& form, int* items_changed); 41 bool RemoveLogin(const webkit_glue::PasswordForm& form); 52 bool GetLogins(const webkit_glue::PasswordForm& form, 53 std::vector<webkit_glue::PasswordForm*>* forms) const; 61 std::vector<webkit_glue::PasswordForm*>* forms) const; 66 std::vector<webkit_glue::PasswordForm*>* forms) const; 69 bool GetBlacklistLogins(std::vector<webkit_glue::PasswordForm*>* forms) const; 90 void InitPasswordFormFromStatement(webkit_glue::PasswordForm* form, 96 bool blacklisted, std::vector<webkit_glue::PasswordForm*>* forms) const [all...] |
native_backend_gnome_x.h | 14 struct PasswordForm; 27 virtual bool AddLogin(const webkit_glue::PasswordForm& form); 28 virtual bool UpdateLogin(const webkit_glue::PasswordForm& form); 29 virtual bool RemoveLogin(const webkit_glue::PasswordForm& form); 32 virtual bool GetLogins(const webkit_glue::PasswordForm& form, 42 bool RawAddLogin(const webkit_glue::PasswordForm& form);
|
password_form_data.h | 15 const webkit_glue::PasswordForm::Scheme scheme; 29 // Creates and returns a new PasswordForm built from form_data. Caller is 31 webkit_glue::PasswordForm* CreatePasswordFormFromData( 37 const std::vector<webkit_glue::PasswordForm*>& first, 38 const std::vector<webkit_glue::PasswordForm*>& second); 41 std::vector<webkit_glue::PasswordForm>& first, 42 std::vector<webkit_glue::PasswordForm>& second);
|
password_store_default.h | 34 virtual void AddLoginImpl(const webkit_glue::PasswordForm& form); 35 virtual void UpdateLoginImpl(const webkit_glue::PasswordForm& form); 36 virtual void RemoveLoginImpl(const webkit_glue::PasswordForm& form); 40 const webkit_glue::PasswordForm& form); 44 std::vector<webkit_glue::PasswordForm*>* forms); 46 std::vector<webkit_glue::PasswordForm*>* forms);
|
/ndk/tests/device/test-gnustl-copy_vector_into_a_set/jni/ |
copy_vector_into_a_set.cpp | 10 struct PasswordForm { 12 PasswordForm(); 13 ~PasswordForm(); 17 PasswordForm::PasswordForm(){ 20 PasswordForm::~PasswordForm() { 23 PasswordForm* CreatePasswordFormFromData( 25 PasswordForm* form = new PasswordForm(); [all...] |
/ndk/tests/device/test-stlport-copy_vector_into_a_set/jni/ |
copy_vector_into_a_set.cpp | 10 struct PasswordForm { 12 PasswordForm(); 13 ~PasswordForm(); 17 PasswordForm::PasswordForm(){ 20 PasswordForm::~PasswordForm() { 23 PasswordForm* CreatePasswordFormFromData( 25 PasswordForm* form = new PasswordForm(); [all...] |
/external/chromium_org/chrome/browser/password_manager/ |
password_store_mac_internal.h | 29 std::vector<autofill::PasswordForm*> PasswordsFillingForm( 30 const autofill::PasswordForm& query_form); 32 // Returns the PasswordForm for the Keychain entry that matches |form| on all 36 autofill::PasswordForm* PasswordExactlyMatchingForm( 37 const autofill::PasswordForm& query_form); 45 const autofill::PasswordForm& query_form); 52 std::vector<autofill::PasswordForm*> GetAllPasswordFormPasswords(); 57 bool AddPassword(const autofill::PasswordForm& form); 61 bool RemovePassword(const autofill::PasswordForm& form); 71 std::vector<autofill::PasswordForm*> ConvertKeychainItemsToForms [all...] |
password_store_consumer.h | 12 struct PasswordForm; 28 const std::vector<autofill::PasswordForm*>& result) = 0; 42 const std::vector<autofill::PasswordForm*>& results) = 0;
|
password_store_mac.h | 47 virtual void AddLoginImpl(const autofill::PasswordForm& form) OVERRIDE; 49 const autofill::PasswordForm& form) OVERRIDE; 51 const autofill::PasswordForm& form) OVERRIDE; 55 const autofill::PasswordForm& form, 61 std::vector<autofill::PasswordForm*>* forms) OVERRIDE; 63 std::vector<autofill::PasswordForm*>* forms) OVERRIDE; 68 bool AddToKeychainIfNecessary(const autofill::PasswordForm& form); 73 const autofill::PasswordForm& form); 78 std::vector<autofill::PasswordForm*> GetUnusedKeychainForms(); 82 const std::vector<autofill::PasswordForm*>& forms) [all...] |
mock_password_store.h | 23 MOCK_METHOD1(RemoveLogin, void(const autofill::PasswordForm&)); 26 const autofill::PasswordForm&, 29 MOCK_METHOD1(AddLogin, void(const autofill::PasswordForm&)); 30 MOCK_METHOD1(UpdateLogin, void(const autofill::PasswordForm&)); 33 MOCK_METHOD1(AddLoginImpl, void(const autofill::PasswordForm&)); 34 MOCK_METHOD1(UpdateLoginImpl, void(const autofill::PasswordForm&)); 35 MOCK_METHOD1(RemoveLoginImpl, void(const autofill::PasswordForm&)); 39 void(const autofill::PasswordForm& form, 45 bool(std::vector<autofill::PasswordForm*>*)); 47 bool(std::vector<autofill::PasswordForm*>*)); [all...] |
password_form_data.h | 18 const autofill::PasswordForm::Scheme scheme; 32 // Creates and returns a new PasswordForm built from form_data. Caller is 34 autofill::PasswordForm* CreatePasswordFormFromData( 40 const std::vector<autofill::PasswordForm*>& first, 41 const std::vector<autofill::PasswordForm*>& second); 44 std::vector<autofill::PasswordForm>& first, 45 std::vector<autofill::PasswordForm>& second);
|
password_store_default.h | 32 virtual void AddLoginImpl(const autofill::PasswordForm& form) OVERRIDE; 34 const autofill::PasswordForm& form) OVERRIDE; 36 const autofill::PasswordForm& form) OVERRIDE; 40 const autofill::PasswordForm& form, 46 std::vector<autofill::PasswordForm*>* forms) OVERRIDE; 48 std::vector<autofill::PasswordForm*>* forms) OVERRIDE;
|
password_store_win.h | 16 struct PasswordForm; 40 const autofill::PasswordForm& form, 45 const autofill::PasswordForm& form, 47 const std::vector<autofill::PasswordForm*>& matched_forms);
|
test_password_store.cc | 26 bool TestPasswordStore::FormsAreEquivalent(const autofill::PasswordForm& lhs, 27 const autofill::PasswordForm& rhs) { 44 void TestPasswordStore::AddLoginImpl(const autofill::PasswordForm& form) { 48 void TestPasswordStore::UpdateLoginImpl(const autofill::PasswordForm& form) { 49 std::vector<autofill::PasswordForm>& forms = 51 for (std::vector<autofill::PasswordForm>::iterator it = forms.begin(); 59 void TestPasswordStore::RemoveLoginImpl(const autofill::PasswordForm& form) { 60 std::vector<autofill::PasswordForm>& forms = 62 for (std::vector<autofill::PasswordForm>::iterator it = forms.begin(); 72 const autofill::PasswordForm& form [all...] |
test_password_store.h | 36 std::vector<autofill::PasswordForm> > PasswordMap; 45 bool FormsAreEquivalent(const autofill::PasswordForm& lhs, 46 const autofill::PasswordForm& rhs); 49 virtual void AddLoginImpl(const autofill::PasswordForm& form) OVERRIDE; 50 virtual void UpdateLoginImpl(const autofill::PasswordForm& form) OVERRIDE; 51 virtual void RemoveLoginImpl(const autofill::PasswordForm& form) OVERRIDE; 53 const autofill::PasswordForm& form, 68 std::vector<autofill::PasswordForm*>* forms) OVERRIDE; 70 std::vector<autofill::PasswordForm*>* forms) OVERRIDE;
|
/external/chromium/webkit/glue/ |
password_form.cc | 9 PasswordForm::PasswordForm() 16 PasswordForm::PasswordForm(const WebKit::WebPasswordFormData& web_password_form) 33 PasswordForm::~PasswordForm() {
|
password_form.h | 17 // The PasswordForm struct encapsulates information about a login form, 21 // metdata using a PasswordForm struct, typically one that was created from 26 // PasswordForm entries against PasswordForms that were created from a parsed 32 // about a particular "saved password entry" to our PasswordForm 39 struct PasswordForm { 58 // fashion) whether or not a given PasswordForm result from the database is a 75 // of PasswordForm results from the database to make matches as tight as 110 // SSL cert. We will never match or autofill a PasswordForm where 111 // ssl_valid == true with a PasswordForm where ssl_valid == false. This means 118 // True if this PasswordForm represents the last username/password login th [all...] |
password_form_dom_manager.h | 40 // Create a PasswordForm from DOM form. Webkit doesn't allow storing 44 static PasswordForm* CreatePasswordForm(const WebKit::WebFormElement& form); 52 static void InitFillData(const PasswordForm& form_on_page, 54 const PasswordForm* const preferred_match,
|
/external/chromium_org/chrome/browser/ui/passwords/ |
password_ui_view.h | 12 struct PasswordForm; 37 const ScopedVector<autofill::PasswordForm>& password_list, 43 const ScopedVector<autofill::PasswordForm>& password_exception_list) = 0;
|
/external/chromium/chrome/browser/webdata/ |
logins_table.h | 18 struct PasswordForm; 57 bool AddLogin(const webkit_glue::PasswordForm& form); 71 bool UpdateLogin(const webkit_glue::PasswordForm& form); 74 bool RemoveLogin(const webkit_glue::PasswordForm& form); 85 bool GetLogins(const webkit_glue::PasswordForm& form, 86 std::vector<webkit_glue::PasswordForm*>* forms); 92 bool GetAllLogins(std::vector<webkit_glue::PasswordForm*>* forms,
|
/external/chromium/chrome/browser/importer/ |
nss_decryptor_null.h | 18 struct PasswordForm; 29 std::vector<webkit_glue::PasswordForm>* forms) {} 31 std::vector<webkit_glue::PasswordForm>* forms) {
|