HomeSort by relevance Sort by last modified time
    Searched refs:form (Results 201 - 225 of 2701) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/components/autofill/content/renderer/
password_form_conversion_utils.cc 34 // the new password (e.g., on a sign-up or change password form), if any.
71 // confirmation. This can be either a sign-up form or a password change
72 // form that does not ask for the old password.
88 // New password is the duplicated one, and comes second; or empty form
109 // Get information about a login form encapsulated in a PasswordForm struct.
110 void GetPasswordForm(const WebFormElement& form, PasswordForm* password_form) {
120 form.getFormControlElements(control_elements);
154 // This makes us less confident that we have understood the form. We
159 // autofill, not for form identification, and blank autofill entries
198 GURL full_origin(form.document().url())
    [all...]
password_autofill_agent.h 41 // Fills the username and password fields of this form with the given values.
47 // Previews the username and password fields of this form with the given
55 // found for the form.
63 // Called when new form controls are inserted.
144 const blink::WebFormElement& form) OVERRIDE;
146 const blink::WebFormElement& form) OVERRIDE;
202 // If |provisionally_saved_forms_| contains a form for |current_frame| or its
207 // Extracts a PasswordForm from |form| and saves it as
210 const blink::WebFormElement& form,
224 // Set if the user might be submitting a password form on the current page
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
FormAssociatedElement.cpp 104 // If the form and element are both in the same tree, preserve the connection to the form.
105 // Otherwise, null out our form and remove ourselves from the form's list of elements.
113 // 3. If the element is reassociateable, has a form content attribute, and
117 // case-sensitively equal to the element's form content attribute's
118 // value is a form element, then associate the form-associated element
119 // with that form element.
120 // 3.2. Abort the "reset the form owner" steps
    [all...]
HTMLLabelElement.cpp 41 inline HTMLLabelElement::HTMLLabelElement(Document& document, HTMLFormElement* form)
44 FormAssociatedElement::associateByParser(form);
47 PassRefPtrWillBeRawPtr<HTMLLabelElement> HTMLLabelElement::create(Document& document, HTMLFormElement* form)
49 RefPtrWillBeRawPtr<HTMLLabelElement> labelElement = adoptRefWillBeNoop(new HTMLLabelElement(document, form));
63 // Search the children and descendants of the label element for a form element.
65 // the form element must be "labelable form-associated element".
83 return FormAssociatedElement::form();
HTMLSelectElement.idl 27 [ImplementedAs=formOwner] readonly attribute HTMLFormElement form;
  /external/openssl/apps/
ec.c 15 * 2. Redistributions in binary form must reproduce the above copyright
34 * 6. Redistributions of any form whatsoever must retain the following
80 * -conv_form arg - specifies the point encoding form
99 point_conversion_form_t form = POINT_CONVERSION_UNCOMPRESSED; local
170 form = POINT_CONVERSION_COMPRESSED;
172 form = POINT_CONVERSION_UNCOMPRESSED;
174 form = POINT_CONVERSION_HYBRID;
233 "point conversion form \n");
333 EC_KEY_set_conv_form(eckey, form);
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
Dops.java 19 import com.android.dexgen.dex.code.form.Form10t;
20 import com.android.dexgen.dex.code.form.Form10x;
21 import com.android.dexgen.dex.code.form.Form11n;
22 import com.android.dexgen.dex.code.form.Form11x;
23 import com.android.dexgen.dex.code.form.Form12x;
24 import com.android.dexgen.dex.code.form.Form20t;
25 import com.android.dexgen.dex.code.form.Form21c;
26 import com.android.dexgen.dex.code.form.Form21h;
27 import com.android.dexgen.dex.code.form.Form21s;
28 import com.android.dexgen.dex.code.form.Form21t
    [all...]
  /external/chromium_org/components/password_manager/core/browser/
