HomeSort by relevance Sort by last modified time
    Searched defs:forms (Results 1 - 22 of 22) sorted by null

  /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();
form_structure_unittest.cc 1239 ScopedVector<FormStructure> forms; local
    [all...]
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...]
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
NormalizerTest.java 30 Form[] forms = Form.values(); local
31 assertEquals(4, forms.length);
32 assertEquals(Form.NFD, forms[0]);
33 assertEquals(Form.NFC, forms[1]);
34 assertEquals(Form.NFKD, forms[2]);
35 assertEquals(Form.NFKC, forms[3]);
  /external/chromium/chrome/browser/password_manager/
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...]
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...]
password_store_win_unittest.cc 211 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 should have been migrated from the WDS to the logi
    [all...]
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_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...]
password_store_mac.cc 377 // 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)) {
    [all...]
  /external/flac/libFLAC/ia32/
nasm.h 4 ; Redistribution and use in source and binary forms, with or without variable
  /external/smack/src/org/jivesoftware/smackx/workgroup/ext/forms/
WorkgroupForm.java 20 package org.jivesoftware.smackx.workgroup.ext.forms;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ui.forms_3.5.2.r36_v20100702.jar 
  /external/chromium/chrome/browser/sync/
profile_sync_service_password_unittest.cc 350 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/chromium/chrome/browser/importer/
firefox2_importer.cc 353 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]);
firefox3_importer.cc 319 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/webkit/Source/WebCore/svg/
SVGFont.cpp 60 // 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.last()))
    [all...]
  /external/chromium/chrome/browser/webdata/
web_data_service.cc 877 std::vector<PasswordForm*> forms; local
878 db_->GetLoginsTable()->GetLogins(request->GetArgument(), &forms);
880 new WDResult<std::vector<PasswordForm*> >(PASSWORD_RESULT, forms));
888 std::vector<PasswordForm*> forms; local
889 db_->GetLoginsTable()->GetAllLogins(&forms, false);
891 new WDResult<std::vector<PasswordForm*> >(PASSWORD_RESULT, forms));
    [all...]
  /external/webkit/Source/WebKit/win/
DOMHTMLClasses.cpp 4 * Redistribution and use in source and binary forms, with or without
300 HRESULT STDMETHODCALLTYPE DOMHTMLDocument::forms( function in class:DOMHTMLDocument
308 *collection = DOMHTMLCollection::createInstance(htmlDoc->forms().get());
    [all...]
  /external/webkit/Source/WebCore/bindings/objc/
PublicDOMInterfaces.h 4 // Redistribution and use in source and binary forms, with or without
86 @property(readonly, retain) DOMHTMLCollection *forms; variable
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebFrameImpl.cpp 4 * Redistribution and use in source and binary forms, with or without
702 void WebFrameImpl::forms(WebVector<WebFormElement>& results) const function in class:WebKit::WebFrameImpl
707 RefPtr<HTMLCollection> forms = m_frame->document()->forms();
708 size_t sourceLength = forms->length();
712 Node* node = forms->item(i);
1025 // We use the previous item here because documentState (filled-out forms)
    [all...]
  /external/webkit/Source/WebCore/dom/
Document.cpp 4229 PassRefPtr<HTMLCollection> Document::forms() function in class:WebCore::Document
    [all...]

Completed in 322 milliseconds