Searched refs:form (Results 76 - 100 of 501) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/web/
H A DWebSearchableFormData.cpp10 * * Redistributions in binary form must reproduce the above
52 // Gets the encoding for the form.
53 void GetFormEncoding(const HTMLFormElement* form, WTF::TextEncoding* encoding) argument
55 String str(form->getAttribute(HTMLNames::accept_charsetAttr));
64 if (!form->document().loader())
66 *encoding = WTF::TextEncoding(form->document().encoding());
70 bool IsHTTPFormSubmit(const HTMLFormElement* form) argument
73 String action(form->action());
75 return form->document().completeURL(action.isNull() ? "" : action).protocolIs("http");
78 // If the form doe
80 GetButtonToActivate(HTMLFormElement* form) argument
155 findSuitableSearchInputElement(const HTMLFormElement* form) argument
197 buildSearchString(const HTMLFormElement* form, Vector<char>* encodedString, WTF::TextEncoding* encoding, const HTMLInputElement* textElement) argument
236 WebSearchableFormData(const WebFormElement& form, const WebInputElement& selectedInputElement) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLButtonElement.cpp41 inline HTMLButtonElement::HTMLButtonElement(Document& document, HTMLFormElement* form) argument
42 : HTMLFormControlElement(buttonTag, document, form)
49 PassRefPtrWillBeRawPtr<HTMLButtonElement> HTMLButtonElement::create(Document& document, HTMLFormElement* form) argument
51 return adoptRefWillBeNoop(new HTMLButtonElement(document, form));
113 if (form() && m_type == SUBMIT) {
115 form()->prepareForSubmission(event);
119 if (form() && m_type == RESET) {
120 form()->reset();
156 if (!isDisabledFormControl() && form() && (m_type == SUBMIT || m_type == RESET))
H A DDOMFormData.h10 * * Redistributions in binary form must reproduce the above
51 static PassRefPtrWillBeRawPtr<DOMFormData> create(HTMLFormElement* form = 0)
53 return adoptRefWillBeNoop(new DOMFormData(form));
H A DHTMLFormControlElementWithState.cpp63 if (!form())
65 return form()->shouldAutocomplete();
79 // We don't save/restore control state in a form with autocomplete=off.
H A DHTMLFieldSetElement.cpp41 inline HTMLFieldSetElement::HTMLFieldSetElement(Document& document, HTMLFormElement* form) argument
42 : HTMLFormControlElement(fieldsetTag, document, form)
48 PassRefPtrWillBeRawPtr<HTMLFieldSetElement> HTMLFieldSetElement::create(Document& document, HTMLFormElement* form) argument
50 return adoptRefWillBeNoop(new HTMLFieldSetElement(document, form));
H A DHTMLKeygenElement.cpp45 HTMLKeygenElement::HTMLKeygenElement(Document& document, HTMLFormElement* form) argument
46 : HTMLFormControlElementWithState(keygenTag, document, form)
51 PassRefPtrWillBeRawPtr<HTMLKeygenElement> HTMLKeygenElement::create(Document& document, HTMLFormElement* form) argument
53 RefPtrWillBeRawPtr<HTMLKeygenElement> keygen = adoptRefWillBeNoop(new HTMLKeygenElement(document, form));
H A DHTMLOutputElement.cpp10 * * Redistributions in binary form must reproduce the above
39 inline HTMLOutputElement::HTMLOutputElement(Document& document, HTMLFormElement* form) argument
40 : HTMLFormControlElement(HTMLNames::outputTag, document, form)
48 PassRefPtrWillBeRawPtr<HTMLOutputElement> HTMLOutputElement::create(Document& document, HTMLFormElement* form) argument
50 return adoptRefWillBeNoop(new HTMLOutputElement(document, form));
/external/chromium_org/chrome/browser/password_manager/
H A Dnative_backend_kwallet_x.cc269 const PasswordForm& form) {
275 GetLoginsList(&forms.get(), form.signon_realm, wallet_handle);
285 if (CompareForms(form, *forms[i], false)) {
288 *forms[i] = form;
293 forms.push_back(new PasswordForm(form));
295 password_manager::PasswordStoreChange::ADD, form));
297 bool ok = SetLoginsList(forms.get(), form.signon_realm, wallet_handle);
305 const PasswordForm& form,
314 GetLoginsList(&forms.get(), form.signon_realm, wallet_handle);
318 if (CompareForms(form, *form
268 AddLogin( const PasswordForm& form) argument
304 UpdateLogin( const PasswordForm& form, password_manager::PasswordStoreChangeList* changes) argument
335 RemoveLogin(const PasswordForm& form) argument
374 GetLogins(const PasswordForm& form, PasswordFormList* forms) argument
713 const PasswordForm* form = *it; local
[all...]
H A Dpassword_store_mac.h55 const autofill::PasswordForm& form) OVERRIDE;
57 const autofill::PasswordForm& form) OVERRIDE;
59 const autofill::PasswordForm& form) OVERRIDE;
67 const autofill::PasswordForm& form,
77 // Adds the given form to the Keychain if it's something we want to store
80 bool AddToKeychainIfNecessary(const autofill::PasswordForm& form);
82 // Returns true if our database contains a form that exactly matches the given
83 // keychain form.
85 const autofill::PasswordForm& form);
H A Dpassword_store_mac.cc213 // The time string is of the form "yyyyMMddHHmmss'Z", in UTC time.
239 PasswordForm* form,
241 DCHECK(form);
283 &(form->password_value));
298 &(form->username_value));
313 form->ssl_valid = (protocol == kSecProtocolTypeHTTPS);
320 form->scheme = SchemeForAuthType(auth_type);
331 &form->date_created);
336 form->blacklisted_by_user = true;
346 if (extract_password_data && (form
237 FillPasswordFormFromKeychainItem(const AppleKeychain& keychain, const SecKeychainItemRef& keychain_item, PasswordForm* form, bool extract_password_data) argument
406 PasswordForm* form = *i; local
615 PasswordForm* form = new PasswordForm(); local
664 AddPassword(const PasswordForm& form) argument
708 RemovePassword(const PasswordForm& form) argument
728 PasswordForm* form = new PasswordForm(); local
739 KeychainItemForForm( const PasswordForm& form) argument
875 AddLoginImpl( const PasswordForm& form) argument
885 UpdateLoginImpl( const PasswordForm& form) argument
906 RemoveLoginImpl( const PasswordForm& form) argument
1003 GetLoginsImpl( const autofill::PasswordForm& form, AuthorizationPromptPolicy prompt_policy, const ConsumerCallbackRunner& callback_runner) argument
1097 AddToKeychainIfNecessary(const PasswordForm& form) argument
1105 DatabaseHasFormMatchingKeychainForm( const autofill::PasswordForm& form) argument
[all...]
H A Dpassword_store_x_unittest.cc62 virtual PasswordStoreChangeList AddLogin(const PasswordForm& form) OVERRIDE {
65 virtual bool UpdateLogin(const PasswordForm& form,
69 virtual bool RemoveLogin(const PasswordForm& form) OVERRIDE { return false; }
85 virtual bool GetLogins(const PasswordForm& form,
102 virtual PasswordStoreChangeList AddLogin(const PasswordForm& form) OVERRIDE {
103 all_forms_.push_back(form);
104 PasswordStoreChange change(PasswordStoreChange::ADD, form);
108 virtual bool UpdateLogin(const PasswordForm& form,
111 if (CompareForms(all_forms_[i], form, true)) {
112 all_forms_[i] = form;
[all...]
H A Dpassword_store_win.h44 const autofill::PasswordForm& form,
49 const autofill::PasswordForm& form,
H A Dpassword_store_mac_unittest.cc91 // Basic HTML form.
95 // HTML form with path.
99 // Secure HTML form with path.
184 PasswordForm* form = new PasswordForm(); local
185 form->scheme = form_data.scheme;
186 form->preferred = form_data.preferred;
187 form->ssl_valid = form_data.ssl_valid;
188 form->date_created = base::Time::FromDoubleT(form_data.creation_time);
189 form->date_synced = form
235 PasswordForm* form = forms[i]; local
320 PasswordForm form; local
359 PasswordForm form; local
458 SetPasswordFormPath(PasswordForm* form, const char* path) argument
466 SetPasswordFormPort(PasswordForm* form, const char* port) argument
475 SetPasswordFormRealm(PasswordForm* form, const char* realm) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DRadioInputType.cpp85 // We can only stay within the form's children if the form hasn't been demoted to a leaf because
89 // Once we encounter a form element, we know we're through.
96 if (inputElement->form() != element().form())
134 if (focusedInput.isRadioButton() && focusedInput.form() == element().form() && focusedInput.name() == element().name())
175 && checkedRadioButton->form() == element().form()
H A DSubmitInputType.cpp11 * * Redistributions in binary form must reproduce the above
71 if (element->isDisabledFormControl() || !element->form())
74 element->form()->prepareForSubmission(event); // Event handlers can run.
/external/chromium_org/third_party/openssl/openssl/crypto/ec/
H A Dec_print.c12 * 2. Redistributions in binary form must reproduce the above copyright
31 * 6. Redistributions of any form whatsoever must retain the following
61 point_conversion_form_t form,
68 buf_len = EC_POINT_point2oct(group, point, form,
76 if (!EC_POINT_point2oct(group, point, form, buf, buf_len, ctx))
137 point_conversion_form_t form,
144 buf_len = EC_POINT_point2oct(group, point, form,
152 if (!EC_POINT_point2oct(group, point, form, buf, buf_len, ctx))
59 EC_POINT_point2bn(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, BIGNUM *ret, BN_CTX *ctx) argument
135 EC_POINT_point2hex(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, BN_CTX *ctx) argument
/external/openssl/crypto/ec/
H A Dec_print.c12 * 2. Redistributions in binary form must reproduce the above copyright
31 * 6. Redistributions of any form whatsoever must retain the following
61 point_conversion_form_t form,
68 buf_len = EC_POINT_point2oct(group, point, form,
76 if (!EC_POINT_point2oct(group, point, form, buf, buf_len, ctx))
137 point_conversion_form_t form,
144 buf_len = EC_POINT_point2oct(group, point, form,
152 if (!EC_POINT_point2oct(group, point, form, buf, buf_len, ctx))
59 EC_POINT_point2bn(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, BIGNUM *ret, BN_CTX *ctx) argument
135 EC_POINT_point2hex(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, BN_CTX *ctx) argument
/external/chromium_org/components/password_manager/core/browser/
H A Dpassword_store.cc89 void PasswordStore::AddLogin(const PasswordForm& form) { argument
92 base::Bind(&PasswordStore::AddLoginImpl, this, form)));
95 void PasswordStore::UpdateLogin(const PasswordForm& form) { argument
98 base::Bind(&PasswordStore::UpdateLoginImpl, this, form)));
101 void PasswordStore::RemoveLogin(const PasswordForm& form) { argument
104 base::Bind(&PasswordStore::RemoveLoginImpl, this, form)));
127 const PasswordForm& form,
138 if (form.scheme == PasswordForm::SCHEME_HTML &&
139 (form.signon_realm == "http://www.google.com" ||
140 form
126 GetLogins( const PasswordForm& form, AuthorizationPromptPolicy prompt_policy, PasswordStoreConsumer* consumer) argument
[all...]
H A Dtest_password_store.h49 const autofill::PasswordForm& form) OVERRIDE;
51 const autofill::PasswordForm& form) OVERRIDE;
53 const autofill::PasswordForm& form) OVERRIDE;
55 const autofill::PasswordForm& form,
/external/elfutils/0.153/libdw/
H A Ddwarf_formudata.c74 if (attr->form == DW_FORM_sec_offset)
83 switch (attr->form)
89 attr->form == DW_FORM_data4 ? 4 : 8,
125 switch (attr->form)
142 if (attr->form == DW_FORM_sec_offset
190 if (attr->form == DW_FORM_sec_offset)
199 attr->form == DW_FORM_data4 ? 4 : 8,
210 attr->form == DW_FORM_data4 ? 4 : 8,
H A Ddwarf_attr.c70 &result->form);
H A Ddwarf_formaddr.c67 if (unlikely (attr->form != DW_FORM_addr))
/external/smack/src/org/jivesoftware/smackx/search/
H A DSimpleUserSearch.java32 * regardless of the form of the data returned from the server.
38 private Form form; field in class:SimpleUserSearch
41 public void setForm(Form form) { argument
42 this.form = form;
61 if (form == null) {
62 form = Form.getFormFrom(this);
65 if (form == null) {
69 Iterator<FormField> fields = form.getFields();
/external/doclava/res/assets/templates/components/
H A Dsearch_box.cs5 <form accept-charset="utf-8" class="gsc-search-box"
30 </form>
/external/chromium_org/components/autofill/core/common/
H A Dpassword_form.h18 // The PasswordForm struct encapsulates information about a login form,
19 // which can be an HTML form or a dialog with username/password text fields.
21 // The Web Data database stores saved username/passwords and associated form
28 // HTML or dialog form. As one might expect, the more data contained in one
30 // in matching it against the actual form it was saved on, and autofill
41 // Enum to differentiate between HTML form based authentication, and dialogs
62 // original stored login/pass and the current observed form if all these
71 // (where .com is the public suffix) and the observed form is
76 // The URL (minus query parameters) containing the form. This is the primary
79 // good fit for a particular form o
[all...]

Completed in 548 milliseconds

1234567891011>>