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

12345678

/freebsd-11-stable/contrib/ncurses/form/
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)"), (void *)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)"), (void *)form));
59 if (!form)
101 unpost_form(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
51 (const void *)form,
55 if (!form)
58 if (!(form->field))
62 *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)"), (void *)form, (void *)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)"), (const void *)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)"), (void *)form, (void *)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_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)"), (void *)form, (void *)win));
51 if (form && (form->status & _POSTED))
56 FORM *f = Normalize_Form(form);
61 Normalize_Form(form)
76 form_sub(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)"), (void *)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
301 FORM *form = (FORM *)0; local
364 free_form(FORM *form) argument
395 set_form_fields(FORM *form, FIELD **fields) argument
426 form_fields(const FORM *form) argument
441 field_count(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)"), (void *) 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)"), (const void *) 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_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)"), (void *)form, (void *)win));
51 if (form && (form->status & _POSTED))
56 FORM *f = Normalize_Form(form);
61 Normalize_Form(form)
76 form_win(const FORM *form) argument
[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)"), (const void *)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
528 _nc_get_fieldbuffer(FORM *form, FIELD *field, FIELD_CELL *buf) argument
583 Window_To_Buffer(FORM *form, FIELD *field) argument
600 Synchronize_Buffer(FORM *form) argument
641 FORM *form = field->form; local
806 _nc_Position_Form_Cursor(FORM *form) argument
847 _nc_Refresh_Current_Field(FORM *form) argument
1050 Check_Char(FORM *form, FIELD *field, FIELDTYPE *typ, int ch, TypeArgument *argp) argument
1159 FORM *form; local
1239 FORM *form; local
1307 FORM *form; local
1405 _nc_Set_Current_Field(FORM *form, FIELD *newfield) argument
1512 IFN_Next_Character(FORM *form) argument
1554 IFN_Previous_Character(FORM *form) argument
1583 IFN_Next_Line(FORM *form) argument
1611 IFN_Previous_Line(FORM *form) argument
1633 IFN_Next_Word(FORM *form) argument
1675 IFN_Previous_Word(FORM *form) argument
1729 IFN_Beginning_Of_Field(FORM *form) argument
1752 IFN_End_Of_Field(FORM *form) argument
1776 IFN_Beginning_Of_Line(FORM *form) argument
1800 IFN_End_Of_Line(FORM *form) argument
1827 IFN_Left_Character(FORM *form) argument
1852 IFN_Right_Character(FORM *form) argument
1883 IFN_Up_Character(FORM *form) argument
1905 IFN_Down_Character(FORM *form) argument
1940 VSC_Generic(FORM *form, int nlines) argument
1993 Vertical_Scrolling(int (*const fct) (FORM *), FORM *form) argument
2016 VSC_Scroll_Line_Forward(FORM *form) argument
2032 VSC_Scroll_Line_Backward(FORM *form) argument
2048 VSC_Scroll_Page_Forward(FORM *form) argument
2064 VSC_Scroll_Half_Page_Forward(FORM *form) argument
2080 VSC_Scroll_Page_Backward(FORM *form) argument
2096 VSC_Scroll_Half_Page_Backward(FORM *form) argument
2120 HSC_Generic(FORM *form, int ncolumns) argument
2172 Horizontal_Scrolling(int (*const fct) (FORM *), FORM *form) argument
2190 HSC_Scroll_Char_Forward(FORM *form) argument
2206 HSC_Scroll_Char_Backward(FORM *form) argument
2222 HSC_Horizontal_Line_Forward(FORM *form) argument
2238 HSC_Horizontal_Half_Line_Forward(FORM *form) argument
2254 HSC_Horizontal_Line_Backward(FORM *form) argument
2270 HSC_Horizontal_Half_Line_Backward(FORM *form) argument
2295 Is_There_Room_For_A_Line(FORM *form) argument
2317 Is_There_Room_For_A_Char_In_Line(FORM *form) argument
2352 Insert_String(FORM *form, int row, FIELD_CELL *txt, int len) argument
2427 Wrapping_Not_Necessary_Or_Wrapping_Ok(FORM *form) argument
2505 Field_Editing(int (*const fct) (FORM *), FORM *form) argument
2562 FE_New_Line(FORM *form) argument
2646 FE_Insert_Character(FORM *form) argument
2682 FE_Insert_Line(FORM *form) argument
2719 FE_Delete_Character(FORM *form) argument
2740 FE_Delete_Previous(FORM *form) argument
2810 FE_Delete_Line(FORM *form) argument
2828 FE_Delete_Word(FORM *form) argument
2868 FE_Clear_To_End_Of_Line(FORM *form) argument
2885 FE_Clear_To_End_Of_Field(FORM *form) argument
2902 FE_Clear_Field(FORM *form) argument
2926 EM_Overlay_Mode(FORM *form) argument
2942 EM_Insert_Mode(FORM *form) argument
2971 Next_Choice(FORM *form, FIELDTYPE *typ, FIELD *field, TypeArgument *argp) argument
3012 Previous_Choice(FORM *form, FIELDTYPE *typ, FIELD *field, TypeArgument *argp) argument
3056 CR_Next_Choice(FORM *form) argument
3077 CR_Previous_Choice(FORM *form) argument
3110 Check_Field(FORM *form, FIELDTYPE *typ, FIELD *field, TypeArgument *argp) argument
3199 FV_Validation(FORM *form) argument
3229 FORM *form = field->form; local
3257 _nc_First_Active_Field(FORM *form) argument
3312 FORM *form = field->form; local
3553 Inter_Field_Navigation(int (*const fct) (FORM *), FORM *form) argument
3578 FN_Next_Field(FORM *form) argument
3596 FN_Previous_Field(FORM *form) argument
3613 FN_First_Field(FORM *form) argument
3630 FN_Last_Field(FORM *form) argument
3649 FN_Sorted_Next_Field(FORM *form) argument
3667 FN_Sorted_Previous_Field(FORM *form) argument
3685 FN_Sorted_First_Field(FORM *form) argument
3703 FN_Sorted_Last_Field(FORM *form) argument
3721 FN_Left_Field(FORM *form) argument
3739 FN_Right_Field(FORM *form) argument
3759 FN_Up_Field(FORM *form) argument
3779 FN_Down_Field(FORM *form) argument
3811 _nc_Set_Form_Page(FORM *form, int page, FIELD *field) argument
3854 Next_Page_Number(const FORM *form) argument
3870 Previous_Page_Number(const FORM *form) argument
3896 Page_Navigation(int (*const fct) (FORM *), FORM *form) argument
3923 PN_Next_Page(FORM *form) argument
3939 PN_Previous_Page(FORM *form) argument
3955 PN_First_Page(FORM *form) argument
3971 PN_Last_Page(FORM *form) argument
3998 Data_Entry_w(FORM *form, wchar_t c) argument
4085 Data_Entry(FORM *form, int c) argument
4286 form_driver(FORM *form, int c) argument
4491 form_driver_w(FORM *form, int type, wchar_t c) 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)"), (void *)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)"), (const void *)form));
74 returnCode((Form_Options) ((unsigned)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 Dfld_move.c33 #include "form.priv.h"
56 if (field->form)
H A Dform.priv.h33 /* $Id: form.priv.h,v 0.33 2012/03/11 00:37:46 tom Exp $ */
63 #include "form.h"
72 /* form status values */
80 #define _NEWPAGE (0x04U) /* field begins new page of form */
94 /* If form is NULL replace form argument by default-form */
95 #define Normalize_Form(form) \
96 ((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-11-stable/lib/libc/gen/
H A Dgetbsize.c10 * 2. Redistributions in binary form must reproduce the above copyright
47 const char *form; local
53 form = "";
63 form = "G";
68 form = "K";
73 form = "M";
94 form = "";
100 (void)snprintf(header, sizeof(header), "%ld%s-blocks", n, form);
/freebsd-11-stable/crypto/openssl/crypto/ec/
H A Dec2_oct.c26 * 2. Redistributions in binary form must reproduce the above copyright
45 * 6. Redistributions of any form whatsoever must retain the following
174 point_conversion_form_t form,
183 if ((form != POINT_CONVERSION_COMPRESSED)
184 && (form != POINT_CONVERSION_UNCOMPRESSED)
185 && (form != POINT_CONVERSION_HYBRID)) {
205 (form ==
232 buf[0] = form;
233 if ((form != POINT_CONVERSION_UNCOMPRESSED) && !BN_is_zero(x)) {
258 if (form
173 ec_GF2m_simple_point2oct(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, unsigned char *buf, size_t len, BN_CTX *ctx) argument
301 point_conversion_form_t form; local
[all...]
H A Decp_oct.c17 * 2. Redistributions in binary form must reproduce the above copyright
36 * 6. Redistributions of any form whatsoever must retain the following
211 point_conversion_form_t form,
220 if ((form != POINT_CONVERSION_COMPRESSED)
221 && (form != POINT_CONVERSION_UNCOMPRESSED)
222 && (form != POINT_CONVERSION_HYBRID)) {
242 (form ==
268 if ((form == POINT_CONVERSION_COMPRESSED
269 || form == POINT_CONVERSION_HYBRID) && BN_is_odd(y))
270 buf[0] = form
210 ec_GFp_simple_point2oct(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, unsigned char *buf, size_t len, BN_CTX *ctx) argument
330 point_conversion_form_t form; local
[all...]
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-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFAttribute.h21 DWARFAttribute(dw_attr_t attr, dw_form_t form, argument
23 : m_attr(attr), m_form(form), m_value(value) {}
25 void set(dw_attr_t attr, dw_form_t form) { argument
27 m_form = form;
31 void get(dw_attr_t &attr, dw_form_t &form, argument
34 form = m_form;
56 dw_attr_t attr, dw_form_t form);
H A DDWARFFormValue.h43 DWARFFormValue(const DWARFUnit *unit, dw_form_t form) argument
44 : m_unit(unit), m_form(form) {}
48 void SetForm(dw_form_t form) { m_form = form; } argument
57 static llvm::Optional<uint8_t> GetFixedSize(dw_form_t form,
72 static bool SkipValue(const dw_form_t form,
75 static bool IsBlockForm(const dw_form_t form);
76 static bool IsDataForm(const dw_form_t form);
79 static bool FormIsSupported(dw_form_t form);
84 const DWARFUnit *m_unit = nullptr; // Unit for this form
[all...]
H A DDWARFAbbreviationDeclaration.cpp46 dw_form_t form = data.GetULEB128(offset_ptr); local
51 if (!attr && !form)
54 if (!attr || !form)
60 if (form == DW_FORM_implicit_const)
63 m_attributes.push_back(DWARFAttribute(attr, form, val));
/freebsd-11-stable/lib/ncurses/
H A DMakefile3 SUBDIR= ncurses form menu panel \
/freebsd-11-stable/contrib/mdocml/
H A Ddba.h43 const char *, const char *, enum form);

Completed in 132 milliseconds

12345678