HomeSort by relevance Sort by last modified time
    Searched defs:form (Results 151 - 175 of 261) sorted by null

1 2 3 4 5 67 8 91011

  /external/chromium_org/components/autofill/core/browser/
autofill_download_unittest.cc 128 FormData form; local
129 form.method = ASCIIToUTF16("post");
135 form.fields.push_back(field);
140 form.fields.push_back(field);
145 form.fields.push_back(field);
150 form.fields.push_back(field);
155 form.fields.push_back(field);
160 form.fields.push_back(field);
165 form.fields.push_back(field);
167 FormStructure *form_structure = new FormStructure(form, std::string())
339 FormData form; local
    [all...]
autofill_external_delegate_unittest.cc 88 const FormData& form,
126 const FormData form; local
132 external_delegate_->OnQuery(query_id, form, field, element_bounds, true);
322 const FormData form; local
328 external_delegate_->OnQuery(kQueryId, form, field, element_bounds, true);
346 // Test that the Autofill delegate doesn't try and fill a form with a
356 // Ensure it doesn't try to fill the form in with the negative id.
364 // Test that the ClearPreview call is only sent if the form was being previewed
436 // Test that the driver is directed to clear the form after being notified that
437 // the user accepted the suggestion to clear the form
449 const FormData form; local
    [all...]
autofill_merge_unittest.cc 182 // Create a test form.
183 FormData form; local
184 form.name = ASCIIToUTF16("MyTestForm");
185 form.method = ASCIIToUTF16("POST");
186 form.origin = GURL("https://www.example.com/origin.html");
187 form.action = GURL("https://www.example.com/action.html");
188 form.user_submitted = true;
209 form.fields.push_back(field);
216 FormStructure form_structure(form, std::string());
231 // Clear the |form| to start a new profile
    [all...]
form_structure_unittest.cc 37 std::ostream& operator<<(std::ostream& os, const FormData& form) {
38 os << UTF16ToUTF8(form.name)
40 << UTF16ToUTF8(form.method)
42 << form.origin.spec()
44 << form.action.spec()
48 form.fields.begin();
49 iter != form.fields.end(); ++iter) {
68 FormData form; local
69 form.method = ASCIIToUTF16("post");
75 form.fields.push_back(field)
105 FormData form; local
156 FormData form; local
166 FormData form; local
251 FormData form; local
347 FormData form; local
416 FormData form; local
457 FormData form; local
500 FormData form; local
563 FormData form; local
627 FormData form; local
671 FormData form; local
701 FormData form; local
738 FormData form; local
817 FormData form; local
880 FormData form; local
946 FormData form; local
1001 FormData form; local
1064 FormData form; local
1106 FormData form; local
1147 FormData form; local
1191 FormData form; local
1234 FormData form; local
1268 FormData form; local
1303 FormData form; local
1376 FormData form; local
1424 FormData form; local
1473 FormData form; local
1528 FormData form; local
1674 FormData form; local
1832 FormData form; local
1958 FormData form; local
2212 FormData form; local
2318 FormData form; local
2384 FormData form; local
2415 FormData form; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLFormControlElement.h 40 // and form-associated element implementations should use HTMLFormControlElement
46 HTMLFormElement* form() const { return FormAssociatedElement::form(); } function in class:WebCore::HTMLFormControlElement
  /external/chromium_org/third_party/WebKit/Source/web/
ContextMenuClientImpl.cpp 10 * * Redistributions in binary form must reproduce the above
335 HTMLFormElement* form = selectedFrame->selection()->currentForm(); local
336 if (form && r.innerNonSharedNode()->hasTagName(HTMLNames::inputTag)) {
339 WebSearchableFormData ws = WebSearchableFormData(WebFormElement(form), WebInputElement(selectedElement));
  /external/chromium_org/third_party/openssl/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);
  /external/chromium_org/third_party/openssl/openssl/crypto/ec/
eck_prn.c 15 * 2. Redistributions in binary form must reproduce the above copyright
34 * 6. Redistributions of any form whatsoever must retain the following
197 point_conversion_form_t form; local
241 form = EC_GROUP_get_point_conversion_form(x);
244 form, NULL, ctx)) == NULL)
308 if (form == POINT_CONVERSION_COMPRESSED)
314 else if (form == POINT_CONVERSION_UNCOMPRESSED)
320 else /* form == POINT_CONVERSION_HYBRID */
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/form/
Form35c.java 17 package com.android.dx.dex.code.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);
  /external/openssl/crypto/ec/
