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

12345678

/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DWebSearchableFormDataTest.cpp4 * Redistribution and use in source and binary forms, with or without
70 WebVector<WebFormElement> forms; local
71 webView->mainFrame()->document().forms(forms);
73 EXPECT_EQ(forms.size(), 1U);
75 WebSearchableFormData searchableFormData(forms[0]);
/external/chromium_org/chrome/renderer/autofill/
H A Dform_autocomplete_browsertest.cc39 Tuple2<FormData, base::TimeTicks> forms; local
40 AutofillHostMsg_FormSubmitted::Read(message, &forms);
41 ASSERT_EQ(2U, forms.a.fields.size());
43 FormFieldData& form_field = forms.a.fields[0];
47 form_field = forms.a.fields[1];
70 Tuple2<FormData, base::TimeTicks> forms; local
71 AutofillHostMsg_FormSubmitted::Read(message, &forms);
72 ASSERT_EQ(2U, forms.a.fields.size());
74 FormFieldData& form_field = forms.a.fields[0];
78 form_field = forms
100 Tuple2<FormData, base::TimeTicks> forms; local
141 Tuple2<FormData, base::TimeTicks> forms; local
[all...]
H A Dautofill_renderer_browsertest.cc88 std::vector<FormData> forms = params.a; local
89 ASSERT_EQ(1UL, forms.size());
90 ASSERT_EQ(4UL, forms[0].fields.size());
98 EXPECT_FORM_FIELD_DATA_EQUALS(expected, forms[0].fields[0]);
104 EXPECT_FORM_FIELD_DATA_EQUALS(expected, forms[0].fields[1]);
111 EXPECT_FORM_FIELD_DATA_EQUALS(expected, forms[0].fields[2]);
118 EXPECT_FORM_FIELD_DATA_EQUALS(expected, forms[0].fields[3]);
151 forms = params.a;
152 ASSERT_EQ(1UL, forms.size());
153 ASSERT_EQ(3UL, forms[
183 const std::vector<FormData>& forms = params.a; local
281 WebVector<WebFormElement> forms; variable
282 invoking_frame()->document().forms(forms); variable
[all...]
/external/chromium_org/chrome/browser/password_manager/
H A Dnative_backend_kwallet_x.h58 PasswordFormList* forms) OVERRIDE;
59 virtual bool GetAutofillableLogins(PasswordFormList* forms) OVERRIDE;
60 virtual bool GetBlacklistLogins(PasswordFormList* forms) OVERRIDE;
72 PasswordFormList* forms);
94 bool GetLoginsList(PasswordFormList* forms,
99 bool GetLoginsList(PasswordFormList* forms,
104 bool GetAllLogins(PasswordFormList* forms, int wallet_handle);
108 // |forms| is empty. Returns true on success.
109 bool SetLoginsList(const PasswordFormList& forms,
125 static void SerializeValue(const PasswordFormList& forms, Pickl
[all...]
H A Dpassword_store_x.cc188 bool PasswordStoreX::FillAutofillableLogins(vector<PasswordForm*>* forms) { argument
190 if (use_native_backend() && backend_->GetAutofillableLogins(forms)) {
192 if (forms->size() > 0)
197 return PasswordStoreDefault::FillAutofillableLogins(forms);
201 bool PasswordStoreX::FillBlacklistLogins(vector<PasswordForm*>* forms) { argument
203 if (use_native_backend() && backend_->GetBlacklistLogins(forms)) {
205 if (forms->size() > 0)
210 return PasswordStoreDefault::FillBlacklistLogins(forms);
249 vector<PasswordForm*> forms; local
250 bool ok = PasswordStoreDefault::FillAutofillableLogins(&forms)
[all...]
H A Dnative_backend_gnome_x.h109 PasswordFormList* forms) OVERRIDE;
110 virtual bool GetAutofillableLogins(PasswordFormList* forms) OVERRIDE;
111 virtual bool GetBlacklistLogins(PasswordFormList* forms) OVERRIDE;
123 bool GetLoginsList(PasswordFormList* forms, bool autofillable);
126 bool GetAllLogins(PasswordFormList* forms);
133 PasswordFormList* forms);
H A Dpassword_store_mac.h74 std::vector<autofill::PasswordForm*>* forms) OVERRIDE;
76 std::vector<autofill::PasswordForm*>* forms) OVERRIDE;
88 // Removes the given forms from the database.
90 const std::vector<autofill::PasswordForm*>& forms);
92 // Removes the given forms from the Keychain.
94 const std::vector<autofill::PasswordForm*>& forms);
96 // Searches the database for forms without a corresponding entry in the
97 // keychain. Removes those forms from the database, and returns them in
98 // |forms|. Ownership of |forms| i
[all...]
H A Dpassword_store_x.h63 PasswordFormList* forms) = 0;
64 virtual bool GetAutofillableLogins(PasswordFormList* forms) = 0;
65 virtual bool GetBlacklistLogins(PasswordFormList* forms) = 0;
100 std::vector<autofill::PasswordForm*>* forms) OVERRIDE;
102 std::vector<autofill::PasswordForm*>* forms) OVERRIDE;
H A Dnative_backend_kwallet_x.cc274 ScopedVector<autofill::PasswordForm> forms;
275 GetLoginsList(&forms.get(), form.signon_realm, wallet_handle);
282 for (size_t i = 0; i < forms.size(); ++i) {
285 if (CompareForms(form, *forms[i], false)) {
287 password_manager::PasswordStoreChange::REMOVE, *forms[i]));
288 *forms[i] = form;
293 forms.push_back(new PasswordForm(form));
297 bool ok = SetLoginsList(forms.get(), form.signon_realm, wallet_handle);
313 ScopedVector<autofill::PasswordForm> forms;
314 GetLoginsList(&forms
374 GetLogins(const PasswordForm& form, PasswordFormList* forms) argument
382 GetAutofillableLogins(PasswordFormList* forms) argument
389 GetBlacklistLogins(PasswordFormList* forms) argument
396 GetLoginsList(PasswordFormList* forms, const std::string& signon_realm, int wallet_handle) argument
468 GetLoginsList(PasswordFormList* forms, bool autofillable, int wallet_handle) argument
487 GetAllLogins(PasswordFormList* forms, int wallet_handle) argument
546 SetLoginsList(const PasswordFormList& forms, const std::string& signon_realm, int wallet_handle) argument
707 SerializeValue(const PasswordFormList& forms, Pickle* pickle) argument
738 DeserializeValueSize(const std::string& signon_realm, const PickleIterator& init_iter, int version, bool size_32, bool warn_only, PasswordFormList* forms) argument
841 DeserializeValue(const std::string& signon_realm, const Pickle& pickle, PasswordFormList* forms) argument
[all...]
H A Dnative_backend_gnome_x.cc160 NativeBackendGnome::PasswordFormList* forms) {
189 forms->push_back(form.release());
277 GnomeKeyringResult WaitResult(PasswordFormList* forms);
400 // We find forms using the same fields as LoginDatabase::RemoveLogin().
469 GnomeKeyringResult GKRMethod::WaitResult(PasswordFormList* forms) { argument
472 if (forms->empty()) {
474 forms->swap(forms_);
476 // Rare case. Append forms_ to *forms.
477 forms->insert(forms
158 ConvertFormList(GList* found, const PasswordForm* lookup_form, NativeBackendGnome::PasswordFormList* forms) argument
566 ScopedVector<autofill::PasswordForm> forms; local
610 ScopedVector<autofill::PasswordForm> forms; local
670 GetLogins(const PasswordForm& form, PasswordFormList* forms) argument
689 GetAutofillableLogins(PasswordFormList* forms) argument
693 GetBlacklistLogins(PasswordFormList* forms) argument
697 GetLoginsList(PasswordFormList* forms, bool autofillable) argument
719 GetAllLogins(PasswordFormList* forms) argument
736 GetLoginsBetween(base::Time get_begin, base::Time get_end, TimestampToCompare date_to_compare, PasswordFormList* forms) argument
773 ScopedVector<autofill::PasswordForm> forms; local
[all...]
/external/chromium_org/components/password_manager/core/browser/
H A Dpassword_store_default.cc58 std::vector<PasswordForm*> forms; local
60 if (login_db_->GetLoginsCreatedBetween(delete_begin, delete_end, &forms)) {
62 for (std::vector<PasswordForm*>::const_iterator it = forms.begin();
63 it != forms.end(); ++it) {
70 STLDeleteElements(&forms);
77 std::vector<PasswordForm*> forms; local
79 if (login_db_->GetLoginsSyncedBetween(delete_begin, delete_end, &forms)) {
81 for (std::vector<PasswordForm*>::const_iterator it = forms.begin();
82 it != forms.end();
89 STLDeleteElements(&forms);
114 FillAutofillableLogins( std::vector<PasswordForm*>* forms) argument
120 FillBlacklistLogins( std::vector<PasswordForm*>* forms) argument
[all...]
H A Dpassword_generation_manager.cc25 const std::vector<autofill::FormStructure*>& forms) {
28 forms.begin(); form_it != forms.end(); ++form_it) {
24 DetectAccountCreationForms( const std::vector<autofill::FormStructure*>& forms) argument
H A Dtest_password_store.cc63 std::vector<autofill::PasswordForm>& forms = local
65 for (std::vector<autofill::PasswordForm>::iterator it = forms.begin();
66 it != forms.end(); ++it) {
79 std::vector<autofill::PasswordForm>& forms = local
81 std::vector<autofill::PasswordForm>::iterator it = forms.begin();
82 while (it != forms.end()) {
84 it = forms.erase(it);
99 std::vector<autofill::PasswordForm> forms = local
101 for (std::vector<autofill::PasswordForm>::iterator it = forms.begin();
102 it != forms
122 FillAutofillableLogins( std::vector<autofill::PasswordForm*>* forms) argument
127 FillBlacklistLogins( std::vector<autofill::PasswordForm*>* forms) argument
[all...]
H A Dlogin_database.h36 // Adds |form| to the list of remembered password forms. Returns the list of
48 // Removes |form| from the list of remembered password forms.
63 // Loads a list of matching password forms into the specified vector |forms|.
65 // including blacklisted matches. The caller owns |forms| after the call.
67 std::vector<autofill::PasswordForm*>* forms) const;
71 // direction. The caller owns |forms| after the call.
75 std::vector<autofill::PasswordForm*>* forms) const;
79 // direction. The caller owns |forms| after the call.
83 std::vector<autofill::PasswordForm*>* forms) cons
[all...]
H A Dpassword_store_sync.h22 std::vector<autofill::PasswordForm*>* forms) = 0;
26 std::vector<autofill::PasswordForm*>* forms) = 0;
H A Dpassword_generation_manager_unittest.cc52 const std::vector<autofill::FormData>& forms) OVERRIDE {
54 found_account_creation_forms_.begin(), forms.begin(), forms.end());
132 const std::vector<autofill::FormStructure*>& forms) {
133 GetGenerationManager()->DetectAccountCreationForms(forms);
177 std::vector<autofill::FormStructure*> forms; local
178 forms.push_back(&form1);
189 forms.push_back(&form2);
201 kServerResponse, forms, TestAutofillMetrics());
203 DetectAccountCreationForms(forms);
131 DetectAccountCreationForms( const std::vector<autofill::FormStructure*>& forms) argument
[all...]
H A Dpassword_form_data.h50 // PasswordForms as |forms|, regardless of order.
51 MATCHER_P(ContainsAllPasswordForms, forms, "") {
52 return ContainsSamePasswordFormsPtr(forms, arg);
H A Dpassword_generation_manager.h31 // This class is used to determine what forms we should offer to generate
39 // Detect account creation forms from forms with autofill type annotated.
43 const std::vector<autofill::FormStructure*>& forms);
/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_org/chrome/utility/importer/
H A Dnss_decryptor_null.h34 std::vector<autofill::PasswordForm>* forms) {}
36 std::vector<autofill::PasswordForm>* forms) {
33 ParseSignons(const std::string& content, std::vector<autofill::PasswordForm>* forms) argument
35 ReadAndParseSignons(const base::FilePath& sqlite_file, std::vector<autofill::PasswordForm>* forms) argument
H A Dnss_decryptor_system_nss.h38 // The result will be stored in |forms|.
40 std::vector<autofill::PasswordForm>* forms);
44 // The result will be stored in |forms|.
46 std::vector<autofill::PasswordForm>* forms);
H A Dfirefox_importer_unittest.cc109 std::vector<autofill::PasswordForm> forms = local
112 ASSERT_EQ(2u, forms.size());
113 EXPECT_EQ(autofill::PasswordForm::SCHEME_BASIC, forms[0].scheme);
114 EXPECT_EQ(autofill::PasswordForm::SCHEME_HTML, forms[1].scheme);
/external/chromium_org/components/autofill/content/renderer/
H A Dpassword_generation_agent.cc61 // We trim |passwords| because occasionally there are forms where the
87 bool ContainsForm(const std::vector<autofill::FormData>& forms, argument
90 forms.begin(); it != forms.end(); ++it) {
118 // form, but there could be multiple password forms in each frame.
143 blink::WebVector<blink::WebFormElement> forms;
144 frame->document().forms(forms);
145 for (size_t i = 0; i < forms.size(); ++i) {
146 if (forms[
228 OnAccountCreationFormsDetected( const std::vector<autofill::FormData>& forms) argument
[all...]
/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/chromium_org/chrome/browser/sync/test/integration/
H A Dpasswords_helper.cc69 void ClearSyncDateField(std::vector<PasswordForm>* forms) { argument
70 for (std::vector<PasswordForm>::iterator it = forms->begin();
71 it != forms->end();
115 std::vector<PasswordForm> forms; local
116 GetLogins(store, forms);
117 for (std::vector<PasswordForm>::iterator it = forms.begin();
118 it != forms.end(); ++it) {
147 std::vector<PasswordForm> forms; local
149 GetLogins(GetPasswordStore(index), forms); local
150 ClearSyncDateField(&forms);
346 std::vector<PasswordForm> forms; local
347 GetLogins(GetPasswordStore(index), forms); local
[all...]

Completed in 6808 milliseconds

12345678