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

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/components/password_manager/core/browser/
test_password_store.h 49 const autofill::PasswordForm& form) OVERRIDE;
51 const autofill::PasswordForm& form) OVERRIDE;
53 const autofill::PasswordForm& form) OVERRIDE;
55 const autofill::PasswordForm& form,
login_database.h 36 // Adds |form| to the list of remembered password forms. Returns the list of
38 // then the REMOVE is associated with the form that was added. Thus only the
39 // primary key columns contain the values associated with the removed form.
40 PasswordStoreChangeList AddLogin(const autofill::PasswordForm& form);
42 // Updates existing password form. Returns the list of applied changes
46 PasswordStoreChangeList UpdateLogin(const autofill::PasswordForm& form);
48 // Removes |form| from the list of remembered password forms.
49 bool RemoveLogin(const autofill::PasswordForm& form);
64 // The list will contain all possibly relevant entries to the observed |form|,
66 bool GetLogins(const autofill::PasswordForm& form,
    [all...]
password_store_default.cc 35 const PasswordForm& form) {
37 return login_db_->AddLogin(form);
41 const PasswordForm& form) {
43 return login_db_->UpdateLogin(form);
47 const PasswordForm& form) {
50 if (login_db_->RemoveLogin(form))
51 changes.push_back(PasswordStoreChange(PasswordStoreChange::REMOVE, form));
94 const autofill::PasswordForm& form,
98 login_db_->GetLogins(form, &matched_forms);
password_manager.cc 122 void PasswordManager::SetFormHasGeneratedPassword(const PasswordForm& form) {
129 if ((*iter)->DoesManage(form) ==
138 bool ssl_valid = form.origin.SchemeIsSecure();
140 new PasswordFormManager(this, client_, driver_, form, ssl_valid);
156 void PasswordManager::ProvisionallySavePassword(const PasswordForm& form) {
164 form);
171 RecordFailure(SAVING_DISABLED, form.origin.host(), logger.get());
176 if ((form.new_password_element.empty() && form.password_value.empty()) ||
177 (!form.new_password_element.empty() && form.new_password_value.empty()))
    [all...]
password_syncable_service_unittest.cc 70 MATCHER_P(PasswordIs, form, "") {
74 GetPasswordSpecifics(SyncDataFromPassword(form));
97 << form << '\n'
105 autofill::PasswordForm form = PasswordFromSpecifics( local
111 Matches(PasswordIs(password))(form)));
116 ACTION_P(AppendForm, form) {
117 arg0->push_back(new autofill::PasswordForm(form));
231 autofill::PasswordForm form; local
232 form.signon_realm = kSignonRealm;
240 .WillOnce(AppendForm(form));
277 autofill::PasswordForm form; local
301 autofill::PasswordForm form; local
478 autofill::PasswordForm form; local
512 autofill::PasswordForm form; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLLegendElement.h 38 HTMLFormElement* form() const;
HTMLOutputElement.cpp 10 * * Redistributions in binary form must reproduce the above
39 inline HTMLOutputElement::HTMLOutputElement(Document& document, HTMLFormElement* form)
40 : HTMLFormControlElement(HTMLNames::outputTag, document, form)
47 PassRefPtrWillBeRawPtr<HTMLOutputElement> HTMLOutputElement::create(Document& document, HTMLFormElement* form)
49 return adoptRefWillBeNoop(new HTMLOutputElement(document, form));
HTMLButtonElement.cpp 42 inline HTMLButtonElement::HTMLButtonElement(Document& document, HTMLFormElement* form)
43 : HTMLFormControlElement(buttonTag, document, form)
49 PassRefPtrWillBeRawPtr<HTMLButtonElement> HTMLButtonElement::create(Document& document, HTMLFormElement* form)
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))
HTMLFieldSetElement.idl 22 [ImplementedAs=formOwner] readonly attribute HTMLFormElement form;
HTMLFormControlElementWithState.cpp 63 if (!form())
65 return form()->shouldAutocomplete();
79 // We don't save/restore control state in a form with autocomplete=off.
  /external/elfutils/0.153/libdw/
dwarf_getattrs.c 99 /* Get attribute name and form. */
105 get_uleb128 (attr.form, attrp);
108 if (attr.code == 0 && attr.form == 0)
132 if (attr.form != 0)
134 size_t len = __libdw_form_val_len (dbg, die->cu, attr.form,
  /external/wpa_supplicant_8/hs20/server/www/
free.php 13 echo "<form action=\"add-free.php\" method=\"POST\">\n";
20 </form>
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
ResizeActivity.java 28 setContentView(R.layout.form);
  /external/chromium_org/chrome/browser/password_manager/
native_backend_kwallet_x.cc 33 const char kKWalletFolder[] = "Chrome Form Data";
269 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)
713 const PasswordForm* form = *it; local
    [all...]
password_store_x.cc 32 const PasswordForm& form,
34 *changes = backend->AddLogin(form);
53 PasswordStoreChangeList PasswordStoreX::AddLoginImpl(const PasswordForm& form) {
56 if (use_native_backend() && AddLoginToBackend(backend_, form, &changes)) {
59 changes = PasswordStoreDefault::AddLoginImpl(form);
65 const PasswordForm& form) {
68 if (use_native_backend() && backend_->UpdateLogin(form, &changes)) {
71 changes = PasswordStoreDefault::UpdateLoginImpl(form);
77 const PasswordForm& form) {
80 if (use_native_backend() && backend_->RemoveLogin(form)) {
    [all...]
password_store_x_unittest.cc 62 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...]
  /external/chromium_org/chrome/browser/ui/passwords/
password_manager_presenter_unittest.cc 79 autofill::PasswordForm* form = new autofill::PasswordForm(); local
80 form->origin = origin;
81 form->username_element = base::ASCIIToUTF16("Email");
82 form->username_value = base::ASCIIToUTF16(user_name);
83 form->password_element = base::ASCIIToUTF16("Passwd");
84 form->password_value = base::ASCIIToUTF16(password);
86 .push_back(form);
90 autofill::PasswordForm* form = new autofill::PasswordForm(); local
91 form->origin = origin;
93 .push_back(form);
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
DecimalFormatTest.java 63 DecimalFormat form = (DecimalFormat) DecimalFormat.getInstance(Locale.US); local
64 assertFalse(form.isParseBigDecimal());
65 form.setParseBigDecimal(true);
66 assertTrue(form.isParseBigDecimal());
68 Number result = form.parse("123.123");
71 form.setParseBigDecimal(false);
72 assertFalse(form.isParseBigDecimal());
74 result = form.parse("123.123");
95 DecimalFormat form = (DecimalFormat) NumberFormat.getInstance(Locale.US); local
96 Number number = form.parse("23.1", new ParsePosition(0))
366 DecimalFormat form = (DecimalFormat) DecimalFormat.getInstance(Locale.US); local
385 DecimalFormat form = (DecimalFormat) NumberFormat.getInstance(Locale.US); local
407 DecimalFormat form = (DecimalFormat) NumberFormat.getInstance(Locale.US); local
431 DecimalFormat form = new DecimalFormat("00.###E0"); local
461 DecimalFormat form = (DecimalFormat) NumberFormat.getInstance(Locale.US); local
484 DecimalFormat form = (DecimalFormat) NumberFormat.getInstance(Locale.US); local
502 DecimalFormat form = (DecimalFormat) NumberFormat.getInstance(Locale.US); local
518 DecimalFormat form = (DecimalFormat) NumberFormat.getInstance(Locale.US); local
1750 DecimalFormat form = (DecimalFormat) NumberFormat.getInstance(Locale.US); local
    [all...]
  /external/chromium_org/components/autofill/content/browser/
request_autocomplete_manager.cc 49 const FormData& form,
51 if (!IsValidFormData(form))
57 ShowRequestAutocompleteDialog(form, frame_url, callback);
96 const FormData& form,
100 client->ShowRequestAutocompleteDialog(form, source_url, callback);
  /external/chromium_org/components/autofill/content/renderer/
form_autofill_util.h 29 // A bit field mask for form or form element requirements.
42 // This is used for form submission where
48 // The maximum number of form fields we are willing to parse, due to
78 // Returns the form's |name| attribute if non-empty; otherwise the form's |id|
80 const base::string16 GetFormIdentifier(const blink::WebFormElement& form);
87 // Fills |autofillable_elements| with all the auto-fillable form control
101 // Fills |form| with the FormData object corresponding to the |form_element|.
105 // Returns true if |form| is filled out; it's possible that the |form_element
    [all...]
  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFAbbreviationDeclaration.h 38 bool GetAttrAndFormByIndex(uint32_t idx, dw_attr_t& attr, dw_form_t& form) const
42 m_attributes[idx].get(attr, form);
45 attr = form = 0;
50 void GetAttrAndFormByIndexUnchecked(uint32_t idx, dw_attr_t& attr, dw_form_t& form) const
52 m_attributes[idx].get(attr, form);
  /external/chromium_org/third_party/WebKit/Source/web/
WebSearchableFormData.cpp 10 * * Redistributions in binary form must reproduce the above
54 // Gets the encoding for the form.
55 void GetFormEncoding(const HTMLFormElement* form, WTF::TextEncoding* encoding)
57 String str(form->getAttribute(HTMLNames::accept_charsetAttr));
66 if (!form->document().loader())
68 *encoding = WTF::TextEncoding(form->document().encoding());
72 bool IsHTTPFormSubmit(const HTMLFormElement* form)
75 String action(form->action());
77 return form->document().completeURL(action.isNull() ? "" : action).protocolIs("http");
80 // If the form does not have an activated submit button, the first submi
    [all...]
  /external/openssl/crypto/ec/
ec_print.c 12 * 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))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
cursesf.h 46 # include <form.h>
296 // Return the index of the field in the field array of a form
297 // or -1 if the field is not associated to a form
329 void _nc_xx_frm_init(FORM *);
330 void _nc_xx_frm_term(FORM *);
331 void _nc_xx_fld_init(FORM *);
332 void _nc_xx_fld_term(FORM *);
337 // The class representing a form, wrapping the lowlevel FORM struct
343 FORM* form; // the lowlevel structur member in class:NCursesForm
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
cursesf.h 46 # include <form.h>
296 // Return the index of the field in the field array of a form
297 // or -1 if the field is not associated to a form
329 void _nc_xx_frm_init(FORM *);
330 void _nc_xx_frm_term(FORM *);
331 void _nc_xx_fld_init(FORM *);
332 void _nc_xx_fld_term(FORM *);
337 // The class representing a form, wrapping the lowlevel FORM struct
343 FORM* form; // the lowlevel structur member in class:NCursesForm
    [all...]

Completed in 1978 milliseconds

1 2 34 5 6 7 8 91011>>