HomeSort by: relevance | last modified time | path
    Searched refs:FORM (Results 1 - 10 of 10) sorted by relevancy

  /src/lib/libform/
internals.h 33 #include "form.h"
42 /* define the default options for a form... */
107 _formi_draw_page(FORM *form);
109 _formi_find_pages(FORM *form);
111 _formi_field_choice(FORM *form, int c);
115 _formi_manipulate_field(FORM *form, int c)
    [all...]
form.h 1 /* $NetBSD: form.h,v 1.23 2015/09/07 15:50:49 joerg Exp $ */
52 /* form options */
58 #define O_ACTIVE (0x002) /* Field is active in the form */
70 * Form driver requests - be VERY careful about changing the ordering
71 * of the requests below. The form driver code depends on a particular
77 #define REQ_NEXT_PAGE (KEY_MAX + 0x101) /* next page in form */
78 #define REQ_PREV_PAGE (KEY_MAX + 0x102) /* previous page in form */
79 #define REQ_FIRST_PAGE (KEY_MAX + 0x103) /* goto first page in form */
80 #define REQ_LAST_PAGE (KEY_MAX + 0x104) /* goto last page in form */
186 typedef struct _form_struct FORM;
    [all...]
form.c 1 /* $NetBSD: form.c,v 1.17 2021/04/13 13:13:04 christos Exp $ */
33 __RCSID("$NetBSD: form.c,v 1.17 2021/04/13 13:13:04 christos Exp $");
37 #include <form.h>
42 FORM _formi_default_form = {
44 FALSE, /* the form is posted */
46 NULL, /* window for the form */
47 NULL, /* subwindow for the form */
50 0, /* options for the form */
51 NULL, /* function called when form posted and
53 NULL, /* function called when form is unposted an
    [all...]
post.c 35 #include "form.h"
39 * Post the form to the screen.
42 post_form(FORM *form)
46 if (form == NULL)
49 if (form->posted == 1)
52 if ((form->fields == NULL) || (form->fields[0] == NULL))
55 if (form->in_init == 1)
58 if (scale_form(form, &rows, &cols) != E_OK
    [all...]
driver.c 36 #include "form.h"
40 traverse_form_links(FORM *form, int direction);
50 traverse_form_links(FORM *form, int direction)
54 idx = form->cur_field;
59 if (form->fields[idx]->left == NULL)
61 idx = form->fields[idx]->left->index;
65 if (form->fields[idx]->right == NULL)
67 idx = form->fields[idx]->right->index
    [all...]
field.c 38 #include <form.h>
41 extern FORM _formi_default_form;
49 0, /* starting row in the form subwindow */
50 0, /* starting column in the form subwindow */
52 0, /* index of this field in form fields array. */
64 0, /* start of a new page on the form if 1 */
70 NULL, /* the form this field is bound to, if any */
646 set_field_init(FORM *form, Form_Hook function)
648 if (form == NULL
    [all...]
internals.c 44 #include "form.h"
49 * the form is first posted.
114 add_tab(FORM *form, _FORMI_FIELD_LINES *row, unsigned int i, char c);
369 * Set the form's current field to the first valid field on the page.
373 _formi_pos_first_field(FORM *form)
378 old_page = form->page;
381 while (form->page_starts[form->page].in_use == 0)
    [all...]
  /src/libexec/httpd/
lua-bozo.c 12 * 2. Redistributions in binary form must reproduce the above copyright
52 #define FORM "application/x-www-form-urlencoded"
413 (type && *type && !strcmp(type, FORM))) {
417 if (type && *type && !strcmp(type, FORM)) {
  /src/sys/arch/m68k/060sp/dist/
fplsp.s 5479 #--If compact form of abs(arg) in d0=$7ffeffff, argument is so large that
5910 #--If compact form of abs(arg) in d0=$7ffeffff, argument is so large that
6328 #--THE NATURAL FORM IS U + U*V*(A1 + V*(A2 + V*A3))
6353 #--|X| IS IN d0 IN COMPACT FORM. FP1, d0 SAVED.
6737 # form. Thus taking the branch to Step 2 guarantees #
6815 # zero. The reason for such a special form is that T-1, #
6943 # zero. The reason for such a special form is that T-1, #
8545 #--FPCR SAVED. D0 IS X IN COMPACT FORM.
fpsp.s 5585 #--If compact form of abs(arg) in d0=$7ffeffff, argument is so large that
6016 #--If compact form of abs(arg) in d0=$7ffeffff, argument is so large that
6434 #--THE NATURAL FORM IS U + U*V*(A1 + V*(A2 + V*A3))
6459 #--|X| IS IN d0 IN COMPACT FORM. FP1, d0 SAVED.
6843 # form. Thus taking the branch to Step 2 guarantees #
6921 # zero. The reason for such a special form is that T-1, #
7049 # zero. The reason for such a special form is that T-1, #
8651 #--FPCR SAVED. D0 IS X IN COMPACT FORM.
23049 # A5. Form the final binary number by scaling the mantissa by #
24479 # msb form a decimal digit. This process is iterated until
    [all...]

Completed in 33 milliseconds