Searched refs:form (Results 1 - 25 of 95) sorted by relevance

1234

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-runtime/man/
H A Dngettext.x2 ngettext \- translate message and choose plural form
7 chooses the appropriate plural form, which depends on the number \fICOUNT\fP
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/
H A Dformdata.c58 static size_t readfromfile(struct Form *form, char *buffer, size_t size);
313 FormInfo *first_form, *current_form, *form = NULL; local
524 accepted as a fine form part */
604 for(form = first_form;
605 form != NULL;
606 form = form->more) {
607 if(((!form->name || !form->value) && !post) ||
608 ( (form
813 struct FormData *next, *form; local
837 curl_formget(struct curl_httppost *form, void *arg, curl_formget_callback append) argument
883 curl_formfree(struct curl_httppost *form) argument
994 struct FormData *form = NULL; local
1260 Curl_FormInit(struct Form *form, struct FormData *formdata ) argument
1280 readfromfile(struct Form *form, char *buffer, size_t size) argument
1322 struct Form *form; local
1377 struct Form *form=(struct Form *)formp; local
1400 curl_formget(struct curl_httppost *form, void *arg, curl_formget_callback append) argument
1409 curl_formfree(struct curl_httppost *form) argument
[all...]
H A Dnon-ascii.c313 * Curl_convert_form() is used from http.c, this converts any form items that
316 CURLcode Curl_convert_form(struct SessionHandle *data, struct FormData *form) argument
321 if(!form)
328 next=form->next; /* the following form line */
329 if(form->type == FORM_DATA) {
330 rc = Curl_convert_to_network(data, form->line, form->length);
335 } while((form = next) != NULL); /* continue */
H A Dformdata.h26 FORM_DATA, /* form metadata (convert to network encoding if necessary) */
27 FORM_CONTENT, /* form content (never convert) */
31 to create the form data (never convert) */
43 struct FormData *data; /* current form line to send */
71 int Curl_FormInit(struct Form *form, struct FormData *formdata );
H A Dnon-ascii.h51 CURLcode Curl_convert_form(struct SessionHandle *data, struct FormData *form);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/src/
H A Dtool_mfiles.c72 multi->form.option = CURLFORM_FILE;
73 multi->form.value = file_name;
84 multi_type->form.option = CURLFORM_CONTENTTYPE;
85 multi_type->form.value = type_name;
97 multi_name->form.option = CURLFORM_FILENAME;
98 multi_name->form.value = show_filename;
H A Dtool_mfiles.h32 struct curl_forms form; member in struct:multi_files
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/prebuilt/WW/www/
H A Dbas_pppoe.js89 var form=document.forms[0];
90 if(form.pppoe_username.value=="")
95 for(i=0;i<form.pppoe_username.value.length;i++)
97 if(isValidChar(form.pppoe_username.value.charCodeAt(i))==false)
103 for(i=0;i<form.pppoe_passwd.value.length;i++)
105 if(isValidChar(form.pppoe_passwd.value.charCodeAt(i))==false)
119 if(form.pppoe_idletime.value.length<=0)
124 else if(!_isNumeric(form.pppoe_idletime.value))
131 form.run_test.value="test";
133 form
[all...]
H A Dfuncs.js176 text.form[(getIndex(text)+1) % text.form.length].focus();
181 text.form[(getIndex(text)+1) % text.form.length].focus();
188 while (i < input.form.length && index == -1)
189 if (input.form[i] == input)
212 function check_maxNumAdd(form,nowNum,maxNum,msg,go2href)
471 var form = document.forms[0];
638 var form = document.forms[0];
913 function checkwep(form)
[all...]
H A Ddtree.js174 var form=document.forms[0]; variable
177 form.nodenumber.value=id;
178 form.currentpath.value=echo_info[3];
179 //form.folder_path.value=echo_info[3];
181 form.nodevalue.value=value;
184 form.submit_flag.value="browser_open";
185 form.submit();
188 form.submit_flag.value="browser_close";
189 form.submit();
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/python/
H A Dpy_spoolss_forms_conv.c47 BOOL py_from_FORM_1(PyObject **dict, FORM_1 *form) argument
49 *dict = from_struct(form, py_FORM_1);
56 BOOL py_to_FORM(FORM *form, PyObject *dict) argument
74 if (!to_struct(form, dict_copy, py_FORM))
84 init_unistr2(&form->name, name, UNI_STR_TERMINATE);
H A Dpy_spoolss_forms.c23 /* Add a form */
30 FORM form; local
32 static char *kwlist[] = {"form", NULL};
42 if (!py_to_FORM(&form, info)) {
43 PyErr_SetString(spoolss_error, "invalid form");
62 init_unistr2(&form.name, form_name, UNI_STR_TERMINATE);
71 level, &form);
83 /* Get form properties */
94 FORM_1 form; local
105 &hnd->pol, form_name, level, &form);
138 FORM form; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/ec/
H A Dec_print.c12 * 2. Redistributions in binary form must reproduce the above copyright
31 * 6. Redistributions of any form whatsoever must retain the following
61 point_conversion_form_t form,
68 buf_len = EC_POINT_point2oct(group, point, form,
76 if (!EC_POINT_point2oct(group, point, form, buf, buf_len, ctx))
137 point_conversion_form_t form,
144 buf_len = EC_POINT_point2oct(group, point, form,
152 if (!EC_POINT_point2oct(group, point, form, buf, buf_len, ctx))
59 EC_POINT_point2bn(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, BIGNUM *ret, BN_CTX *ctx) argument
135 EC_POINT_point2hex(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, BN_CTX *ctx) argument
H A Dec2_smpl.c26 * 2. Redistributions in binary form must reproduce the above copyright
45 * 6. Redistributions of any form whatsoever must retain the following
420 size_t ec_GF2m_simple_point2oct(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, argument
430 if ((form == POINT_CONVERSION_COMPRESSED) || (form == POINT_CONVERSION_HYBRID))
437 if ((form != POINT_CONVERSION_COMPRESSED)
438 && (form != POINT_CONVERSION_UNCOMPRESSED)
439 && (form != POINT_CONVERSION_HYBRID))
463 ret = (form == POINT_CONVERSION_COMPRESSED) ? 1 + field_len : 1 + 2*field_len;
490 buf[0] = form;
565 point_conversion_form_t form; local
[all...]
H A Decp_smpl.c16 * 2. Redistributions in binary form must reproduce the above copyright
35 * 6. Redistributions of any form whatsoever must retain the following
766 size_t ec_GFp_simple_point2oct(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, argument
775 if ((form != POINT_CONVERSION_COMPRESSED)
776 && (form != POINT_CONVERSION_UNCOMPRESSED)
777 && (form != POINT_CONVERSION_HYBRID))
801 ret = (form == POINT_CONVERSION_COMPRESSED) ? 1 + field_len : 1 + 2*field_len;
827 if ((form == POINT_CONVERSION_COMPRESSED || form == POINT_CONVERSION_HYBRID) && BN_is_odd(y))
828 buf[0] = form
895 point_conversion_form_t form; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libxml2-2.7.2/test/schemas/
H A Dinclude1_0.inc17 <xsd:element name="bar.A" block="restriction" form="qualified" nillable="true" />
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/registry/
H A Dreg_printing.c397 nt_forms_struct *form = NULL; local
410 form = &forms_list[i];
412 data[0] = form->width;
413 data[1] = form->length;
414 data[2] = form->left;
415 data[3] = form->top;
416 data[4] = form->right;
417 data[5] = form->bottom;
419 data[7] = form->flag;
421 regval_ctr_addvalue( val, form
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/apps/
H A Dec.c15 * 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
102 point_conversion_form_t form = POINT_CONVERSION_UNCOMPRESSED; local
173 form = POINT_CONVERSION_COMPRESSED;
175 form = POINT_CONVERSION_UNCOMPRESSED;
177 form = POINT_CONVERSION_HYBRID;
236 "point conversion form \n");
336 EC_KEY_set_conv_form(eckey, form);
H A Decparam.c15 * 2. Redistributions in binary form must reproduce the above copyright
34 * 6. Redistributions of any form whatsoever must retain the following
95 * -text - print the ec parameters in text form
100 * -conv_form arg - specifies the point conversion form
122 point_conversion_form_t form = POINT_CONVERSION_UNCOMPRESSED; local
199 form = POINT_CONVERSION_COMPRESSED;
201 form = POINT_CONVERSION_UNCOMPRESSED;
203 form = POINT_CONVERSION_HYBRID;
266 "parameters in text form\n");
276 "point conversion form \
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/tests/
H A Dmsggrep-822 # Warum ist das nicht als c-form markiert?
27 #. c-form
41 ${MSGGREP} -X -e c-form -o mg-test8.tmp mg-test8.po >mg-test8.err 2>&1
62 #. c-form
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/packages/OS400/
H A Dccsidcurl.h59 CURL_EXTERN int curl_formget_ccsid(struct curl_httppost * form, void * arg,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/engine/vendor_defns/
H A Dhw_4758_cca.h67 unsigned char * form,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/engines/vendor_defns/
H A Dhw_4758_cca.h67 unsigned char * form,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/ec/
H A Decp_smpl.c14 * 2. Redistributions in binary form must reproduce the above copyright
33 * 6. Redistributions of any form whatsoever must retain the following
756 size_t ec_GFp_simple_point2oct(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, argument
765 if ((form != POINT_CONVERSION_COMPRESSED)
766 && (form != POINT_CONVERSION_UNCOMPRESSED)
767 && (form != POINT_CONVERSION_HYBRID))
791 ret = (form == POINT_CONVERSION_COMPRESSED) ? 1 + field_len : 1 + 2*field_len;
817 if ((form == POINT_CONVERSION_COMPRESSED || form == POINT_CONVERSION_HYBRID) && BN_is_odd(y))
818 buf[0] = form
885 point_conversion_form_t form; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Ddct-test.c203 void (*fdct_ref)(DCTELEM *block), int form, int test)
254 if (form == MMX_PERM) {
257 } else if (form == MMX_SIMPLE_PERM) {
261 } else if (form == SSE2_PERM) {
264 } else if (form == PARTTRANS_PERM) {
283 if (form == SCALE_PERM) {
354 if (form == MMX_PERM) {
357 } else if(form == MMX_SIMPLE_PERM) {
201 dct_error(const char *name, int is_idct, void (*fdct_func)(DCTELEM *block), void (*fdct_ref)(DCTELEM *block), int form, int test) argument

Completed in 246 milliseconds

1234