HomeSort by relevance Sort by last modified time
    Searched refs:forms (Results 51 - 75 of 2129) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/components/password_manager/core/browser/
login_database.cc 498 std::vector<PasswordForm*>* forms) const {
499 DCHECK(forms);
513 // PSL matching only applies to HTML forms.
582 forms->push_back(new_form.release());
593 std::vector<autofill::PasswordForm*>* forms) const {
594 DCHECK(forms);
616 forms->push_back(new_form.release());
624 std::vector<autofill::PasswordForm*>* forms) const {
625 DCHECK(forms);
648 forms->push_back(new_form.release())
    [all...]
password_manager_driver.h 33 // Fills forms matching |form_data|.
47 // Notifies the driver that account creation |forms| were found.
49 const std::vector<autofill::FormData>& forms) = 0;
stub_password_manager_driver.cc 32 const std::vector<autofill::FormData>& forms) {
stub_password_manager_driver.h 28 const std::vector<autofill::FormData>& forms) OVERRIDE;
password_manager.h 92 // Handles password forms being parsed.
94 const std::vector<autofill::PasswordForm>& forms);
96 // Handles password forms being rendered.
145 // Checks for every from in |forms| whether |pending_login_managers_| already
148 const std::vector<autofill::PasswordForm>& forms);
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
addbyte.asm 1 ; AX forms
18 ; non-AX forms
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/
ApplicationPage.java 32 import org.eclipse.ui.forms.IManagedForm;
33 import org.eclipse.ui.forms.editor.FormPage;
34 import org.eclipse.ui.forms.widgets.FormToolkit;
35 import org.eclipse.ui.forms.widgets.ScrolledForm;
42 * <a href="http://www.eclipse.org/articles/Article-Forms/article.html">
43 * http://www.eclipse.org/articles/Article-Forms/article.html</a>
OverviewPage.java 32 import org.eclipse.ui.forms.IManagedForm;
33 import org.eclipse.ui.forms.editor.FormPage;
34 import org.eclipse.ui.forms.widgets.FormToolkit;
35 import org.eclipse.ui.forms.widgets.ScrolledForm;
45 * <a href="http://www.eclipse.org/articles/Article-Forms/article.html">
46 * http://www.eclipse.org/articles/Article-Forms/article.html</a>
ApplicationToggle.java 34 import org.eclipse.ui.forms.IManagedForm;
35 import org.eclipse.ui.forms.widgets.FormText;
36 import org.eclipse.ui.forms.widgets.FormToolkit;
37 import org.eclipse.ui.forms.widgets.Section;
38 import org.eclipse.ui.forms.widgets.TableWrapData;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
UiElementDetail.java 41 import org.eclipse.ui.forms.IDetailsPage;
42 import org.eclipse.ui.forms.IFormPart;
43 import org.eclipse.ui.forms.IManagedForm;
44 import org.eclipse.ui.forms.events.ExpansionEvent;
45 import org.eclipse.ui.forms.events.IExpansionListener;
46 import org.eclipse.ui.forms.widgets.FormText;
47 import org.eclipse.ui.forms.widgets.FormToolkit;
48 import org.eclipse.ui.forms.widgets.Section;
49 import org.eclipse.ui.forms.widgets.SharedScrolledComposite;
50 import org.eclipse.ui.forms.widgets.TableWrapData
    [all...]
  /external/chromium_org/chrome/utility/importer/
nss_decryptor_mac.h 133 // The result will be stored in |forms|.
135 std::vector<autofill::PasswordForm>* forms);
139 // The result will be stored in |forms|.
141 std::vector<autofill::PasswordForm>* forms);
nss_decryptor_win.h 131 // The result will be stored in |forms|.
133 std::vector<autofill::PasswordForm>* forms);
137 // The result will be stored in |forms|.
139 std::vector<autofill::PasswordForm>* forms);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/export/
ExportFieldsPart.java 23 import org.eclipse.ui.forms.widgets.FormToolkit;
24 import org.eclipse.ui.forms.widgets.Section;
  /external/chromium_org/chrome/browser/autofill/
