/third_party/python/Lib/test/ |
H A D | test_peepholer.py | 632 for form in forms: 633 pattern = form.format(a, b, c) 642 for form in forms: 643 pattern = form.format(a, b, c)
|
H A D | test_cgi.py | 46 env['CONTENT_TYPE'] = 'application/x-www-form-urlencoded' 110 form = cgi.FieldStorage(fp=fake_stdin, environ=environ, encoding=encoding) 113 for k, v in dict(form).items(): 114 result[k] = isinstance(v, list) and form.getlist(k) or v.value 131 Content-Disposition: form-data; name="submit-name" 146 Content-Disposition: form-data; name="submit-name" 282 'CONTENT_TYPE': 'multipart/form-data; boundary={}'.format(BOUNDARY), 299 'CONTENT_TYPE': 'multipart/form-data; boundary={}'.format(BOUNDARY), 318 'CONTENT_TYPE': 'multipart/form-data; boundary={}'.format(BOUNDARY), 336 Content-Disposition: form [all...] |
/third_party/elfutils/tests/ |
H A D | varlocs.c | 109 dwarf_form_string (unsigned int form) in dwarf_form_string() argument 111 switch (form) in dwarf_form_string() 117 return "<unknown form>"; in dwarf_form_string() 929 unsigned int form = dwarf_whatform (attr); in handle_attr() local 932 dwarf_attr_string (code), dwarf_form_string (form)); in handle_attr() 936 there is an error while the attribute has the "correct" form then in handle_attr() 950 else if (form == DW_FORM_exprloc) in handle_attr()
|
/third_party/elfutils/libdw/ |
H A D | dwarf_formref.c | 50 switch (attr->form) in __libdw_formref()
|
H A D | dwarf_formblock.c | 47 switch (attr->form) in dwarf_formblock()
|
H A D | dwarf_formsdata.c | 47 switch (attr->form) in dwarf_formsdata()
|
H A D | dwarf_formaddr.c | 90 switch (attr->form) in dwarf_formaddr() 92 /* There is one form that just encodes the whole address. */ in dwarf_formaddr()
|
H A D | dwarf_siblingof.c | 68 &sibattr.form); in dwarf_siblingof()
|
H A D | libdw.h | 108 unsigned int form; member 494 /* Check whether given attribute has specific form. */ 500 /* Return form code of given attribute. */ 524 /* Look up the DIE in a reference-form attribute. */ 1112 return attr == NULL ? 0 : attr->form; in dwarf_whatform()
|
H A D | dwarf_getmacros.c | 402 attributes[i].form = proto->forms[i]; in read_macros() 408 if (! libdw_valid_user_form (attributes[i].form)) in read_macros()
|
/third_party/backends/tools/ |
H A D | create-release.sh | 17 --form "file=@$1" \
|
/third_party/skia/third_party/externals/microhttpd/src/examples/ |
H A D | post_example.c | 45 #define MAIN_PAGE "<html><head><title>Welcome</title></head><body><form action=\"/2\" method=\"post\">What is your name? <input type=\"text\" name=\"v1\" value=\"%s\" /><input type=\"submit\" value=\"Next\" /></body></html>" 50 #define SECOND_PAGE "<html><head><title>Tell me more</title></head><body><a href=\"/\">previous</a> <form action=\"/S\" method=\"post\">%s, what is your job? <input type=\"text\" name=\"v2\" value=\"%s\" /><input type=\"submit\" value=\"Next\" /></body></html>" 55 #define SUBMIT_PAGE "<html><head><title>Ready to submit?</title></head><body><form action=\"/F\" method=\"post\"><a href=\"/2\">previous </a> <input type=\"hidden\" name=\"DONE\" value=\"yes\" /><input type=\"submit\" value=\"Submit\" /></body></html>" 95 * String submitted via form. 100 * Another value submitted via form. 119 * Post processor handling form data (IF this is 280 const char *form = cls; in serve_simple_form() local 283 /* return static form */ in serve_simple_form() 284 response = MHD_create_response_from_buffer (strlen (form), in serve_simple_form() 285 (void *) form, in serve_simple_form() [all...] |
/third_party/rust/crates/syn/tests/ |
H A D | test_attribute.rs | 201 let meta = test("#[form(min = -1, max = 200)]"); in test_negative_lit() 208 ident: "form", in test_negative_lit()
|
/third_party/node/deps/undici/src/node_modules/@fastify/busboy/lib/types/ |
H A D | multipart.js | 21 const RE_FIELD = /^form-data$/i 26 Multipart.detect = /^multipart\/form-data/i
|
H A D | urlencoded.js | 9 UrlEncoded.detect = /^application\/x-www-form-urlencoded/i
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/htmldiff/ |
H A D | htmldiff.pl | 369 <form action=""><input type="button" onclick="setOldDisplay()" value="Show/Hide Old Content" /></form>
|
/third_party/python/Parser/ |
H A D | pegen.c | 472 PyObject *form = PyUnicode_InternFromString("NFKC"); in _PyPegen_new_identifier() local 473 if (form == NULL) in _PyPegen_new_identifier() 478 PyObject *args[2] = {form, id}; in _PyPegen_new_identifier() 481 Py_DECREF(form); in _PyPegen_new_identifier()
|
/third_party/curl/packages/OS400/ |
H A D | ccsidcurl.h | 59 CURL_EXTERN int curl_formget_ccsid(struct curl_httppost *form, void *arg,
|
/third_party/python/Modules/_decimal/libmpdec/ |
H A D | vcdiv64.asm | 11 ; 2. Redistributions in binary form must reproduce the above copyright
|
/third_party/libabigail/src/ |
H A D | abg-dwarf-reader.cc | 486 form_is_DW_FORM_strx(unsigned form); 489 form_is_DW_FORM_line_strp(unsigned form); 5931 /// The signed constant expected must be of constant form. 6000 /// Test if a given DWARF form is DW_FORM_strx{1,4}. 6003 /// enum in dwarf.h so we have to use an unsigned int for the form, 6006 /// @param form the form to consider. 6008 /// @return true iff @p form is DW_FORM_strx{1,4}. 6010 form_is_DW_FORM_strx(unsigned form) in form_is_DW_FORM_strx() argument 6012 if (form) in form_is_DW_FORM_strx() 6038 form_is_DW_FORM_line_strp(unsigned form) form_is_DW_FORM_line_strp() argument [all...] |
/third_party/icu/icu4c/source/test/intltest/ |
H A D | plurults.cpp | 1391 // For testing: get plural form of first and second numbers in testSelectRange() 1398 auto form = rules->select(range, status); in testSelectRange() local 1399 assertEquals("Range plural", u"few", form); in testSelectRange() 1403 form = copy.select(range, status); in testSelectRange() 1404 assertEquals("Range plural after copying", u"few", form); in testSelectRange() 1410 form = bare->select(range, status); in testSelectRange() 1416 form = xyz->select(range, status); in testSelectRange() 1417 assertEquals("Fallback form", u"other", form); in testSelectRange()
|
/third_party/node/src/crypto/ |
H A D | crypto_common.h | 91 point_conversion_form_t form,
|
/third_party/skia/src/gpu/tessellate/shaders/ |
H A D | GrPathTessellationShader_Hardware.cpp | 99 // Convert to a rational cubic in projected form. in makeProgramImpl() 272 // Put in "standard form" where w0 == w2 == w4 == 1. in makeProgramImpl() 277 // Covert the conic to a rational cubic in projected form. in makeProgramImpl()
|
/third_party/alsa-utils/axfer/ |
H A D | container-riff-wave.c | 415 const char *const form, uint64_t size, in build_subchunk_header() 418 memcpy(subchunk->id, form, sizeof(subchunk->id)); in build_subchunk_header() 414 build_subchunk_header(struct riff_subchunk *subchunk, const char *const form, uint64_t size, bool be) build_subchunk_header() argument
|
/third_party/node/deps/openssl/openssl/crypto/ec/ |
H A D | ec_local.h | 93 point_conversion_form_t form, unsigned char *buf, 234 * then of the form: t^poly[0] + t^poly[1] + ... + t^poly[k] where m = 243 * > 3, the curve is defined by a Weierstrass equation of the form y^2 = 245 * equation of the form y^2 + x*y = x^3 + a*x^2 + b. 396 point_conversion_form_t form, 487 point_conversion_form_t form,
|