Searched defs:forms (Results 1 - 25 of 32) sorted by relevance

12

/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 Dform_structure_unittest.cc1239 ScopedVector<FormStructure> forms; local
1240 forms.push_back(new FormStructure(form));
1251 ASSERT_TRUE(FormStructure::EncodeQueryRequest(forms, &encoded_signatures,
1259 forms.push_back(new FormStructure(form));
1260 ASSERT_TRUE(FormStructure::EncodeQueryRequest(forms, &encoded_signatures,
1276 forms.push_back(new FormStructure(form));
1277 ASSERT_TRUE(FormStructure::EncodeQueryRequest(forms, &encoded_signatures,
1309 forms.push_back(new FormStructure(form));
1310 ASSERT_TRUE(FormStructure::EncodeQueryRequest(forms, &encoded_signatures,
H A Dautofill_manager.h56 // forms.
106 void OnFormsSeenWrapper(const std::vector<webkit_glue::FormData>& forms) { argument
107 OnFormsSeen(forms);
155 void OnFormsSeen(const std::vector<webkit_glue::FormData>& forms);
238 // Parses the forms using heuristic matching and querying the Autofill server.
239 void ParseForms(const std::vector<webkit_glue::FormData>& forms);
H A Dautofill_download.cc92 const ScopedVector<FormStructure>& forms,
100 if (!FormStructure::EncodeQueryRequest(forms, &request_data.form_signatures,
212 // loading the forms immediately; I cannot reproduce this even in that
91 StartQueryRequest( const ScopedVector<FormStructure>& forms, const AutofillMetrics& metric_logger) 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.cc63 // We only send a fraction of the forms to upload server.
139 // Likewise, forms often ask for multiple email addresses, so ignore this
327 // Disregard forms that we wouldn't ever autofill in the first place.
331 // Ignore forms not present in our cache. These are typically forms with
349 void AutofillManager::OnFormsSeen(const std::vector<FormData>& forms) { argument
359 ParseForms(forms);
385 // Don't send suggestions for forms that aren't auto-fillable.
437 // duplicates only tend to be a problem when filling address forms
718 // Check if the form among last 3 forms tha
[all...]
H A Dform_structure.cc43 // Try and autofill more forms on Android, as filling out forms is
153 bool FormStructure::EncodeQueryRequest(const ScopedVector<FormStructure>& forms, argument
160 encoded_signatures->reserve(forms.size());
170 // Some badly formatted web sites repeat forms - detect that and encode only
171 // one form as returned data would be the same for all the repeated forms.
173 for (ScopedVector<FormStructure>::const_iterator it = forms.begin();
174 it != forms.end();
205 const std::vector<FormStructure*>& forms,
227 for (std::vector<FormStructure*>::const_iterator iter = forms
204 ParseQueryResponse(const std::string& response_xml, const std::vector<FormStructure*>& forms, UploadRequired* upload_required, const AutofillMetrics& metric_logger) argument
[all...]
/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.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
H A Dfirefox2_importer.cc353 std::vector<webkit_glue::PasswordForm> forms; local
354 decryptor.ParseSignons(content, &forms);
357 for (size_t i = 0; i < forms.size(); ++i) {
358 bridge_->SetPasswordForm(forms[i]);
H A Dfirefox3_importer.cc319 std::vector<webkit_glue::PasswordForm> forms; local
324 decryptor.ReadAndParseSignons(file, &forms);
333 decryptor.ParseSignons(content, &forms);
337 for (size_t i = 0; i < forms.size(); ++i) {
338 bridge_->SetPasswordForm(forms[i]);
/external/chromium/chrome/browser/webdata/
H A Dlogins_table.cc245 std::vector<PasswordForm*>* forms) {
246 DCHECK(forms);
266 forms->push_back(new_form);
271 bool LoginsTable::GetAllLogins(std::vector<PasswordForm*>* forms, argument
273 DCHECK(forms);
293 forms->push_back(new_form);
244 GetLogins(const PasswordForm& form, std::vector<PasswordForm*>* forms) argument
/external/flac/libFLAC/ia32/
H A Dnasm.h4 ; Redistribution and use in source and binary forms, with or without variable
/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/password_manager/
H A Dpassword_manager.cc112 // We don't care about the rest of the forms on the page now that one
176 const std::vector<PasswordForm>& forms) {
186 for (iter = forms.begin(); iter != forms.end(); iter++) {
175 OnPasswordFormsFound( const std::vector<PasswordForm>& forms) argument
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 Dpassword_store_win_unittest.cc211 std::vector<PasswordForm*> forms; local
212 forms.push_back(CreatePasswordFormFromData(expected_form_data));
217 ContainsAllPasswordForms(forms)))
223 STLDeleteElements(&forms);
319 std::vector<PasswordForm*> forms; local
320 forms.push_back(CreatePasswordFormFromData(expected_form_data));
325 ContainsAllPasswordForms(forms)))
344 STLDeleteElements(&forms);
458 // The autofillable forms should have been migrated from the WDS to the login
468 // The blacklisted forms shoul
[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 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 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_store_mac.cc377 // Returns entries from |forms| that are blacklist entries, after removing
378 // them from |forms|.
380 std::vector<PasswordForm*>* forms) {
382 for (std::vector<PasswordForm*>::iterator i = forms->begin();
383 i != forms->end();) {
387 i = forms->erase(i);
413 // than being merged with keychain forms.
829 // If we don't have other forms using it (i.e., a form differing only by
847 std::vector<PasswordForm*> forms; local
849 &forms)) {
379 ExtractBlacklistForms( std::vector<PasswordForm*>* forms) argument
920 FillAutofillableLogins( std::vector<PasswordForm*>* forms) argument
939 FillBlacklistLogins( std::vector<PasswordForm*>* forms) argument
991 RemoveDatabaseForms( const std::vector<PasswordForm*>& forms) argument
999 RemoveKeychainForms( const std::vector<PasswordForm*>& forms) argument
[all...]
H A Dpassword_store_mac_unittest.cc176 #define CHECK_FORMS(forms, expectations, i) \
177 CheckFormsAgainstExpectations(forms, expectations, #forms, i)
179 // Ensures that the data in |forms| match |expectations|, causing test failures
182 // matter if |forms| and |expectations| are scrambled.
184 const std::vector<PasswordForm*>& forms,
191 EXPECT_EQ(expectations.size(), forms.size()) << test_label;
192 if (expectations.size() != forms.size())
198 PasswordForm* form = forms[i];
369 // Garbage forms shoul
183 CheckFormsAgainstExpectations( const std::vector<PasswordForm*>& forms, const std::vector<PasswordFormData*>& expectations, const char* forms_label, unsigned int test_number) argument
[all...]
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/sync/
H A Dprofile_sync_service_password_unittest.cc350 std::vector<PasswordForm*> forms; local
365 forms.push_back(new_form);
368 .WillOnce(DoAll(SetArgumentPointee<0>(forms), Return(true)));
381 std::vector<PasswordForm*> forms; local
398 forms.push_back(new_form);
415 forms.push_back(new_form);
420 .WillOnce(DoAll(SetArgumentPointee<0>(forms), Return(true)));
/external/webkit/Source/WebCore/svg/
H A DSVGFont.cpp60 // Helper functions to determine the arabic character forms (initial, medial, terminal, isolated)
113 Vector<SVGGlyphIdentifier::ArabicForm> forms; local
125 return forms;
129 // Start identifying arabic forms
132 forms.prepend(processArabicFormDetection(input[i], lastCharShapesRight, forms.isEmpty() ? 0 : &forms.first()));
135 forms.append(processArabicFormDetection(input[i], lastCharShapesRight, forms.isEmpty() ? 0 : &forms
[all...]

Completed in 244 milliseconds

12