eck_prn.c 15 * 2. Redistributions in binary form must reproduce the above copyright
34 * 6. Redistributions of any form whatsoever must retain the following
197 point_conversion_form_t form; local
241 form = EC_GROUP_get_point_conversion_form(x);
244 form, NULL, ctx)) == NULL)
308 if (form == POINT_CONVERSION_COMPRESSED)
314 else if (form == POINT_CONVERSION_UNCOMPRESSED)
320 else /* form == POINT_CONVERSION_HYBRID */
  /external/smack/src/org/jivesoftware/smackx/commands/
RemoteCommand.java 30 import org.jivesoftware.smackx.Form;
42 * state of "completed" and a form or notes that applies.
94 public void complete(Form form) throws XMPPException {
95 executeAction(Action.complete, form, packetReplyTimeout);
105 * in the Form. This form must be the anwser form of the previous stage. If
108 * @param form the form anwser of the previous stage
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/
ApplicationPage.java 39 * Page for "Application" settings, part of the AndroidManifest form editor.
71 * Creates the content in the form hosted in this page.
73 * @param managedForm the form hosted in this page.
78 ScrolledForm form = managedForm.getForm(); local
79 form.setText("Android Manifest Application");
80 form.setImage(AdtPlugin.getAndroidLogo());
84 Composite body = form.getBody();
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
DecimalFormatTest.java 55 DecimalFormat form = (DecimalFormat) DecimalFormat.getInstance(Locale.US); local
56 assertFalse(form.isParseBigDecimal());
57 form.setParseBigDecimal(true);
58 assertTrue(form.isParseBigDecimal());
59 form.setParseBigDecimal(false);
60 assertFalse(form.isParseBigDecimal());
63 assertFalse(form.isParseIntegerOnly());
69 DecimalFormat form = (DecimalFormat) DecimalFormat.getInstance(Locale.US); local
70 Number number = form.parse("23.1", new ParsePosition(0));
76 form = (DecimalFormat) DecimalFormat.getInstance(Locale.US)
337 DecimalFormat form = (DecimalFormat) nform; local
361 DecimalFormat form = (DecimalFormat) nform; local
385 DecimalFormat form = new DecimalFormat("00.###E0"); local
431 DecimalFormat form = (DecimalFormat) nform; local
452 DecimalFormat form = (DecimalFormat) nform; local
607 DecimalFormat form = (DecimalFormat) nform; local
618 DecimalFormat form = (DecimalFormat) nform; local
629 DecimalFormat form = (DecimalFormat) nform; local
640 DecimalFormat form = (DecimalFormat) nform; local
653 DecimalFormat form = (DecimalFormat) nform; local
672 DecimalFormat form = (DecimalFormat) nform; local
1245 DecimalFormat form = (DecimalFormat) nform; local
    [all...]
  /external/chromium/chrome/browser/autofill/
autofill_metrics_unittest.cc 142 void AddSeenForm(FormStructure* form) {
143 form_structures()->push_back(form);
154 explicit TestFormStructure(const FormData& form) : FormStructure(form) {}
213 // Set up our form data.
214 FormData form; local
215 form.name = ASCIIToUTF16("TestForm");
216 form.method = ASCIIToUTF16("POST");
217 form.origin = GURL("http://example.com/form.html")
344 FormData form; local
456 FormData form; local
592 FormData form; local
628 FormData form; local
766 FormData form; local
    [all...]
personal_data_manager_unittest.cc 521 FormData form; local
525 form.fields.push_back(field);
528 form.fields.push_back(field);
531 form.fields.push_back(field);
534 form.fields.push_back(field);
537 form.fields.push_back(field);
540 form.fields.push_back(field);
543 form.fields.push_back(field);
544 FormStructure form_structure(form);
568 FormData form; local
610 FormData form; local
642 FormData form; local
    [all...]
  /external/chromium/chrome/browser/password_manager/
native_backend_kwallet_x.cc 22 const char* NativeBackendKWallet::kKWalletFolder = "Chrome Form Data";
122 bool NativeBackendKWallet::AddLogin(const PasswordForm& form) {
128 GetLoginsList(&forms, form.signon_realm, wallet_handle);
130 forms.push_back(new PasswordForm(form));
131 bool ok = SetLoginsList(forms, form.signon_realm, wallet_handle);
137 bool NativeBackendKWallet::UpdateLogin(const PasswordForm& form) {
143 GetLoginsList(&forms, form.signon_realm, wallet_handle);
146 if (CompareForms(form, *forms[i], true))
147 *forms[i] = form;
150 bool ok = SetLoginsList(forms, form.signon_realm, wallet_handle)
466 const PasswordForm* form = *it; local
    [all...]
password_store_default_unittest.cc 163 // Some non-ASCII password form data.
180 PasswordForm* form = CreatePasswordFormFromData(form_data[i]); local
181 expected_forms.push_back(form);
182 store->AddLogin(*form);
269 PasswordForm* form = CreatePasswordFormFromData(autofillable_data[i]); local
270 expected_autofillable.push_back(form);
271 wds_->AddLogin(*form);
275 PasswordForm* form = CreatePasswordFormFromData(blacklisted_data[i]); local
276 expected_blacklisted.push_back(form);
277 wds_->AddLogin(*form);
388 PasswordForm* form = CreatePasswordFormFromData(wds_data[i]); local
    [all...]
  /external/chromium/chrome/browser/sync/
profile_sync_service_password_unittest.cc 273 PasswordForm form; local
274 PasswordModelAssociator::CopyPassword(password, &form);
276 entries->push_back(form);
  /external/chromium_org/chrome/browser/history/
history_browsertest.cc 457 // Verify that submitting form adds target page to history list.
459 GURL form = ui_test_utils::GetTestUrl( local
461 base::FilePath().AppendASCII("form.html"));
465 ui_test_utils::NavigateToURL(browser(), form); local
473 web_contents, "document.getElementById('form').submit()"));
479 ASSERT_EQ(form, urls[1]);
  /external/chromium_org/chrome/browser/password_manager/
native_backend_gnome_x.cc 113 PasswordForm* form = new PasswordForm();
114 form->origin = GURL(string_attr_map["origin_url"]);
115 form->action = GURL(string_attr_map["action_url"]);
116 form->username_element = UTF8ToUTF16(string_attr_map["username_element"]);
117 form->username_value = UTF8ToUTF16(string_attr_map["username_value"]);
118 form->password_element = UTF8ToUTF16(string_attr_map["password_element"]);
119 form->submit_element = UTF8ToUTF16(string_attr_map["submit_element"]);
120 form->signon_realm = string_attr_map["signon_realm"];
121 form->ssl_valid = uint_attr_map["ssl_valid"];
122 form->preferred = uint_attr_map["preferred"]
144 PasswordForm* form = FormFromAttributes(attrs); local
    [all...]
  /external/chromium_org/chrome/browser/sync/
profile_sync_service_password_unittest.cc 284 PasswordForm form; local
285 PasswordModelAssociator::CopyPassword(password, &form);
287 entries->push_back(form);
  /external/chromium_org/chrome/renderer/autofill/
form_autofill_browsertest.cc 55 "<FORM name=\"TestForm\" action=\"http://buh.com\" method=\"post\">"
67 "</FORM>";
105 const FormData& form = forms[0]; local
106 EXPECT_EQ(ASCIIToUTF16("TestForm"), form.name);
107 EXPECT_EQ(GURL(web_frame->document().url()), form.origin);
108 EXPECT_EQ(GURL("http://cnn.com"), form.action);
110 const std::vector<FormFieldData>& fields = form.fields;
144 typedef void (*FillFormFunction)(const FormData& form,
169 // Find the form that contains the input element.
200 // Autofill the form using the given fill form function
573 FormData form; local
638 FormData form; local
681 const FormData& form = forms[0]; local
821 FormData form; local
850 FormData form; local
903 FormData form; local
1961 FormData form; local
2054 FormData form; local
2131 FormData form; local
2217 FormData form; local
2300 FormData form; local
2359 FormData form; local
2436 FormData form; local
2973 FormData form; local
    [all...]
  /external/chromium_org/components/autofill/content/browser/
autocheckout_manager.cc 56 // Build Autocheckout specific form data to be consumed by
179 FormData form = form_structure->ToFormData(); local
180 DCHECK_EQ(form_structure->field_count(), form.fields.size());
184 SetValue(*field, &form.fields[i]);
187 filled_forms.push_back(form);
461 // For a form with radio buttons, like:
462 // <form>
465 // </form>
471 // input elements with the same name/signature in the form.
  /external/chromium_org/components/autofill/content/renderer/
password_autofill_agent.cc 36 // Maps element names to the actual elements to simplify form filling.
40 // Utility struct for form lookup and autofill. When we parse the DOM to look up
41 // a form, in addition to action and origin URL's we have to compare all
42 // necessary form elements. To avoid having to look these up again when we want
43 // to fill the form, the FindFormElements function stores the pointers
52 // Helper to search the given form element for the specified input elements
57 // Loop through the list of elements we need to find on the form in order to
59 // form; it can't be the right one.
87 // there are multiple matches, but for purposes of identifying the form
96 // A required element was not found. This is not the right form
363 const WebKit::WebFormElement& form = forms[i]; local
473 FormData form; local
535 FormData form; local
    [all...]

Completed in 807 milliseconds

1 2 3 4 5 67 8 91011