/external/chromium/chrome/browser/password_manager/ |
native_backend_gnome_x.h | 33 PasswordFormList* forms); 36 PasswordFormList* forms); 37 virtual bool GetAutofillableLogins(PasswordFormList* forms); 38 virtual bool GetBlacklistLogins(PasswordFormList* forms); 45 bool GetLoginsList(PasswordFormList* forms, bool autofillable); 48 bool GetAllLogins(PasswordFormList* forms);
|
native_backend_kwallet_x.h | 37 PasswordFormList* forms); 40 PasswordFormList* forms); 41 virtual bool GetAutofillableLogins(PasswordFormList* forms); 42 virtual bool GetBlacklistLogins(PasswordFormList* forms); 50 bool GetLoginsList(PasswordFormList* forms, 55 bool GetLoginsList(PasswordFormList* forms, 60 bool GetLoginsList(PasswordFormList* forms, 66 bool GetAllLogins(PasswordFormList* forms, int wallet_handle); 70 // |forms| is empty. Returns true on success. 71 bool SetLoginsList(const PasswordFormList& forms, [all...] |
password_store_x.h | 44 PasswordFormList* forms) = 0; 47 PasswordFormList* forms) = 0; 48 virtual bool GetAutofillableLogins(PasswordFormList* forms) = 0; 49 virtual bool GetBlacklistLogins(PasswordFormList* forms) = 0; 75 std::vector<webkit_glue::PasswordForm*>* forms); 77 std::vector<webkit_glue::PasswordForm*>* forms);
|
password_store_x.cc | 79 vector<PasswordForm*> forms; local 81 backend_->GetLoginsCreatedBetween(delete_begin, delete_end, &forms) && 84 for (vector<PasswordForm*>::const_iterator it = forms.begin(); 85 it != forms.end(); ++it) { 98 STLDeleteElements(&forms); 143 bool PasswordStoreX::FillAutofillableLogins(vector<PasswordForm*>* forms) { 145 if (use_native_backend() && backend_->GetAutofillableLogins(forms)) { 150 return PasswordStoreDefault::FillAutofillableLogins(forms); 154 bool PasswordStoreX::FillBlacklistLogins(vector<PasswordForm*>* forms) { 156 if (use_native_backend() && backend_->GetBlacklistLogins(forms)) { 200 vector<PasswordForm*> forms; local [all...] |
login_database.h | 33 // Adds |form| to the list of remembered password forms. 40 // Removes |form| from the list of remembered password forms. 49 // Loads a list of matching password forms into the specified vector |forms|. 53 std::vector<webkit_glue::PasswordForm*>* forms) const; 61 std::vector<webkit_glue::PasswordForm*>* forms) const; 63 // Loads the complete list of autofillable password forms (i.e., not blacklist 64 // entries) into |forms|. 66 std::vector<webkit_glue::PasswordForm*>* forms) const; 68 // Loads the complete list of blacklist forms into |forms| [all...] |
native_backend_kwallet_x.cc | 127 PasswordFormList forms; 128 GetLoginsList(&forms, form.signon_realm, wallet_handle); 130 forms.push_back(new PasswordForm(form)); 131 bool ok = SetLoginsList(forms, form.signon_realm, wallet_handle); 133 STLDeleteElements(&forms); 142 PasswordFormList forms; 143 GetLoginsList(&forms, form.signon_realm, wallet_handle); 145 for (size_t i = 0; i < forms.size(); ++i) { 146 if (CompareForms(form, *forms[i], true)) 147 *forms[i] = form [all...] |
password_store_mac.h | 51 std::vector<webkit_glue::PasswordForm*>* forms); 53 std::vector<webkit_glue::PasswordForm*>* forms); 67 // Caller is responsible for deleting the forms. 70 // Removes the given forms from the database. 72 const std::vector<webkit_glue::PasswordForm*>& forms); 74 // Removes the given forms from the Keychain. 76 const std::vector<webkit_glue::PasswordForm*>& forms);
|
native_backend_gnome_x.cc | 186 NativeBackendGnome::PasswordFormList* forms) { 199 forms->push_back(form); 272 GnomeKeyringResult WaitResult(PasswordFormList* forms); 403 // We find forms using the same fields as LoginDatabase::RemoveLogin(). 492 GnomeKeyringResult GKRMethod::WaitResult(PasswordFormList* forms) { 495 forms->swap(forms_); 659 PasswordFormList forms; local 660 GnomeKeyringResult result = method.WaitResult(&forms); 667 if (forms.size() > 0) { 668 if (forms.size() > 1) 693 PasswordFormList forms; local 749 PasswordFormList forms; local [all...] |
password_form_data.h | 45 // PasswordForms as |forms|, regardless of order. 46 MATCHER_P(ContainsAllPasswordForms, forms, "") { 47 return ContainsSamePasswordFormsPtr(forms, arg);
|
password_store_default.h | 44 std::vector<webkit_glue::PasswordForm*>* forms); 46 std::vector<webkit_glue::PasswordForm*>* forms);
|
password_store_default.cc | 87 const PasswordForms& forms = local 89 for (PasswordForms::const_iterator it = forms.begin(); 90 it != forms.end(); ++it) { 162 std::vector<PasswordForm*> forms; local 163 if (login_db_->GetLoginsCreatedBetween(delete_begin, delete_end, &forms)) { 166 for (std::vector<PasswordForm*>::const_iterator it = forms.begin(); 167 it != forms.end(); ++it) { 177 STLDeleteElements(&forms); 199 std::vector<PasswordForm*>* forms) { 201 return login_db_->GetAutofillableLogins(forms); [all...] |
login_database.cc | 306 std::vector<PasswordForm*>* forms) const { 307 DCHECK(forms); 327 forms->push_back(new_form); 335 std::vector<webkit_glue::PasswordForm*>* forms) const { 336 DCHECK(forms); 358 forms->push_back(new_form); 364 std::vector<PasswordForm*>* forms) const { 365 return GetAllLoginsWithBlacklistSetting(false, forms); 369 std::vector<PasswordForm*>* forms) const { 370 return GetAllLoginsWithBlacklistSetting(true, forms); [all...] |
password_store_x_unittest.cc | 104 virtual bool GetLogins(const PasswordForm& form, PasswordFormList* forms) { 110 PasswordFormList* forms) { 114 virtual bool GetAutofillableLogins(PasswordFormList* forms) { return false; } 115 virtual bool GetBlacklistLogins(PasswordFormList* forms) { return false; } 151 virtual bool GetLogins(const PasswordForm& form, PasswordFormList* forms) { 154 forms->push_back(new PasswordForm(all_forms_[i])); 160 PasswordFormList* forms) { 164 forms->push_back(new PasswordForm(all_forms_[i])); 168 virtual bool GetAutofillableLogins(PasswordFormList* forms) { 171 forms->push_back(new PasswordForm(all_forms_[i])) 219 std::vector<PasswordForm*> forms; local [all...] |
/external/chromium/chrome/browser/importer/ |
nss_decryptor_null.h | 29 std::vector<webkit_glue::PasswordForm>* forms) {} 31 std::vector<webkit_glue::PasswordForm>* forms) {
|
nss_decryptor_system_nss.h | 37 // The result will be stored in |forms|. 39 std::vector<webkit_glue::PasswordForm>* forms); 43 // The result will be stored in |forms|. 45 std::vector<webkit_glue::PasswordForm>* forms);
|
/external/chromium/chrome/browser/autofill/ |
form_structure_browsertest.cc | 32 // file that contains one or more forms. The corresponding output file lists the 44 // Serializes the given |forms| into a string. 45 std::string FormStructuresToString(const std::vector<FormStructure*>& forms); 65 std::vector<FormStructure*> forms = autofill_manager->form_structures_.get(); local 66 *output = FormStructureBrowserTest::FormStructuresToString(forms); 70 const std::vector<FormStructure*>& forms) { 72 for (std::vector<FormStructure*>::const_iterator iter = forms.begin(); 73 iter != forms.end();
|
personal_data_manager_unittest.cc | 546 std::vector<const FormStructure*> forms; local 547 forms.push_back(&form_structure); 549 EXPECT_TRUE(personal_data_->ImportFormData(forms, &imported_credit_card)); 593 std::vector<const FormStructure*> forms; local 594 forms.push_back(&form_structure); 596 EXPECT_FALSE(personal_data_->ImportFormData(forms, &imported_credit_card)); 623 std::vector<const FormStructure*> forms; local 624 forms.push_back(&form_structure); 626 EXPECT_FALSE(personal_data_->ImportFormData(forms, &imported_credit_card)); 676 std::vector<const FormStructure*> forms; local 779 std::vector<const FormStructure*> forms; local 874 std::vector<const FormStructure*> forms; local 980 std::vector<const FormStructure*> forms; local 1085 std::vector<const FormStructure*> forms; local 1182 std::vector<const FormStructure*> forms; local 1271 std::vector<const FormStructure*> forms; local 1310 std::vector<const FormStructure*> forms; local 1390 std::vector<const FormStructure*> forms; local 1460 std::vector<const FormStructure*> forms; local 1542 std::vector<const FormStructure*> forms; local 1613 std::vector<const FormStructure*> forms; local 1684 std::vector<const FormStructure*> forms; local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/export/ |
ExportPropertiesPage.java | 23 import org.eclipse.ui.forms.IManagedForm; 24 import org.eclipse.ui.forms.editor.FormPage; 25 import org.eclipse.ui.forms.widgets.ColumnLayout; 26 import org.eclipse.ui.forms.widgets.ColumnLayoutData; 27 import org.eclipse.ui.forms.widgets.FormToolkit; 28 import org.eclipse.ui.forms.widgets.ScrolledForm;
|
ExportLinksPart.java | 27 import org.eclipse.ui.forms.events.HyperlinkEvent; 28 import org.eclipse.ui.forms.events.IHyperlinkListener; 29 import org.eclipse.ui.forms.widgets.FormText; 30 import org.eclipse.ui.forms.widgets.FormToolkit; 31 import org.eclipse.ui.forms.widgets.Section;
|
/external/chromium/chrome/browser/webdata/ |
logins_table.h | 56 // Adds |form| to the list of remembered password forms. 73 // Removes |form| from the list of remembered password forms. 82 // Loads a list of matching password forms into the specified vector |forms|. 86 std::vector<webkit_glue::PasswordForm*>* forms); 88 // Loads the complete list of password forms into the specified vector |forms| 92 bool GetAllLogins(std::vector<webkit_glue::PasswordForm*>* forms,
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/menu/ |
MenuTreePage.java | 26 import org.eclipse.ui.forms.IManagedForm; 27 import org.eclipse.ui.forms.editor.FormPage; 28 import org.eclipse.ui.forms.widgets.ScrolledForm;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/xml/ |
XmlTreePage.java | 26 import org.eclipse.ui.forms.IManagedForm; 27 import org.eclipse.ui.forms.editor.FormPage; 28 import org.eclipse.ui.forms.widgets.ScrolledForm;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/ |
OverviewInfoPart.java | 26 import org.eclipse.ui.forms.IManagedForm; 27 import org.eclipse.ui.forms.widgets.FormToolkit; 28 import org.eclipse.ui.forms.widgets.Section;
|
OverviewExportPart.java | 33 import org.eclipse.ui.forms.events.HyperlinkAdapter; 34 import org.eclipse.ui.forms.events.HyperlinkEvent; 35 import org.eclipse.ui.forms.widgets.FormText; 36 import org.eclipse.ui.forms.widgets.FormToolkit; 37 import org.eclipse.ui.forms.widgets.Section;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/ |
UiSeparatorAttributeNode.java | 27 import org.eclipse.ui.forms.IManagedForm; 28 import org.eclipse.ui.forms.widgets.FormToolkit; 29 import org.eclipse.ui.forms.widgets.TableWrapData; 30 import org.eclipse.ui.forms.widgets.TableWrapLayout;
|