HomeSort by relevance Sort by last modified time
    Searched defs:form (Results 1 - 25 of 246) sorted by null

1 2 3 4 5 6 7 8 910

  /external/chromium_org/chrome/browser/sync/test/integration/
single_client_passwords_sync_test.cc 34 PasswordForm form = CreateTestPasswordForm(0); local
35 AddLogin(GetVerifierPasswordStore(), form); local
37 AddLogin(GetPasswordStore(0), form);
multiple_client_passwords_sync_test.cc 50 PasswordForm form = CreateTestPasswordForm(i); local
51 AddLogin(GetPasswordStore(i), form); local
two_client_passwords_sync_test.cc 60 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/
dwarf_getabbrevattr.c 75 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;
  /external/chromium_org/components/autofill/core/browser/
test_autofill_external_delegate.cc 14 FormData form; local
19 autofill_external_delegate->OnQuery(query_id, form, field, bounds, false);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLLegendElement.cpp 55 // Find first form element inside the fieldset that is not a legend element.
76 HTMLFormElement* HTMLLegendElement::form() const function in class:WebCore::HTMLLegendElement
79 // its parent, then the form attribute must return the same value as the
80 // form attribute on that fieldset element. Otherwise, it must return null.
  /external/chromium_org/tools/page_cycler/common/
start.js 46 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);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/form/
FormPageResultListener.java 17 package com.android.tv.settings.form;
FormResultListener.java 17 package com.android.tv.settings.form;
20 * Listens for a Form to be completed or cancelled.
25 * Called when the form has been completed.
30 * Called when the form has been cancelled.
  /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" does not generate a
55 // Load a form.
56 LoadHTML("<html><form id='myForm' autocomplete='off'>"
59 "</form></html>")
107 blink::WebFormElement form = element.to<blink::WebFormElement>(); local
    [all...]
  /external/chromium_org/components/password_manager/core/browser/
password_generation_manager.cc 29 autofill::FormStructure* form = *form_it; local
31 form->begin(); field_it != form->end(); ++field_it) {
34 account_creation_forms.push_back(form->ToFormData());
password_form_data.cc 15 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->username_element = base::WideToUTF16(form_data.username_element)
    [all...]
password_store_change.h 22 PasswordStoreChange(Type type, const autofill::PasswordForm& form)
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().submit_element == other.form().submit_element &
    [all...]
  /external/smack/src/org/jivesoftware/smackx/pubsub/
ConfigurationEvent.java 24 * 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;
FormType.java 16 import org.jivesoftware.smackx.Form;
19 * Defines the allowable types for a {@link Form}
25 form, submit, cancel, result; enum constant in enum:FormType
  /dalvik/dexgen/src/com/android/dexgen/dex/code/form/
Form10x.java 17 package com.android.dexgen.dex.code.form;
Form11x.java 17 package com.android.dexgen.dex.code.form;
Form22x.java 17 package com.android.dexgen.dex.code.form;
Form23x.java 17 package com.android.dexgen.dex.code.form;
Form32x.java 17 package com.android.dexgen.dex.code.form;
SpecialFormat.java 17 package com.android.dexgen.dex.code.form;
  /dalvik/dx/src/com/android/dx/dex/code/form/
Form10x.java 17 package com.android.dx.dex.code.form;
Form30t.java 17 package com.android.dx.dex.code.form;
SpecialFormat.java 17 package com.android.dx.dex.code.form;
  /external/chromium_org/components/autofill/core/common/
save_password_progress_logger_unittest.cc 46 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.old_password_element = UTF8ToUTF16(kSpecialCharsInside)
    [all...]

Completed in 478 milliseconds

1 2 3 4 5 6 7 8 910