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

1 2 3 4 5 6

  /external/elfutils/libdw/
dwarf_getabbrevattr.c 39 unsigned int form; local
45 /* Attribute code and form are encoded as ULEB128 values. */
47 get_uleb128 (form, attrp);
50 if (name == 0 && form == 0)
59 *formp = form;
  /external/webkit/Source/WebCore/html/
HTMLElement.h 78 HTMLFormElement* form() const { return virtualForm(); } function in class:WebCore::HTMLElement
IsIndexInputType.cpp 10 * * Redistributions in binary form must reproduce the above
58 RefPtr<HTMLFormElement> form = InputType::formForSubmission(); local
59 if (form)
60 return form.release();
61 // If there is no form, then create a temporary form just to be used for submission.
63 form = HTMLFormElement::create(document);
64 form->registerFormElement(element());
65 form->setMethod("GET");
67 // We treat the href property of the <base> element as the form action, as per section 7.
    [all...]
FormAssociatedElement.h 44 HTMLFormElement* form() const { return m_form; } function in class:WebCore::FormAssociatedElement
69 void setForm(HTMLFormElement* form) { m_form = form; }
HTMLObjectElement.h 48 HTMLFormElement* form() const { return FormAssociatedElement::form(); } function in class:WebCore::HTMLObjectElement
  /external/webkit/Source/WebCore/bindings/js/
JSHTMLFormElementCustom.cpp 9 * 2. Redistributions in binary form must reproduce the above copyright
40 bool JSHTMLFormElement::canGetItemsForName(ExecState*, HTMLFormElement* form, const Identifier& propertyName)
43 form->getNamedElements(identifierToAtomicString(propertyName), namedItems);
50 HTMLFormElement* form = static_cast<HTMLFormElement*>(jsForm->impl()); local
53 form->getNamedElements(identifierToAtomicString(propertyName), namedItems);
JSDOMFormDataCustom.cpp 10 * * Redistributions in binary form must reproduce the above
53 HTMLFormElement* form = 0; local
55 form = toHTMLFormElement(exec->argument(0));
56 RefPtr<DOMFormData> domFormData = DOMFormData::create(form);
  /external/chromium/chrome/browser/
autocomplete_history_manager_unittest.cc 53 FormData form; local
54 form.name = ASCIIToUTF16("MyForm");
55 form.method = ASCIIToUTF16("POST");
56 form.origin = GURL("http://myform.com/form.html");
57 form.action = GURL("http://myform.com/submit.html");
58 form.user_submitted = true;
67 form.fields.push_back(valid_cc);
70 autocomplete_manager_->OnFormSubmitted(form);
77 FormData form; local
99 FormData form; local
    [all...]
  /external/llvm/lib/DebugInfo/
DWARFAbbreviationDeclaration.cpp 33 uint16_t form = data.getULEB128(offset_ptr); local
35 if (attr && form)
36 Attributes.push_back(DWARFAttribute(attr, form));
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8HTMLFormElementCustom.cpp 10 * * Redistributions in binary form must reproduce the above
47 HTMLFormElement* form = V8HTMLFormElement::toNative(info.Holder()); local
49 RefPtr<Node> formElement = form->elements()->item(index);
  /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/chrome/browser/password_manager/
login_database_unittest.cc 48 // Example password form.
49 PasswordForm form; local
50 form.origin = GURL("http://www.google.com/accounts/LoginAuth");
51 form.action = GURL("http://www.google.com/accounts/Login");
52 form.username_element = ASCIIToUTF16("Email");
53 form.username_value = ASCIIToUTF16("test@gmail.com");
54 form.password_element = ASCIIToUTF16("Passwd");
55 form.password_value = ASCIIToUTF16("test");
56 form.submit_element = ASCIIToUTF16("signIn");
57 form.signon_realm = "http://www.google.com/"
181 PasswordForm form; local
257 PasswordForm form; local
    [all...]
password_form_data.cc 13 PasswordForm* form = new PasswordForm(); local
14 form->scheme = form_data.scheme;
15 form->preferred = form_data.preferred;
16 form->ssl_valid = form_data.ssl_valid;
17 form->date_created = base::Time::FromDoubleT(form_data.creation_time);
19 form->signon_realm = std::string(form_data.signon_realm);
21 form->origin = GURL(form_data.origin);
23 form->action = GURL(form_data.action);
25 form->submit_element = WideToUTF16(form_data.submit_element);
27 form->username_element = WideToUTF16(form_data.username_element)
    [all...]
password_store_change.h 21 PasswordStoreChange(Type type, const webkit_glue::PasswordForm& form)
22 : type_(type), form_(form) {
27 const webkit_glue::PasswordForm& form() const { return form_; } function in class:PasswordStoreChange
31 form().signon_realm == other.form().signon_realm &&
32 form().origin == other.form().origin &&
33 form().action == other.form().action &&
34 form().submit_element == other.form().submit_element &
    [all...]
  /external/chromium/chrome/browser/webdata/
logins_table_unittest.cc 55 // Example password form.
56 PasswordForm form; local
57 form.origin = GURL("http://www.google.com/accounts/LoginAuth");
58 form.action = GURL("http://www.google.com/accounts/Login");
59 form.username_element = ASCIIToUTF16("Email");
60 form.username_value = ASCIIToUTF16("test@gmail.com");
61 form.password_element = ASCIIToUTF16("Passwd");
62 form.password_value = ASCIIToUTF16("test");
63 form.submit_element = ASCIIToUTF16("signIn");
64 form.signon_realm = "http://www.google.com/"
181 PasswordForm form; local
252 PasswordForm form; local
    [all...]
  /external/webkit/Source/WebCore/loader/
FormState.h 10 * 2. Redistributions in binary form must reproduce the above copyright
50 HTMLFormElement* form() const { return m_form.get(); } function in class:WebCore::FormState
  /external/webkit/Source/WebKit/chromium/src/
WebPasswordFormData.cpp 10 * * Redistributions in binary form must reproduce the above
53 // an old password (e.g on a "make new password" form), if any.
111 // Helper to gather up the final form data and create a PasswordForm.
121 // query and ref portions of URL, for the form action and form origin.
125 // Naming is confusing here because we have both the HTML form origin URL
126 // the page where the form was seen), and the "origin" components of the url
152 RefPtr<HTMLFormElement> form = webForm.operator PassRefPtr<HTMLFormElement>(); local
154 Frame* frame = form->document()->frame();
159 findPasswordFormFields(form.get(), &fields)
    [all...]

Completed in 442 milliseconds

1 2 3 4 5 6