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

123456

/freebsd-9.3-release/contrib/ncurses/form/
H A Dheaders31 $(srcdir)/form.h
H A Dfrm_page.c33 #include "form.priv.h"
39 | Function : int set_form_page(FORM * form,int page)
41 | Description : Set the page number of the form.
44 | E_BAD_ARGUMENT - invalid form pointer or page number
50 set_form_page(FORM *form, int page) argument
54 T((T_CALLED("set_form_page(%p,%d)"), form, page));
56 if (!form || (page < 0) || (page >= form->maxpage))
59 if (!(form->status & _POSTED))
61 form
99 form_page(const FORM *form) argument
[all...]
H A Dfrm_post.c33 #include "form.priv.h"
39 | Function : int post_form(FORM * form)
41 | Description : Writes the form into its associated subwindow.
44 | E_BAD_ARGUMENT - invalid form pointer
45 | E_POSTED - form already posted
46 | E_NOT_CONNECTED - no fields connected to form
47 | E_NO_ROOM - form doesn't fit into subwindow
51 post_form(FORM *form) argument
57 T((T_CALLED("post_form(%p)"), form));
59 if (!form)
101 unpost_form(FORM *form) argument
[all...]
H A Dfrm_sub.c33 #include "form.priv.h"
39 | Function : int set_form_sub(FORM *form, WINDOW *win)
41 | Description : Set the subwindow of the form to win.
44 | E_POSTED - form is posted
47 set_form_sub(FORM *form, WINDOW *win) argument
49 T((T_CALLED("set_form_sub(%p,%p)"), form, win));
51 if (form && (form->status & _POSTED))
54 Normalize_Form(form)->sub = win;
62 | Description : Retrieve the window of the form
67 form_sub(const FORM *form) argument
[all...]
H A Dfrm_scale.c33 #include "form.priv.h"
39 | Function : int scale_form( const FORM *form, int *rows, int *cols )
41 | Description : Retrieve size of form
44 | E_BAD_ARGUMENT - invalid form pointer
45 | E_NOT_CONNECTED - no fields connected to form
48 scale_form(const FORM *form, int *rows, int *cols) argument
50 T((T_CALLED("scale_form(%p,%p,%p)"), form, rows, cols));
52 if (!form)
55 if (!(form->field))
59 *rows = form
[all...]
H A Dfrm_user.c33 #include "form.priv.h"
39 | Function : int set_form_userptr(FORM *form, void *usrptr)
41 | Description : Set the pointer that is reserved in any form to store
47 set_form_userptr(FORM *form, void *usrptr) argument
49 T((T_CALLED("set_form_userptr(%p,%p)"), form, usrptr));
51 Normalize_Form(form)->usrptr = usrptr;
57 | Function : void *form_userptr(const FORM *form)
59 | Description : Return the pointer that is reserved in any form to
66 form_userptr(const FORM *form) argument
68 T((T_CALLED("form_userptr(%p)"), form));
[all...]
H A Dfld_current.c33 #include "form.priv.h"
39 | Function : int set_current_field(FORM * form,FIELD * field)
41 | Description : Set the current field of the form to the specified one.
44 | E_BAD_ARGUMENT - invalid form or field pointer
51 set_current_field(FORM *form, FIELD *field) argument
55 T((T_CALLED("set_current_field(%p,%p)"), form, field));
56 if (form == 0 || field == 0)
60 else if ((form != field->form) || Field_Is_Not_Selectable(field))
64 else if ((form
114 current_field(const FORM *form) argument
[all...]
H A Dfrm_cursor.c33 #include "form.priv.h"
39 | Function : int pos_form_cursor(FORM * form)
41 | Description : Moves the form window cursor to the location required
42 | by the form driver to resume form processing. This may
48 | E_BAD_ARGUMENT - Invalid form pointer
52 pos_form_cursor(FORM *form) argument
56 T((T_CALLED("pos_form_cursor(%p)"), form));
58 if (!form)
62 if (!(form
[all...]
H A Dfrm_def.c33 #include "form.priv.h"
117 | Function : static void Disconnect_Fields(FORM *form)
119 | Description : Break association between form and array of fields.
124 Disconnect_Fields(FORM *form)
126 if (form->field)
130 for (fields = form->field; *fields; fields++)
132 if (form == (*fields)->form)
133 (*fields)->form = (FORM *)0;
136 form
123 Disconnect_Fields(FORM *form) argument
156 Connect_Fields(FORM *form, FIELD **fields) argument
264 Associate_Fields(FORM *form, FIELD **fields) argument
302 FORM *form = typeMalloc(FORM, 1); local
333 free_form(FORM *form) argument
364 set_form_fields(FORM *form, FIELD **fields) argument
395 form_fields(const FORM *form) argument
410 field_count(const FORM *form) argument
[all...]
H A Dfrm_opts.c33 #include "form.priv.h"
39 | Function : int set_form_opts(FORM *form, Form_Options opts)
42 | remaining options for that form.
48 set_form_opts(FORM *form, Form_Options opts) argument
50 T((T_CALLED("set_form_opts(%p,%d)"), form, opts));
57 Normalize_Form(form)->opts = opts;
66 | Description : Retrieves the current form options.
71 form_opts(const FORM *form)
73 T((T_CALLED("form_opts(%p)"), form));
74 returnCode((int)(Normalize_Form(form)
88 form_opts_on(FORM *form, Form_Options opts) argument
113 form_opts_off(FORM *form, Form_Options opts) argument
[all...]
H A Dfrm_win.c33 #include "form.priv.h"
39 | Function : int set_form_win(FORM *form,WINDOW *win)
41 | Description : Set the window of the form to win.
44 | E_POSTED - form is posted
47 set_form_win(FORM *form, WINDOW *win) argument
49 T((T_CALLED("set_form_win(%p,%p)"), form, win));
51 if (form && (form->status & _POSTED))
54 Normalize_Form(form)->win = win;
62 | Description : Retrieve the window of the form
67 form_win(const FORM *form) argument
[all...]
H A Dfrm_hook.c33 #include "form.priv.h"
39 NCURSES_IMPEXP int NCURSES_API set_ ## typ ## _ ## name (FORM *form, Form_Hook func)\
41 T((T_CALLED("set_" #typ"_"#name"(%p,%p)"), form, func));\
42 (Normalize_Form( form ) -> typ ## name) = func ;\
48 NCURSES_IMPEXP Form_Hook NCURSES_API typ ## _ ## name ( const FORM *form )\
50 T((T_CALLED(#typ "_" #name "(%p)"), form));\
51 returnFormHook( Normalize_Form( form ) -> typ ## name );\
56 | Function : int set_field_init(FORM *form, Form_Hook f)
59 | to be called when the form is posted and just after
68 | Function : Form_Hook field_init(const FORM *form)
[all...]
H A Dfrm_data.c33 #include "form.priv.h"
39 | Function : bool data_behind(const FORM *form)
48 data_behind(const FORM *form)
52 T((T_CALLED("data_behind(%p)"), form));
54 if (form && (form->status & _POSTED) && form->current)
58 field = form->current;
61 result = (form->toprow == 0) ? FALSE : TRUE;
65 result = (form
[all...]
H A Dfrm_driver.c33 #include "form.priv.h"
38 This is the core module of the form library. It contains the majority
50 The current page of the form is left and some new page is
53 The current field of the form is left and some new field is
83 our form implementation. This doesn't affect the API, so we feel it is
116 static int Inter_Field_Navigation(int (*const fct) (FORM *), FORM *form);
117 static int FN_Next_Field(FORM *form);
118 static int FN_Previous_Field(FORM *form);
147 #define Address_Of_Current_Row_In_Nth_Buffer(form,N) \
148 Address_Of_Row_In_Nth_Buffer((form)
216 check_pos(FORM *form, int lineno) argument
334 delete_char(FORM *form) argument
455 Adjust_Cursor_Position(FORM *form, const FIELD_CELL *pos) argument
576 Synchronize_Buffer(FORM *form) argument
617 FORM *form = field->form; local
782 _nc_Position_Form_Cursor(FORM *form) argument
823 _nc_Refresh_Current_Field(FORM *form) argument
1116 FORM *form; local
1196 FORM *form; local
1264 FORM *form; local
1363 _nc_Set_Current_Field(FORM *form, FIELD *newfield) argument
1470 IFN_Next_Character(FORM *form) argument
1512 IFN_Previous_Character(FORM *form) argument
1541 IFN_Next_Line(FORM *form) argument
1569 IFN_Previous_Line(FORM *form) argument
1591 IFN_Next_Word(FORM *form) argument
1633 IFN_Previous_Word(FORM *form) argument
1687 IFN_Beginning_Of_Field(FORM *form) argument
1710 IFN_End_Of_Field(FORM *form) argument
1734 IFN_Beginning_Of_Line(FORM *form) argument
1758 IFN_End_Of_Line(FORM *form) argument
1785 IFN_Left_Character(FORM *form) argument
1810 IFN_Right_Character(FORM *form) argument
1841 IFN_Up_Character(FORM *form) argument
1863 IFN_Down_Character(FORM *form) argument
1898 VSC_Generic(FORM *form, int nlines) argument
1951 Vertical_Scrolling(int (*const fct) (FORM *), FORM *form) argument
1974 VSC_Scroll_Line_Forward(FORM *form) argument
1990 VSC_Scroll_Line_Backward(FORM *form) argument
2006 VSC_Scroll_Page_Forward(FORM *form) argument
2022 VSC_Scroll_Half_Page_Forward(FORM *form) argument
2038 VSC_Scroll_Page_Backward(FORM *form) argument
2054 VSC_Scroll_Half_Page_Backward(FORM *form) argument
2078 HSC_Generic(FORM *form, int ncolumns) argument
2130 Horizontal_Scrolling(int (*const fct) (FORM *), FORM *form) argument
2148 HSC_Scroll_Char_Forward(FORM *form) argument
2164 HSC_Scroll_Char_Backward(FORM *form) argument
2180 HSC_Horizontal_Line_Forward(FORM *form) argument
2196 HSC_Horizontal_Half_Line_Forward(FORM *form) argument
2212 HSC_Horizontal_Line_Backward(FORM *form) argument
2228 HSC_Horizontal_Half_Line_Backward(FORM *form) argument
2253 Is_There_Room_For_A_Line(FORM *form) argument
2275 Is_There_Room_For_A_Char_In_Line(FORM *form) argument
2310 Insert_String(FORM *form, int row, FIELD_CELL *txt, int len) argument
2385 Wrapping_Not_Necessary_Or_Wrapping_Ok(FORM *form) argument
2463 Field_Editing(int (*const fct) (FORM *), FORM *form) argument
2520 FE_New_Line(FORM *form) argument
2604 FE_Insert_Character(FORM *form) argument
2639 FE_Insert_Line(FORM *form) argument
2675 FE_Delete_Character(FORM *form) argument
2696 FE_Delete_Previous(FORM *form) argument
2766 FE_Delete_Line(FORM *form) argument
2784 FE_Delete_Word(FORM *form) argument
2824 FE_Clear_To_End_Of_Line(FORM *form) argument
2841 FE_Clear_To_End_Of_Field(FORM *form) argument
2858 FE_Clear_Field(FORM *form) argument
2882 EM_Overlay_Mode(FORM *form) argument
2898 EM_Insert_Mode(FORM *form) argument
2996 CR_Next_Choice(FORM *form) argument
3017 CR_Previous_Choice(FORM *form) argument
3129 FV_Validation(FORM *form) argument
3159 FORM *form = field->form; local
3187 _nc_First_Active_Field(FORM *form) argument
3241 FORM *form = field->form; local
3482 Inter_Field_Navigation(int (*const fct) (FORM *), FORM *form) argument
3507 FN_Next_Field(FORM *form) argument
3525 FN_Previous_Field(FORM *form) argument
3542 FN_First_Field(FORM *form) argument
3559 FN_Last_Field(FORM *form) argument
3578 FN_Sorted_Next_Field(FORM *form) argument
3596 FN_Sorted_Previous_Field(FORM *form) argument
3614 FN_Sorted_First_Field(FORM *form) argument
3632 FN_Sorted_Last_Field(FORM *form) argument
3650 FN_Left_Field(FORM *form) argument
3668 FN_Right_Field(FORM *form) argument
3688 FN_Up_Field(FORM *form) argument
3708 FN_Down_Field(FORM *form) argument
3740 _nc_Set_Form_Page(FORM *form, int page, FIELD *field) argument
3783 Next_Page_Number(const FORM *form) argument
3799 Previous_Page_Number(const FORM *form) argument
3825 Page_Navigation(int (*const fct) (FORM *), FORM *form) argument
3852 PN_Next_Page(FORM *form) argument
3868 PN_Previous_Page(FORM *form) argument
3884 PN_First_Page(FORM *form) argument
3900 PN_Last_Page(FORM *form) argument
3926 Data_Entry(FORM *form, int c) argument
4127 form_driver(FORM *form, int c) argument
[all...]
H A Dllib-lform36 #include "form.priv.h"
109 FORM *form,
115 const FORM *form)
379 FORM *form)
386 const FORM *form)
391 const FORM *form)
406 FORM *form)
411 FORM *form,
417 const FORM *form)
422 const FORM *form)
[all...]
H A Dllib-lformw36 #include "form.priv.h"
109 FORM *form,
115 const FORM *form)
379 FORM *form)
386 const FORM *form)
391 const FORM *form)
406 FORM *form)
411 FORM *form,
417 const FORM *form)
422 const FORM *form)
[all...]
H A Dfld_move.c33 #include "form.priv.h"
56 if (field->form)
H A Dform.priv.h33 /* $Id: form.priv.h,v 0.27 2008/09/08 20:29:05 tom Exp $ */
63 #include "form.h"
65 /* form status values */
73 #define _NEWPAGE (0x04U) /* field begins new page of form */
86 /* If form is NULL replace form argument by default-form */
87 #define Normalize_Form(form) \
88 ((form) = (form !
[all...]
H A Dfld_page.c33 #include "form.priv.h"
42 | the form.
53 if (field->form)
69 | new page on the form.
/freebsd-9.3-release/lib/ncurses/
H A DMakefile3 SUBDIR= ncurses form menu panel \
/freebsd-9.3-release/lib/libc/gen/
H A Dgetbsize.c10 * 2. Redistributions in binary form must reproduce the above copyright
49 const char *form; local
55 form = "";
65 form = "G";
70 form = "K";
75 form = "M";
96 form = "";
102 (void)snprintf(header, sizeof(header), "%ld%s-blocks", n, form);
/freebsd-9.3-release/contrib/ncurses/man/
H A Dman_db.renames96 form.3x form.3form
97 form_cursor.3x cursor.3form
98 form_data.3x data.3form
99 form_driver.3x driver.3form
100 form_field.3x field.3form
101 form_field_attributes.3x field_attributes.3form
102 form_field_buffer.3x field_buffer.3form
103 form_field_info.3x field_info.3form
[all...]
/freebsd-9.3-release/crypto/openssl/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,
67 buf_len = EC_POINT_point2oct(group, point, form, NULL, 0, ctx);
74 if (!EC_POINT_point2oct(group, point, form, buf, buf_len, ctx)) {
128 point_conversion_form_t form, BN_CTX *ctx)
134 buf_len = EC_POINT_point2oct(group, point, form, NULL, 0, ctx);
141 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
126 EC_POINT_point2hex(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, BN_CTX *ctx) argument
/freebsd-9.3-release/lib/libdwarf/
H A Ddwarf_attr.c10 * 2. Redistributions in binary form must reproduce the above copyright
63 dwarf_attr_add(Dwarf_Abbrev a, uint64_t attr, uint64_t form, Dwarf_Attribute *atp, Dwarf_Error *error) argument
83 at->at_form = form;
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfAccelTable.h112 // The HeaderData describes the form of each set of data. In general this
114 // (AtomType type) of data, and an encoding form (form). In the case of
118 // When written to disk this will have the form:
128 uint16_t form; // DWARF DW_FORM_ defines member in struct:llvm::DwarfAccelTable::Atom
130 Atom(uint16_t type, uint16_t form) : type(type), form(form) {} argument
134 << "Form: " << dwarf::FormEncodingString(form) << "\n";

Completed in 105 milliseconds

123456