/external/webkit/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>
|
onunload-form-submit-crash.html | 5 <form name="myForm"> 6 </form>
|
modal-dialog.html | 9 window.returnValue = document.form.toWindow.value; 15 document.form.fromWindow.value = window.dialogArguments; 20 <form name="form"> 26 </form>
|
textarea-reset-default-value.html | 7 we restore form state (e.g. by hitting back after submitting a form). --> 15 <li>Submit the form. The form should navigate back immediately.</li> 16 <li>Note that the value in the text area matches what you entered before submitting the form, this is correct.</li> 17 <li>Now click the reset button for the form. 21 <iframe src="resources/textarea-form-back-on-submit.html" width="800" height="200" id="frame"></iframe>
|
timeout-test.html | 8 Clicking on this button will post a form that takes over 10 minutes for the server to respond. The connection should not time out!<br> 9 <form action="timeout-test.php" method="post"> 11 </form>
|
post-multi-file-upload.html | 25 Choose "testFile1.html" "testFile2.html" and "testFile3.html" and submit the form. <br> 26 You should see a "Test Passed" or a "Test Failed" message after submitting the form.<br> 28 <form method="post" enctype="multipart/form-data" action="resources/multiFileResources/post-echo-and-notify-done.cgi" id="myForm" target="targetFrame"> 31 </form>
|
disabled-option-elements.html | 3 <form name="form"> 23 </form>
|
/dalvik/libcore/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...] |
/dalvik/libcore/icu/src/main/java/com/ibm/icu4jni/text/ |
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/elfutils/tests/ |
run-show-abbrev.sh | 26 abbrev[0]: attr[0]: code = 16, form = 6, offset = 0 27 abbrev[0]: attr[1]: code = 18, form = 1, offset = 2 28 abbrev[0]: attr[2]: code = 17, form = 1, offset = 4 29 abbrev[0]: attr[3]: code = 3, form = 8, offset = 6 30 abbrev[0]: attr[4]: code = 27, form = 8, offset = 8 31 abbrev[0]: attr[5]: code = 37, form = 8, offset = 10 32 abbrev[0]: attr[6]: code = 19, form = 11, offset = 12 34 abbrev[19]: attr[0]: code = 1, form = 19, offset = 19 35 abbrev[19]: attr[1]: code = 63, form = 12, offset = 21 36 abbrev[19]: attr[2]: code = 3, form = 8, offset = 2 [all...] |
/external/webkit/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>
|
/dalvik/libcore/text/src/main/java/java/text/ |
Normalizer.java | 36 public static enum Form { 38 * Normalization Form D - Canonical Decomposition. 43 * Normalization Form C - Canonical Decomposition, followed by Canonical Composition. 48 * Normalization Form KD - Compatibility Decomposition. 53 * Normalization Form KC - Compatibility Decomposition, followed by Canonical Composition. 60 * according to the normalization method <code>form</code>. 63 * @param form normalization form to check against 64 * @return true if normalized according to <code>form</code> 66 public static boolean isNormalized(CharSequence src, Form form) [all...] |
/dalvik/libcore/luni/src/test/java/java/text/ |
NormalizerTest.java | 24 assertEquals(src, Normalizer.normalize(src, Normalizer.Form.NFC)); 28 Normalizer.normalize(src, Normalizer.Form.NFD)); 31 assertEquals("\u038e\u03ab\u1e61", Normalizer.normalize(src, Normalizer.Form.NFKC)); 35 Normalizer.normalize(src, Normalizer.Form.NFKD)); 38 assertEquals("\u00e9", Normalizer.normalize("\u0065\u0301", Normalizer.Form.NFC)); 41 assertEquals("\u1e69", Normalizer.normalize("\u1e9b\u0323", Normalizer.Form.NFKC)); 44 Normalizer.normalize(null, Normalizer.Form.NFC); 55 assertTrue(Normalizer.isNormalized(target, Normalizer.Form.NFC)); 56 assertFalse(Normalizer.isNormalized(target, Normalizer.Form.NFD)); 57 assertFalse(Normalizer.isNormalized(target, Normalizer.Form.NFKC)) [all...] |
/external/webkit/WebKitTools/QueueStatusServer/templates/ |
updatestatus.html | 0 <form name="update_status" enctype="multipart/form-data" method="post"> 17 </form>
|
/external/webkit/WebCore/platform/network/mac/ |
FormDataStreamMac.mm | 10 * 2. Redistributions in binary form must reproduce the above copyright 134 static void closeCurrentStream(FormStreamFields *form) 136 if (form->currentStream) { 137 CFReadStreamClose(form->currentStream); 138 CFReadStreamSetClient(form->currentStream, kCFStreamEventNone, NULL, NULL); 139 CFRelease(form->currentStream); 140 form->currentStream = NULL; 142 if (form->currentData) { 143 fastFree(form->currentData); 144 form->currentData = 0 [all...] |
/external/webkit/WebCore/platform/network/cf/ |
FormDataStreamCFNet.cpp | 10 * 2. Redistributions in binary form must reproduce the above copyright 110 static void closeCurrentStream(FormStreamFields *form) 112 if (form->currentStream) { 113 CFReadStreamClose(form->currentStream); 114 CFReadStreamSetClient(form->currentStream, kCFStreamEventNone, NULL, NULL); 115 CFRelease(form->currentStream); 116 form->currentStream = NULL; 118 if (form->currentData) { 119 fastFree(form->currentData); 120 form->currentData = 0 203 FormStreamFields* form = static_cast<FormStreamFields*>(context); local 214 FormStreamFields* form = static_cast<FormStreamFields*>(context); local 225 FormStreamFields* form = static_cast<FormStreamFields*>(context); local 248 FormStreamFields* form = static_cast<FormStreamFields*>(context); local 262 FormStreamFields* form = static_cast<FormStreamFields*>(context); local 269 FormStreamFields* form = static_cast<FormStreamFields*>(context); local 279 FormStreamFields* form = static_cast<FormStreamFields*>(context); local 289 FormStreamFields* form = static_cast<FormStreamFields*>(context); local [all...] |
/external/qemu/elff/ |
dwarf_utils.h | 31 /* Gets DWARF form name string (DW_FORM_Xxx) for a given form.
33 * form - DWARF form to get name string for.
35 * Form name string. Note that this routine returns "DW_FORM_Unknown", if
36 * DWARF form value passed to this routine has not been recognized.
38 const char* dwarf_form_name(Dwarf_Form form);
52 * form - Attribute form (DW_FORM_Xxx)
55 void dump_attrib(Dwarf_At at, Dwarf_Form form, const Dwarf_Value* val); [all...] |
/external/webkit/JavaScriptCore/tests/mozilla/js1_5/Regress/ |
regress-216320.js | 171 function vsub(form,status,ism,action){ 174 band=form.BAND.options[form.BAND.selectedIndex].value; 177 form.BAND.focus(); 183 if(!vnull(form.PT)) { return false; } 184 adt1=form.STD; 185 adt2=form.END; 203 if(!vnull(form.STD)){ return false; } 204 if(!vnull(form.END)){ return false; } 207 form.STD.focus() [all...] |
/external/webkit/LayoutTests/http/tests/appcache/resources/ |
cyrillic-uri.manifest | 4 cyrillic-uri-form.html 5 cyrillic-uri-form.html?i=???????? 8 cyrillic-uri-form.html?i=????????-2
|
/cts/tests/assets/webkit/ |
jsform.html | 18 <title>javascript form</title> 28 javascript form test 29 <form id="formId" action="test.html#result" method="post"> 31 </form>
|
/external/webkit/JavaScriptCore/tests/mozilla/ |
menufoot.html | 2 </form>
|
/external/webkit/WebKit/chromium/public/ |
WebPasswordFormData.h | 10 * * Redistributions in binary form must reproduce the above 41 // If the provided form is suitable for password completion, isValid() will 48 // The action target of the form. This is the primary data used by the 49 // PasswordManager for form autofill; that is, the action of the saved 50 // credentials must match the action of the form on the page to be autofilled. 57 // When parsing an HTML form, this must always be set. 66 // The URL (minus query parameters) containing the form. This is the primary 69 // good fit for a particular form on a page, so it must not be empty. 76 // When parsing an HTML form, this must always be set. 81 // When parsing an HTML form, this must always be set [all...] |
/dalvik/dx/src/com/android/dx/ssa/ |
package-info.java | 20 * <h1>An introduction to SSA Form</h1> 23 * intermediate form. This form is a static-single-assignment representation of 24 * Rop-form a method with Rop-form-like instructions (with the addition of a 25 * {@link PhiInsn phi instriction}. This form is intended to make it easy to 35 * converting, optimizing, and then back-converting Rop-form methods. It's the 37 * <li> {@link SsaConverter} converts a Rop-form method to SSA form. 38 * <li> {@link SsaToRop} converts an SSA-form method back to Rop form [all...] |