Searched refs:form (Results 26 - 50 of 255) sorted by relevance

1234567891011

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/web/javascript/jquery/
H A Djquery.form.js6 * Examples and documentation at: http://malsup.com/jquery/form/
18 Do not use both ajaxSubmit and ajaxForm on the same form. These
20 to bind your own submit handler to the form. For example,
41 form does not have to exist when you invoke ajaxForm:
61 * an HTML form using AJAX.
72 var method, action, url, $form = this;
94 // hook for manipulating the form data before it is extracted;
97 this.trigger('form-pre-serialize', [this, options, veto]);
99 log('ajaxSubmit: submit vetoed via form-pre-serialize trigger');
103 // provide opportunity to alter form dat
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Ddebugrptup.tex34 multipart/form-data form at the specified address. The \arg{url} is the upload
36 the form used for the file name and \arg{action} is the value of the form
/netgear-R7000-V1.0.7.12_1.2.5/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-R7000-V1.0.7.12_1.2.5/src/router/arm-uclibc/target/www/
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-R7000-V1.0.7.12_1.2.5/ap/gpl/libxml2-2.7.2/source/test/schemas/
H A Dinclude1_0.inc17 <xsd:element name="bar.A" block="restriction" form="qualified" nillable="true" />
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/lib/
H A Dnon-ascii.c317 * Curl_convert_form() is used from http.c, this converts any form items that
320 CURLcode Curl_convert_form(struct SessionHandle *data, struct FormData *form) argument
325 if(!form)
332 next=form->next; /* the following form line */
333 if(form->type == FORM_DATA) {
334 rc = Curl_convert_to_network(data, form->line, form->length);
339 } 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-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/ec/
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...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/test/
H A Dcms-examples.pl15 # 2. Redistributions in binary form must reproduce the above copyright
34 # 6. Redistributions of any form whatsoever must retain the following
263 $form = "DER" if $tlist =~ /verifyder/;
264 $form = "SMIME" if $tlist =~ /verifymime/;
269 "$cmscmd -verify -inform $form"
296 $form = "DER" if $tlist =~ /envelopeder/;
297 $form = "SMIME" if $tlist =~ /envelopemime/;
300 "$cmscmd -decrypt -inform $form"
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/test/
H A Dcms-examples.pl15 # 2. Redistributions in binary form must reproduce the above copyright
34 # 6. Redistributions of any form whatsoever must retain the following
263 $form = "DER" if $tlist =~ /verifyder/;
264 $form = "SMIME" if $tlist =~ /verifymime/;
269 "$cmscmd -verify -inform $form"
296 $form = "DER" if $tlist =~ /envelopeder/;
297 $form = "SMIME" if $tlist =~ /envelopemime/;
300 "$cmscmd -decrypt -inform $form"
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/
H A Daiffenc.c29 int64_t form; member in struct:__anon2108
50 aiff->form = avio_tell(pb);
132 avio_seek(pb, aiff->form, SEEK_SET);
133 avio_wb32(pb, file_size - aiff->form - 4);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/ec/
H A Dec_oct.c15 * 2. Redistributions in binary form must reproduce the above copyright
34 * 6. Redistributions of any form whatsoever must retain the following
136 point_conversion_form_t form, unsigned char *buf,
150 return ec_GFp_simple_point2oct(group, point, form, buf, len, ctx);
159 form, buf, len, ctx);
163 return group->meth->point2oct(group, point, form, buf, len, ctx);
135 EC_POINT_point2oct(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, unsigned char *buf, size_t len, BN_CTX *ctx) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/ec/
H A Dec_oct.c15 * 2. Redistributions in binary form must reproduce the above copyright
34 * 6. Redistributions of any form whatsoever must retain the following
136 point_conversion_form_t form, unsigned char *buf,
150 return ec_GFp_simple_point2oct(group, point, form, buf, len, ctx);
159 form, buf, len, ctx);
163 return group->meth->point2oct(group, point, form, buf, len, ctx);
135 EC_POINT_point2oct(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, unsigned char *buf, size_t len, BN_CTX *ctx) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/lua/source/src/
H A Dlstrlib.c857 static const char *scanformat (lua_State *L, const char *strfrmt, char *form) { argument
871 *(form++) = '%';
872 memcpy(form, strfrmt, (p - strfrmt + 1) * sizeof(char));
873 form += p - strfrmt + 1;
874 *form = '\0';
882 static void addlenmod (char *form, const char *lenmod) { argument
883 size_t l = strlen(form);
885 char spec = form[l - 1];
886 strcpy(form + l - 1, lenmod);
887 form[
906 char form[MAX_FORMAT]; /* to store the format (`%...') */ local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/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
81 * -conv_form arg - specifies the point encoding form
100 point_conversion_form_t form = POINT_CONVERSION_UNCOMPRESSED; local
162 form = POINT_CONVERSION_COMPRESSED;
164 form = POINT_CONVERSION_UNCOMPRESSED;
166 form = POINT_CONVERSION_HYBRID;
220 "point conversion form \n");
302 EC_KEY_set_conv_form(eckey, form);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/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
81 * -conv_form arg - specifies the point encoding form
100 point_conversion_form_t form = POINT_CONVERSION_UNCOMPRESSED; local
162 form = POINT_CONVERSION_COMPRESSED;
164 form = POINT_CONVERSION_UNCOMPRESSED;
166 form = POINT_CONVERSION_HYBRID;
220 "point conversion form \n");
302 EC_KEY_set_conv_form(eckey, form);
/netgear-R7000-V1.0.7.12_1.2.5/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);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/registry/
H A Dreg_printing.c42 /* full key path in normalized form */
100 nt_forms_struct *form; local
112 form = &forms_list[i];
114 data[0] = form->width;
115 data[1] = form->length;
116 data[2] = form->left;
117 data[3] = form->top;
118 data[4] = form->right;
119 data[5] = form->bottom;
121 data[7] = form
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/palmos/
H A Dbutton.cpp201 FormType* form = (FormType* )GetParentForm(); local
202 if(form==NULL)
204 FrmSetDefaultButtonID(form,GetId());
/netgear-R7000-V1.0.7.12_1.2.5/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-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/engines/vendor_defns/
H A Dhw_4758_cca.h65 unsigned char *form, unsigned char *random_number);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/packages/OS400/
H A Dccsidcurl.h59 CURL_EXTERN int curl_formget_ccsid(struct curl_httppost * form, void * arg,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/engines/vendor_defns/
H A Dhw_4758_cca.h67 unsigned char * form,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/engines/vendor_defns/
H A Dhw_4758_cca.h65 unsigned char *form, unsigned char *random_number);

Completed in 146 milliseconds

1234567891011