Searched refs:forms (Results 1 - 25 of 113) sorted by relevance

12345

/external/chromium/chrome/browser/password_manager/
H A Dnative_backend_gnome_x.h33 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);
H A Dnative_backend_kwallet_x.h37 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...]
H A Dpassword_store_x.cc79 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) { argument
145 if (use_native_backend() && backend_->GetAutofillableLogins(forms)) {
150 return PasswordStoreDefault::FillAutofillableLogins(forms);
154 bool PasswordStoreX::FillBlacklistLogins(vector<PasswordForm*>* forms) { argument
156 if (use_native_backend() && backend_->GetBlacklistLogins(forms)) {
200 vector<PasswordForm*> forms; local
[all...]
H A Dlogin_database.h33 // 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 int
[all...]
H A Dpassword_store_x.h44 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);
H A Dnative_backend_kwallet_x.cc127 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[
241 GetLogins(const PasswordForm& form, PasswordFormList* forms) argument
249 GetLoginsCreatedBetween(const base::Time& get_begin, const base::Time& get_end, PasswordFormList* forms) argument
258 GetAutofillableLogins(PasswordFormList* forms) argument
265 GetBlacklistLogins(PasswordFormList* forms) argument
272 GetLoginsList(PasswordFormList* forms, const string& signon_realm, int wallet_handle) argument
321 GetLoginsList(PasswordFormList* forms, bool autofillable, int wallet_handle) argument
340 GetLoginsList(PasswordFormList* forms, const base::Time& begin, const base::Time& end, int wallet_handle) argument
362 GetAllLogins(PasswordFormList* forms, int wallet_handle) argument
400 SetLoginsList(const PasswordFormList& forms, const string& signon_realm, int wallet_handle) argument
460 SerializeValue(const PasswordFormList& forms, Pickle* pickle) argument
494 DeserializeValue(const string& signon_realm, const Pickle& pickle, PasswordFormList* forms) argument
[all...]
H A Dpassword_store_mac.h51 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);
H A Dnative_backend_gnome_x.cc186 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) { argument
495 forms->swap(forms_);
659 PasswordFormList forms; local
660 GnomeKeyringResult result = method.WaitResult(&forms);
667 if (forms.size() > 0) {
668 if (forms
185 ConvertFormList(GList* found, NativeBackendGnome::PasswordFormList* forms) argument
693 PasswordFormList forms; local
749 PasswordFormList forms; local
764 GetLogins(const PasswordForm& form, PasswordFormList* forms) argument
783 GetLoginsCreatedBetween(const base::Time& get_begin, const base::Time& get_end, PasswordFormList* forms) argument
806 GetAutofillableLogins(PasswordFormList* forms) argument
810 GetBlacklistLogins(PasswordFormList* forms) argument
814 GetLoginsList(PasswordFormList* forms, bool autofillable) argument
850 GetAllLogins(PasswordFormList* forms) argument
[all...]
H A Dpassword_form_data.h45 // PasswordForms as |forms|, regardless of order.
46 MATCHER_P(ContainsAllPasswordForms, forms, "") {
47 return ContainsSamePasswordFormsPtr(forms, arg);
H A Dpassword_store_default.cc87 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);
198 FillAutofillableLogins( std::vector<PasswordForm*>* forms) argument
204 FillBlacklistLogins( std::vector<PasswordForm*>* forms) argument
[all...]
H A Dlogin_database.cc306 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...]
H A Dpassword_store_default.h44 std::vector<webkit_glue::PasswordForm*>* forms);
46 std::vector<webkit_glue::PasswordForm*>* forms);
H A Dpassword_store_x_unittest.cc104 virtual bool GetLogins(const PasswordForm& form, PasswordFormList* forms) { argument
110 PasswordFormList* forms) {
114 virtual bool GetAutofillableLogins(PasswordFormList* forms) { return false; } argument
115 virtual bool GetBlacklistLogins(PasswordFormList* forms) { return false; } argument
151 virtual bool GetLogins(const PasswordForm& form, PasswordFormList* forms) { argument
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) { argument
171 forms
108 GetLoginsCreatedBetween(const base::Time& get_begin, const base::Time& get_end, PasswordFormList* forms) argument
158 GetLoginsCreatedBetween(const base::Time& get_begin, const base::Time& get_end, PasswordFormList* forms) argument
175 GetBlacklistLogins(PasswordFormList* forms) argument
219 std::vector<PasswordForm*> forms; local
234 InitExpectedForms(bool autofillable, size_t count, VectorOfForms* forms) argument
[all...]
/external/chromium/chrome/browser/autofill/
H A Dform_structure_browsertest.cc32 // 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();
69 FormStructuresToString( const std::vector<FormStructure*>& forms) argument
H A Dpersonal_data_manager_unittest.cc546 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...]
H A Dautofill_manager_unittest.cc149 // for building up more complex test forms.
198 // for building up more complex test forms.
285 // The number of fields in the address and credit card forms created above.
508 void FormsSeen(const std::vector<webkit_glue::FormData>& forms) { argument
509 autofill_manager_->OnFormsSeen(forms);
607 std::vector<FormData> forms(1, form);
608 FormsSeen(forms);
649 std::vector<FormData> forms(1, form);
650 FormsSeen(forms);
701 std::vector<FormData> forms(
[all...]
H A Dform_structure.h50 // Encodes the XML query request for the set of forms.
51 // All fields are returned in one XML. For example, there are three forms,
55 static bool EncodeQueryRequest(const ScopedVector<FormStructure>& forms,
59 // Parses the field types from the server query response. |forms| must be the
62 const std::vector<FormStructure*>& forms,
70 // Runs a quick heuristic to rule out forms that are obviously not
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ui.forms_3.5.2.r36_v20100702.jar ... properties org/ org/eclipse/ org/eclipse/ui/ org/eclipse/ui/forms/ org/eclipse/ui/forms/AbstractFormPart.class AbstractFormPart.java ...
/external/chromium/chrome/browser/importer/
H A Dnss_decryptor_null.h29 std::vector<webkit_glue::PasswordForm>* forms) {}
31 std::vector<webkit_glue::PasswordForm>* forms) {
28 ParseSignons(const std::string& content, std::vector<webkit_glue::PasswordForm>* forms) argument
30 ReadAndParseSignons(const FilePath& sqlite_file, std::vector<webkit_glue::PasswordForm>* forms) argument
H A Dnss_decryptor_system_nss.h37 // 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);
H A Dnss_decryptor.cc114 std::vector<webkit_glue::PasswordForm>* forms) {
115 forms->clear();
147 forms->push_back(form);
229 forms->push_back(form);
235 std::vector<webkit_glue::PasswordForm>* forms) {
256 forms->push_back(form);
295 forms->push_back(form);
113 ParseSignons(const std::string& content, std::vector<webkit_glue::PasswordForm>* forms) argument
234 ReadAndParseSignons(const FilePath& sqlite_file, std::vector<webkit_glue::PasswordForm>* forms) argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/scripts/
H A DFingerprints.js2 var formSelect=document.forms[0].elements[0];
30 var formSelect=document.forms[0].elements[0];
/external/webkit/LayoutTests/dom/html/level2/html/
H A DHTMLDocument10.js78 The forms attribute returns a collection of all the forms in a document.
80 Retrieve the forms attribute from the document and examine its value.
100 vforms = doc.forms;
/external/webkit/LayoutTests/dom/xhtml/level2/html/
H A DHTMLDocument10.js78 The forms attribute returns a collection of all the forms in a document.
80 Retrieve the forms attribute from the document and examine its value.
100 vforms = doc.forms;
/external/chromium/chrome/browser/webdata/
H A Dlogins_table.h56 // 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,

Completed in 829 milliseconds

12345