form_structure_browsertest.cc 42 // file that contains one or more forms. The corresponding output file lists the
54 // Serializes the given |forms| into a string.
55 std::string FormStructuresToString(const std::vector<FormStructure*>& forms);
79 std::vector<FormStructure*> forms = autofill_manager->form_structures_.get(); local
80 *output = FormStructureBrowserTest::FormStructuresToString(forms);
84 const std::vector<FormStructure*>& forms) {
86 for (std::vector<FormStructure*>::const_iterator iter = forms.begin();
87 iter != forms.end();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
NormalizerTest.java 30 Form[] forms = Form.values(); local
31 assertEquals(4, forms.length);
32 assertEquals(Form.NFD, forms[0]);
33 assertEquals(Form.NFC, forms[1]);
34 assertEquals(Form.NFKD, forms[2]);
35 assertEquals(Form.NFKC, forms[3]);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
SectionHelper.java 34 import org.eclipse.ui.forms.SectionPart;
35 import org.eclipse.ui.forms.widgets.FormText;
36 import org.eclipse.ui.forms.widgets.FormToolkit;
37 import org.eclipse.ui.forms.widgets.Section;
38 import org.eclipse.ui.forms.widgets.TableWrapData;
39 import org.eclipse.ui.forms.widgets.TableWrapLayout;
  /external/chromium_org/components/autofill/core/browser/
autofill_manager_unittest.cc 186 // for building up more complex test forms.
255 // The number of fields in the address and credit card forms created above.
634 void FormsSeen(const std::vector<FormData>& forms) {
635 autofill_manager_->OnFormsSeen(forms, base::TimeTicks());
714 std::vector<FormData> forms(1, form);
715 FormsSeen(forms);
748 std::vector<FormData> forms(1, form);
749 FormsSeen(forms);
789 std::vector<FormData> forms(1, form);
790 FormsSeen(forms);
2128 std::vector<FormData> forms; local
    [all...]
  /external/chromium_org/components/autofill/content/renderer/
password_autofill_agent.cc 145 blink::WebVector<blink::WebFormElement> forms; local
146 doc.forms(forms);
148 for (size_t i = 0; i < forms.size(); ++i) {
149 blink::WebFormElement fe = forms[i];
500 blink::WebVector<blink::WebFormElement> forms; local
501 frame->document().forms(forms);
503 logger->LogNumber(Logger::STRING_NUMBER_OF_ALL_FORMS, forms.size());
506 for (size_t i = 0; i < forms.size(); ++i)
704 blink::WebVector<blink::WebFormElement> forms; local
754 FormElementsList forms; local
756 FindFormElements(render_view()->GetWebView(), form_data.basic_data, &forms); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebDocument.cpp 4 * Redistribution and use in source and binary forms, with or without
179 void WebDocument::forms(WebVector<WebFormElement>& results) const function in class:blink::WebDocument
181 RefPtrWillBeRawPtr<HTMLCollection> forms = const_cast<Document*>(constUnwrap<Document>())->forms(); local
182 size_t sourceLength = forms->length();
186 Element* element = forms->item(i);
  /external/chromium_org/third_party/WebKit/Source/core/
webcore_html.target.darwin-arm.mk 194 third_party/WebKit/Source/core/html/forms/BaseButtonInputType.cpp \
195 third_party/WebKit/Source/core/html/forms/BaseCheckableInputType.cpp \
196 third_party/WebKit/Source/core/html/forms/BaseChooserOnlyDateAndTimeInputType.cpp \
197 third_party/WebKit/Source/core/html/forms/BaseClickableWithKeyInputType.cpp \
198 third_party/WebKit/Source/core/html/forms/BaseDateAndTimeInputType.cpp \
199 third_party/WebKit/Source/core/html/forms/BaseMultipleFieldsDateAndTimeInputType.cpp \
200 third_party/WebKit/Source/core/html/forms/BaseTextInputType.cpp \
201 third_party/WebKit/Source/core/html/forms/ButtonInputType.cpp \
202 third_party/WebKit/Source/core/html/forms/CheckboxInputType.cpp \
203 third_party/WebKit/Source/core/html/forms/ColorInputType.cpp
    [all...]
webcore_html.target.darwin-arm64.mk 194 third_party/WebKit/Source/core/html/forms/BaseButtonInputType.cpp \
195 third_party/WebKit/Source/core/html/forms/BaseCheckableInputType.cpp \
196 third_party/WebKit/Source/core/html/forms/BaseChooserOnlyDateAndTimeInputType.cpp \
197 third_party/WebKit/Source/core/html/forms/BaseClickableWithKeyInputType.cpp \
198 third_party/WebKit/Source/core/html/forms/BaseDateAndTimeInputType.cpp \
199 third_party/WebKit/Source/core/html/forms/BaseMultipleFieldsDateAndTimeInputType.cpp \
200 third_party/WebKit/Source/core/html/forms/BaseTextInputType.cpp \
201 third_party/WebKit/Source/core/html/forms/ButtonInputType.cpp \
202 third_party/WebKit/Source/core/html/forms/CheckboxInputType.cpp \
203 third_party/WebKit/Source/core/html/forms/ColorInputType.cpp
    [all...]
webcore_html.target.darwin-mips.mk 194 third_party/WebKit/Source/core/html/forms/BaseButtonInputType.cpp \
195 third_party/WebKit/Source/core/html/forms/BaseCheckableInputType.cpp \
196 third_party/WebKit/Source/core/html/forms/BaseChooserOnlyDateAndTimeInputType.cpp \
197 third_party/WebKit/Source/core/html/forms/BaseClickableWithKeyInputType.cpp \
198 third_party/WebKit/Source/core/html/forms/BaseDateAndTimeInputType.cpp \
199 third_party/WebKit/Source/core/html/forms/BaseMultipleFieldsDateAndTimeInputType.cpp \
200 third_party/WebKit/Source/core/html/forms/BaseTextInputType.cpp \
201 third_party/WebKit/Source/core/html/forms/ButtonInputType.cpp \
202 third_party/WebKit/Source/core/html/forms/CheckboxInputType.cpp \
203 third_party/WebKit/Source/core/html/forms/ColorInputType.cpp
    [all...]
webcore_html.target.darwin-x86.mk 194 third_party/WebKit/Source/core/html/forms/BaseButtonInputType.cpp \
195 third_party/WebKit/Source/core/html/forms/BaseCheckableInputType.cpp \
196 third_party/WebKit/Source/core/html/forms/BaseChooserOnlyDateAndTimeInputType.cpp \
197 third_party/WebKit/Source/core/html/forms/BaseClickableWithKeyInputType.cpp \
198 third_party/WebKit/Source/core/html/forms/BaseDateAndTimeInputType.cpp \
199 third_party/WebKit/Source/core/html/forms/BaseMultipleFieldsDateAndTimeInputType.cpp \
200 third_party/WebKit/Source/core/html/forms/BaseTextInputType.cpp \
201 third_party/WebKit/Source/core/html/forms/ButtonInputType.cpp \
202 third_party/WebKit/Source/core/html/forms/CheckboxInputType.cpp \
203 third_party/WebKit/Source/core/html/forms/ColorInputType.cpp
    [all...]
webcore_html.target.darwin-x86_64.mk 194 third_party/WebKit/Source/core/html/forms/BaseButtonInputType.cpp \
195 third_party/WebKit/Source/core/html/forms/BaseCheckableInputType.cpp \
196 third_party/WebKit/Source/core/html/forms/BaseChooserOnlyDateAndTimeInputType.cpp \
197 third_party/WebKit/Source/core/html/forms/BaseClickableWithKeyInputType.cpp \
198 third_party/WebKit/Source/core/html/forms/BaseDateAndTimeInputType.cpp \
199 third_party/WebKit/Source/core/html/forms/BaseMultipleFieldsDateAndTimeInputType.cpp \
200 third_party/WebKit/Source/core/html/forms/BaseTextInputType.cpp \
201 third_party/WebKit/Source/core/html/forms/ButtonInputType.cpp \
202 third_party/WebKit/Source/core/html/forms/CheckboxInputType.cpp \
203 third_party/WebKit/Source/core/html/forms/ColorInputType.cpp
    [all...]
webcore_html.target.linux-arm.mk 194 third_party/WebKit/Source/core/html/forms/BaseButtonInputType.cpp \
195 third_party/WebKit/Source/core/html/forms/BaseCheckableInputType.cpp \
196 third_party/WebKit/Source/core/html/forms/BaseChooserOnlyDateAndTimeInputType.cpp \
197 third_party/WebKit/Source/core/html/forms/BaseClickableWithKeyInputType.cpp \
198 third_party/WebKit/Source/core/html/forms/BaseDateAndTimeInputType.cpp \
199 third_party/WebKit/Source/core/html/forms/BaseMultipleFieldsDateAndTimeInputType.cpp \
200 third_party/WebKit/Source/core/html/forms/BaseTextInputType.cpp \
201 third_party/WebKit/Source/core/html/forms/ButtonInputType.cpp \
202 third_party/WebKit/Source/core/html/forms/CheckboxInputType.cpp \
203 third_party/WebKit/Source/core/html/forms/ColorInputType.cpp
    [all...]

Completed in 1342 milliseconds

1 23 4 5 6 7 8 91011>>