/external/chromium/chrome/browser/password_manager/ |
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/webkit/LayoutTests/fast/dom/HTMLLabelElement/form/ |
test1.html | 18 form = document.getElementById("form"); 20 if(labelInsideForm.form == form) 25 if(labelNotInsideForm.form == null) 34 <p>This test attempts to access an HTMLLabelElement's form property. The first test accesses the form property of an label which is inside of a form. The second test accesses the form property of an label which is not inside of a form</p [all...] |
test1-expected.txt | 1 This test attempts to access an HTMLLabelElement's form property. The first test accesses the form property of an label which is inside of a form. The second test accesses the form property of an label which is not inside of a form
|
/external/webkit/Tools/QueueStatusServer/templates/ |
releasepatch.html | 0 <form name="release_patch" enctype="multipart/form-data" method="post"> 3 </form>
|
submittoews.html | 0 <form name="submit_to_ews" enctype="multipart/form-data" method="post"> 3 </form>
|
updatesvnrevision.html | 0 <form name="update_svn_revision" method="post"> 8 </form>
|
updateworkitems.html | 0 <form name="update_work_items" enctype="multipart/form-data" method="post"> 8 </form>
|
/external/webkit/Source/WebCore/manual-tests/ |
input-type-file-autocomplete-frame-2.html | 4 <form><input size=55 value="type something in here"></form>
|
submit-form-with-target-twice.html | 4 var form = document.getElementById('f'); 6 form.submit(); 7 form.submit(); 10 <form id="f" target="foo"><input></form> 11 <p>This tests that calling form.submit() twice in a row from JavaScript, on a form with a custom target and with at least one text field does not cause an assertion in a debug build of Safari.
|
show-modal-dialog-test.html | 3 document.form.fromModal.value = 5 document.form.toModal.value, 9 <form name="form"> 15 </form>
|
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/ |
NormalizerTest.java | 21 import java.text.Normalizer.Form; 27 * @tests java.text.Normalizer.Form#values() 30 Form[] forms = Form.values(); 32 assertEquals(Form.NFD, forms[0]); 33 assertEquals(Form.NFC, forms[1]); 34 assertEquals(Form.NFKD, forms[2]); 35 assertEquals(Form.NFKC, forms[3]); 39 * @tests java.text.Normalizer.Form#valueOf(String) 43 Form.valueOf(null) [all...] |
/external/webkit/LayoutTests/fast/dom/HTMLFormElement/ |
invalid-form-field.html | 13 var form, input, str; 17 form = document.body.appendChild(document.createElement("form")); 18 form.id = "form"; 22 input.setAttribute("form", "form"); 23 form.elements.namedItem("input"); 34 str = typeof form['input'].form; [all...] |
associated-elements-after-index-assertion-fail1.html | 15 <a </var><form><button form="f"><progress> 16 <keygen form="f"><a </datalist><button>
|
associated-elements-after-index-assertion-fail2.html | 15 <form><em><ol </del><fieldset form="f"</sub><option </dt><button form="f"></em><meter </time>
|
/libcore/luni/src/main/java/libcore/icu/ |
NativeNormalizer.java | 19 import java.text.Normalizer.Form; 22 public static boolean isNormalized(CharSequence src, Form form) { 23 return isNormalizedImpl(src.toString(), toUNormalizationMode(form)); 26 public static String normalize(CharSequence src, Form form) { 27 return normalizeImpl(src.toString(), toUNormalizationMode(form)); 30 private static int toUNormalizationMode(Form form) { 33 switch (form) { [all...] |
/external/webkit/Source/WebCore/manual-tests/chromium/ |
no-autofill-on-readonly.html | 8 <li>Enter a name in the input text in Form 1 and press submit. This is so the autofill has a value for that field.</li> 9 <li>Reload the page so the input text is empty. Click twice on the Form 1 text input. An autofill popup with the name you entered previously should be shown.</li> 10 <li>Click twice on the Form 2 text input. No autofill popup should be shown.</li> 11 <li>Click twice on the Form 3 text input. No autofill popup should be shown.</li> 14 <h1>Form 1 (text input non read-only)</h1> 15 <form action="no-autofill-on-readonly.html"> 18 </form> 20 <h1>Form 2 (text input read-only)</h1> 21 <form action="no-autofill-on-readonly.html"> 24 </form> [all...] |
suggestions-popup-font-change.html | 8 <li>1. Type "abcd" in the text form and press enter.</li> 9 <li>2. Type "a" in the text form, suggestions popup should appear. 11 the corresponding input form. 17 <form method="get" action="suggestions-popup-font-change.html" id="form"> 19 </form>
|
/external/elfutils/tests/ |
run-show-abbrev.sh | 33 abbrev[0]: attr[0]: code = 16, form = 6, offset = 0 34 abbrev[0]: attr[1]: code = 18, form = 1, offset = 2 35 abbrev[0]: attr[2]: code = 17, form = 1, offset = 4 36 abbrev[0]: attr[3]: code = 3, form = 8, offset = 6 37 abbrev[0]: attr[4]: code = 27, form = 8, offset = 8 38 abbrev[0]: attr[5]: code = 37, form = 8, offset = 10 39 abbrev[0]: attr[6]: code = 19, form = 11, offset = 12 41 abbrev[19]: attr[0]: code = 1, form = 19, offset = 19 42 abbrev[19]: attr[1]: code = 63, form = 12, offset = 21 43 abbrev[19]: attr[2]: code = 3, form = 8, offset = 2 [all...] |
/external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/ |
simple-form.html | 8 <form method=post> 11 </form>
|
/external/webkit/Source/WebCore/manual-tests/resources/ |
textarea-form-back-on-submit.html | 3 <title>Form with a textarea that goes back on submit</title> 6 <form id="form" method="get" action="data:text/html,<body onload='history.back()'></body>"> 13 </form>
|
/external/chromium/webkit/glue/ |
form_data.cc | 25 bool FormData::operator==(const FormData& form) const { 26 return (name == form.name && 27 StringToLowerASCII(method) == StringToLowerASCII(form.method) && 28 origin == form.origin && 29 action == form.action && 30 user_submitted == form.user_submitted && 31 fields == form.fields);
|
/libcore/luni/src/main/java/java/text/ |
Normalizer.java | 35 public static enum Form { 37 * Normalization Form D - Canonical Decomposition. 42 * Normalization Form C - Canonical Decomposition, followed by Canonical Composition. 47 * Normalization Form KD - Compatibility Decomposition. 52 * Normalization Form KC - Compatibility Decomposition, followed by Canonical Composition. 59 * according to the normalization method <code>form</code>. 62 * @param form normalization form to check against 63 * @return true if normalized according to <code>form</code> 65 public static boolean isNormalized(CharSequence src, Form form) [all...] |
/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...] |
/libcore/luni/src/test/java/libcore/java/text/ |
NormalizerTest.java | 26 assertEquals(src, Normalizer.normalize(src, Normalizer.Form.NFC)); 30 Normalizer.normalize(src, Normalizer.Form.NFD)); 33 assertEquals("\u038e\u03ab\u1e61", Normalizer.normalize(src, Normalizer.Form.NFKC)); 37 Normalizer.normalize(src, Normalizer.Form.NFKD)); 40 assertEquals("\u00e9", Normalizer.normalize("\u0065\u0301", Normalizer.Form.NFC)); 43 assertEquals("\u1e69", Normalizer.normalize("\u1e9b\u0323", Normalizer.Form.NFKC)); 46 Normalizer.normalize(null, Normalizer.Form.NFC); 57 assertTrue(Normalizer.isNormalized(target, Normalizer.Form.NFC)); 58 assertFalse(Normalizer.isNormalized(target, Normalizer.Form.NFD)); 59 assertFalse(Normalizer.isNormalized(target, Normalizer.Form.NFKC)) [all...] |
/external/svox/pico/ |
proguard.flags | 1 # Some methods in this class are called form native code
|