Searched defs:form (Results 1 - 25 of 218) sorted by relevance

123456789

/external/chromium_org/chrome/browser/sync/test/integration/
H A Dsingle_client_passwords_sync_test.cc34 PasswordForm form = CreateTestPasswordForm(0); local
35 AddLogin(GetVerifierPasswordStore(), form); local
37 AddLogin(GetPasswordStore(0), form);
H A Dmultiple_client_passwords_sync_test.cc50 PasswordForm form = CreateTestPasswordForm(i); local
51 AddLogin(GetPasswordStore(i), form); local
H A Dtwo_client_passwords_sync_test.cc60 PasswordForm form = CreateTestPasswordForm(0); local
61 AddLogin(GetVerifierPasswordStore(), form); local
63 AddLogin(GetPasswordStore(0), form);
94 PasswordForm form = CreateTestPasswordForm(0); local
95 AddLogin(GetPasswordStore(0), form);
106 PasswordForm form = CreateTestPasswordForm(0); local
107 AddLogin(GetVerifierPasswordStore(), form); local
108 AddLogin(GetPasswordStore(0), form);
113 form.password_value = base::ASCIIToUTF16("new_password");
114 UpdateLogin(GetVerifierPasswordStore(), form); local
[all...]
/external/elfutils/0.153/libdw/
H A Ddwarf_getabbrevattr.c75 unsigned int form; local
81 /* Attribute code and form are encoded as ULEB128 values. */
83 get_uleb128 (form, attrp);
86 if (name == 0 && form == 0)
95 *formp = form;
H A Dlibdw_form.c1 /* Helper functions for form handling.
63 __libdw_form_val_len (Dwarf *dbg, struct Dwarf_CU *cu, unsigned int form, argument
70 switch (form)
/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DFormState.cpp10 * 2. Redistributions in binary form must reproduce the above copyright
37 inline FormState::FormState(HTMLFormElement& form, FormSubmissionTrigger formSubmissionTrigger) argument
38 : m_form(form)
39 , m_sourceDocument(form.document())
44 PassRefPtrWillBeRawPtr<FormState> FormState::create(HTMLFormElement& form, FormSubmissionTrigger formSubmissionTrigger) argument
46 return adoptRefWillBeNoop(new FormState(form, formSubmissionTrigger));
H A DFormState.h10 * 2. Redistributions in binary form must reproduce the above copyright
51 HTMLFormElement* form() const { return m_form.get(); } function in class:blink::FINAL
/external/chromium_org/tools/page_cycler/common/
H A Dstart.js46 var form = document.createElement('FORM');
47 form.onsubmit = function(e) {
53 form.appendChild(label);
60 form.appendChild(input);
65 form.appendChild(input);
67 document.body.appendChild(form);
/external/chromium_org/chrome/renderer/autofill/
H A Dform_autocomplete_browsertest.cc23 // Tests that submitting a form generates a FormSubmitted message
24 // with the form fields.
26 // Load a form.
27 LoadHTML("<html><form id='myForm'><input name='fname' value='Rick'/>"
28 "<input name='lname' value='Deckard'/></form></html>");
30 // Submit the form.
52 // Tests that submitting a form that has autocomplete="off" generates a
55 // Load a form.
56 LoadHTML("<html><form id='myForm' autocomplete='off'>"
59 "</form></htm
123 blink::WebFormElement form = element.to<blink::WebFormElement>(); local
[all...]
/external/chromium_org/components/autofill/core/browser/
H A Dtest_autofill_external_delegate.cc14 FormData form; local
19 autofill_external_delegate->OnQuery(query_id, form, field, bounds, false);
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DDOMFormData.cpp10 * * Redistributions in binary form must reproduce the above
46 DOMFormData::DOMFormData(HTMLFormElement* form) argument
49 if (!form)
52 for (unsigned i = 0; i < form->associatedElements().size(); ++i) {
53 FormAssociatedElement* element = form->associatedElements()[i];
H A DFormAssociatedElement.h53 HTMLFormElement* form() const { return m_form.get(); } function in class:blink::FormAssociatedElement
H A DHTMLLegendElement.cpp52 // Find first form element inside the fieldset that is not a legend element.
73 HTMLFormElement* HTMLLegendElement::form() const function in class:blink::HTMLLegendElement
76 // its parent, then the form attribute must return the same value as the
77 // form attribute on that fieldset element. Otherwise, it must return null.
/external/smack/src/org/jivesoftware/smackx/pubsub/
H A DConfigurationEvent.java24 * associates a configuration form to the node which was configured. The form
31 private ConfigureForm form; field in class:ConfigurationEvent
41 form = configForm;
46 return form;
H A DFormType.java25 form, submit, cancel, result; enum constant in enum:FormType
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
H A DAttributeCertificateIssuer.java20 final ASN1Encodable form; field in class:AttributeCertificateIssuer
29 form = issuer.getIssuer();
34 form = new V2Form(new GeneralNames(new GeneralName(principal)));
41 if (form instanceof V2Form)
43 name = ((V2Form)form).getIssuerName();
47 name = (GeneralNames)form;
87 return new AttributeCertificateIssuer(AttCertIssuer.getInstance(form));
104 return this.form.equals(other.form);
109 return this.form
[all...]
/external/chromium_org/components/autofill/core/common/
H A Dautofill_data_validation.cc43 bool IsValidFormData(const FormData& form) { argument
44 if (!IsValidString16(form.name) ||
45 !IsValidGURL(form.origin) ||
46 !IsValidGURL(form.action))
49 if (form.fields.size() > kMaxListSize)
52 for (std::vector<FormFieldData>::const_iterator it = form.fields.begin();
53 it != form.fields.end(); ++it) {
61 bool IsValidPasswordFormFillData(const PasswordFormFillData& form) { argument
62 if (!IsValidFormData(form.basic_data) ||
63 !IsValidString(form
[all...]
H A Dpassword_form.cc32 bool PasswordForm::operator==(const PasswordForm& form) const {
33 return signon_realm == form.signon_realm &&
34 origin == form.origin &&
35 action == form.action &&
36 submit_element == form.submit_element &&
37 username_element == form.username_element &&
38 username_value == form.username_value &&
39 other_possible_usernames == form.other_possible_usernames &&
40 password_element == form.password_element &&
41 password_value == form
64 operator <<(std::ostream& os, const PasswordForm& form) argument
[all...]
H A Dsave_password_progress_logger_unittest.cc46 PasswordForm form; local
47 form.action = GURL("http://example.org/verysecret?verysecret");
48 form.password_element = UTF8ToUTF16("pwdelement");
49 form.password_value = UTF8ToUTF16("verysecret");
50 form.username_value = UTF8ToUTF16("verysecret");
51 logger.LogPasswordForm(SavePasswordProgressLogger::STRING_MESSAGE, form);
63 PasswordForm form; local
70 form.username_element = UTF8ToUTF16(kHTMLInside);
71 form.password_element = UTF8ToUTF16(kIPAddressInside);
72 form
[all...]
/external/chromium_org/components/password_manager/core/browser/
H A Dpassword_form_data.cc15 PasswordForm* form = new PasswordForm(); local
16 form->scheme = form_data.scheme;
17 form->preferred = form_data.preferred;
18 form->ssl_valid = form_data.ssl_valid;
19 form->date_created = base::Time::FromDoubleT(form_data.creation_time);
21 form->signon_realm = std::string(form_data.signon_realm);
23 form->origin = GURL(form_data.origin);
25 form->action = GURL(form_data.action);
27 form->submit_element = base::WideToUTF16(form_data.submit_element);
29 form
[all...]
H A Dpassword_generation_manager.cc29 autofill::FormStructure* form = *form_it; local
31 form->begin(); field_it != form->end(); ++field_it) {
34 account_creation_forms.push_back(form->ToFormData());
H A Dpassword_manager_client.cc38 const autofill::PasswordForm& form) {
37 GetAuthorizationPromptPolicy( const autofill::PasswordForm& form) argument
H A Dpassword_store_change.h22 PasswordStoreChange(Type type, const autofill::PasswordForm& form) argument
23 : type_(type), form_(form) {
28 const autofill::PasswordForm& form() const { return form_; } function in class:password_manager::PasswordStoreChange
32 form().signon_realm == other.form().signon_realm &&
33 form().origin == other.form().origin &&
34 form().action == other.form().action &&
35 form()
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/code/form/
H A DForm10x.java17 package com.android.dx.dex.code.form;
H A DForm3rc.java17 package com.android.dx.dex.code.form;

Completed in 418 milliseconds

123456789