password_form_manager_unittest.cc 64 const autofill::PasswordForm& form) OVERRIDE {
65 if (form == form_to_filter_)
78 void SetFormToFilter(const autofill::PasswordForm& form) {
79 form_to_filter_ = form;
181 // Heap-allocated form is owned by p.
200 void SanitizePossibleUsernames(PasswordFormManager* p, PasswordForm* form) {
201 p->SanitizePossibleUsernames(form);
204 bool IgnoredResult(PasswordFormManager* p, PasswordForm* form) {
205 return p->ShouldIgnoreResult(*form);
230 // User submits credentials for the observed form
    [all...]
  /external/chromium_org/chrome/browser/metrics/variations/
generate_resources_map.py 44 Scans the input string for lines of the form "#define NAME INDEX" and returns
60 The input string conaints lines of the form "#define NAME INDEX". The returned
64 resources_content: The input string to process, contains lines of the form
130 resources_content: The input string to process, contains lines of the form
  /external/chromium_org/chrome/browser/resources/instant/
instant.js 17 /** List of fields used to dynamically build form. **/
39 * Dynamically builds web-form based on FIELDS list.
40 * @return {string} The form's HTML.
70 $('instant-form').appendChild(row);
75 * Initialize the form by adding 'onChange' listeners to all fields.
171 * Build and initialize the configuration form.
  /external/chromium_org/chrome/renderer/autofill/
form_autocomplete_browsertest.cc 23 // 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></html>")
123 blink::WebFormElement form = element.to<blink::WebFormElement>(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
UiElementPart.java 92 * Initializes the form part.
94 * This is called by the owning managed form as soon as the part is added to the form,
98 public void initialize(IManagedForm form) {
99 super.initialize(form);
100 createFormControls(form);
125 * <code>initialize</code> (i.e. right after the form part is added to the managed form.)
129 * @param managedForm The owner managed form
154 * @param managedForm The owner managed form
    [all...]
  /external/chromium_org/chrome/browser/password_manager/
native_backend_gnome_x_unittest.cc 289 const PasswordForm& expected = expected_list[i].form();
290 const PasswordForm& actual = actual_list[i].form();
443 const PasswordForm& form,
447 EXPECT_EQ(form.origin.spec(), item->display_name);
448 EXPECT_EQ(UTF16ToUTF8(form.password_value), item->password);
450 CheckStringAttribute(item, "origin_url", form.origin.spec());
451 CheckStringAttribute(item, "action_url", form.action.spec());
453 UTF16ToUTF8(form.username_element));
455 UTF16ToUTF8(form.username_value));
457 UTF16ToUTF8(form.password_element))
    [all...]
password_store_win_unittest.cc 228 scoped_ptr<PasswordForm> form(CreatePasswordFormFromData(form_data));
230 // The returned form will not have 'action' or '*_element' fields set. This
252 store_->GetLogins(*form, PasswordStore::DISALLOW_PROMPT, &consumer);
275 scoped_ptr<PasswordForm> form(CreatePasswordFormFromData(form_data));
278 store_->GetLogins(*form, PasswordStore::DISALLOW_PROMPT, &consumer);
323 scoped_ptr<PasswordForm> form(CreatePasswordFormFromData(form_data));
345 store_->GetLogins(*form, PasswordStore::DISALLOW_PROMPT, &password_consumer);
380 scoped_ptr<PasswordForm> form(CreatePasswordFormFromData(form_data));
394 store_->GetLogins(*form, PasswordStore::DISALLOW_PROMPT, &consumer);
  /external/chromium_org/components/autofill/content/browser/
content_autofill_driver_unittest.cc 259 FormData form; local
260 test::CreateTestAddressFormData(&form);
261 FormStructure form_structure(form);
271 FormData form; local
272 test::CreateTestAddressFormData(&form);
273 FormStructure form_structure(form);
  /external/chromium_org/third_party/WebKit/Source/core/loader/
FormSubmission.cpp 10 * * Redistributions in binary form must reproduce the above
94 if (equalIgnoringCase(type, "multipart/form-data"))
95 return AtomicString("multipart/form-data", AtomicString::ConstructFromLiteral);
98 return AtomicString("application/x-www-form-urlencoded", AtomicString::ConstructFromLiteral);
104 m_isMultiPartForm = (m_encodingType == "multipart/form-data");
164 PassRefPtrWillBeRawPtr<FormSubmission> FormSubmission::create(HTMLFormElement* form, const Attributes& attributes, PassRefPtrWillBeRawPtr<Event> event, FormSubmissionTrigger trigger)
166 ASSERT(form);
198 Document& document = form->document();
207 encodingType = AtomicString("application/x-www-form-urlencoded", AtomicString::ConstructFromLiteral);
215 for (unsigned i = 0; i < form->associatedElements().size(); ++i)
    [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-crbug-178790.js 8 // * Redistributions in binary form must reproduce the above
28 // Create a regexp in the form of a?a?...a? so that fully
43 // Create a regexp in the form of ((..(a)a..)a.
  /external/oauth/core/src/main/java/net/oauth/client/
OAuthClient.java 279 byte[] form = OAuth.formEncode(request.getParameters()).getBytes(
283 headers.add(new OAuth.Parameter(CONTENT_LENGTH, form.length + ""));
284 body = new ByteArrayInputStream(form);
301 byte[] form = OAuth.formEncode(others).getBytes(
305 headers.add(new OAuth.Parameter(CONTENT_LENGTH, form.length
307 body = new ByteArrayInputStream(form);
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/static/css/
main.css 74 .form th {
  /external/chromium-trace/trace-viewer/src/tracing/
record_selection_dialog.css 26 .record-selection-dialog form {
  /external/chromium_org/chrome/browser/sync/test/integration/
multiple_client_passwords_sync_test.cc 50 PasswordForm form = CreateTestPasswordForm(i); local
51 AddLogin(GetPasswordStore(i), form); local
  /external/chromium_org/chrome/browser/ui/cocoa/passwords/
manage_password_item_view_controller.h 56 - (id)initWithForm:(const autofill::PasswordForm&)form
73 - (id)initWithForm:(const autofill::PasswordForm&)form;
  /external/chromium_org/content/public/renderer/
render_view_observer.h 75 const blink::WebFormElement& form) {}
77 const blink::WebFormElement& form) {}
  /external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/
reset.css 15 fieldset, form, label, legend,
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
nomem64.asm 5 mov rax, 5 ; optimized to signed 32-bit form

Completed in 1734 milliseconds

1 2 3 4 5 6 7 891011>>