Home
last modified time | relevance | path

Searched full:form (Results 1 – 25 of 6757) sorted by relevance

12345678910>>...271

/freebsd/contrib/ncurses/form/
H A Dfrm_def.c34 #include "form.priv.h"
39 static FORM default_form =
65 FORM_EXPORT_VAR(FORM *) _nc_Default_Form = &default_form;
117 | Function : static void Disconnect_Fields(FORM *form)
119 | Description : Break association between form and array of fields.
124 Disconnect_Fields(FORM *form) in Disconnect_Fields() argument
126 if (form->field) in Disconnect_Fields()
130 for (fields = form->field; *fields; fields++) in Disconnect_Fields()
132 if (form == (*fields)->form) in Disconnect_Fields()
133 (*fields)->form = (FORM *)0; in Disconnect_Fields()
[all …]
H A Dfrm_driver.c34 #include "form.priv.h"
39 This is the core module of the form library. It contains the majority
51 The current page of the form is left and some new page is
54 The current field of the form is left and some new field is
84 our form implementation. This doesn't affect the API, so we feel it is
117 static int Inter_Field_Navigation(int (*const fct) (FORM *), FORM *form);
118 static int FN_Next_Field(FORM *form);
119 static int FN_Previous_Field(FORM *form);
120 static int FE_New_Line(FORM *);
121 static int FE_Delete_Previous(FORM *);
[all …]
H A Dllib-lformt37 #include <form.priv.h>
55 FORM *_nc_retrace_form(
56 FORM *code)
57 { return(*(FORM **)0); }
110 FORM *form,
116 FORM *const form)
121 const FORM *form)
385 FORM *form)
392 const FORM *form)
397 const FORM *form)
[all …]
H A Dllib-lform37 #include <form.priv.h>
55 FORM *_nc_retrace_form(
56 FORM *code)
57 { return(*(FORM **)0); }
110 FORM *form,
116 FORM *const form)
121 const FORM *form)
385 FORM *form)
392 const FORM *form)
397 const FORM *form)
[all …]
H A Dllib-lformtw37 #include <form.priv.h>
55 FORM *_nc_retrace_form(
56 FORM *code)
57 { return(*(FORM **)0); }
110 FORM *form,
116 FORM *const form)
121 const FORM *form)
385 FORM *form)
392 const FORM *form)
397 const FORM *form)
[all …]
H A Dllib-lformw37 #include <form.priv.h>
55 FORM *_nc_retrace_form(
56 FORM *code)
57 { return(*(FORM **)0); }
110 FORM *form,
116 FORM *const form)
121 const FORM *form)
385 FORM *form)
392 const FORM *form)
397 const FORM *form)
[all …]
H A Dfrm_post.c34 #include "form.priv.h"
40 | Function : int post_form(FORM * form)
42 | Description : Writes the form into its associated subwindow.
45 | E_BAD_ARGUMENT - invalid form pointer
46 | E_POSTED - form already posted
47 | E_NOT_CONNECTED - no fields connected to form
48 | E_NO_ROOM - form doesn't fit into subwindow
52 post_form(FORM *form) in FORM_EXPORT()
58 T((T_CALLED("post_form(%p)"), (void *)form)); in FORM_EXPORT()
60 if (!form) in FORM_EXPORT()
[all …]
H A Dfld_current.c34 #include "form.priv.h"
40 | Function : int set_current_field(FORM * form,FIELD * field)
42 | Description : Set the current field of the form to the specified one.
45 | E_BAD_ARGUMENT - invalid form or field pointer
52 set_current_field(FORM *form, FIELD *field) in FORM_EXPORT()
56 T((T_CALLED("set_current_field(%p,%p)"), (void *)form, (void *)field)); in FORM_EXPORT()
57 if (form == 0 || field == 0) in FORM_EXPORT()
61 else if ((form != field->form) || Field_Is_Not_Selectable(field)) in FORM_EXPORT()
65 else if ((form->status & _POSTED) == 0) in FORM_EXPORT()
67 form->current = field; in FORM_EXPORT()
[all …]
H A Dfrm_page.c34 #include "form.priv.h"
40 | Function : int set_form_page(FORM * form,int page)
42 | Description : Set the page number of the form.
45 | E_BAD_ARGUMENT - invalid form pointer or page number
51 set_form_page(FORM *form, int page) in FORM_EXPORT()
55 T((T_CALLED("set_form_page(%p,%d)"), (void *)form, page)); in FORM_EXPORT()
57 if (!form || (page < 0) || (page >= form->maxpage)) in FORM_EXPORT()
60 if (!(form->status & _POSTED)) in FORM_EXPORT()
62 form->curpage = (short)page; in FORM_EXPORT()
63 form->current = _nc_First_Active_Field(form); in FORM_EXPORT()
[all …]
H A Dform.priv.h34 /* $Id: form.priv.h,v 0.49 2024/02/24 12:17:31 tom Exp $ */
63 #include "form.h"
68 extern FORM_EXPORT_VAR(FORM *) _nc_Default_Form;
72 /* form status values */
73 #define _OVLMODE (0x04U) /* Form is in overlay mode */
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) \ argument
96 ((form) = (form != 0) ? (form) : _nc_Default_Form)
103 #define Get_Form_Screen(form) \ argument
[all …]
H A Dfrm_data.c34 #include "form.priv.h"
40 | Function : bool data_behind(const FORM *form)
49 data_behind(const FORM *form) in FORM_EXPORT()
53 T((T_CALLED("data_behind(%p)"), (const void *)form)); in FORM_EXPORT()
55 if (form && (form->status & _POSTED) && form->current) in FORM_EXPORT()
59 field = form->current; in FORM_EXPORT()
62 result = (form->toprow == 0) ? FALSE : TRUE; in FORM_EXPORT()
66 result = (form->begincol == 0) ? FALSE : TRUE; in FORM_EXPORT()
127 | Function : bool data_ahead(const FORM *form)
136 data_ahead(const FORM *form) in data_ahead() argument
[all …]
H A Dfrm_hook.c34 #include "form.priv.h"
40 FORM_IMPEXP int NCURSES_API set_ ## typ ## _ ## name (FORM *form, Form_Hook func)\
43 T((T_CALLED("set_" #typ"_"#name"(%p,%s)"), (void *) form, TR_FUNC_ARG(0, func)));\
44 (Normalize_Form( form ) -> typ ## name) = func ;\
50 FORM_IMPEXP Form_Hook NCURSES_API typ ## _ ## name ( const FORM *form )\
52 T((T_CALLED(#typ "_" #name "(%p)"), (const void *) form));\
53 returnFormHook( Normalize_Form( form ) -> typ ## name );\
58 | Function : int set_field_init(FORM *form, Form_Hook f)
61 | to be called when the form is posted and just after
70 | Function : Form_Hook field_init(const FORM *form)
[all …]
H A Dfrm_opts.c34 #include "form.priv.h"
40 | Function : int set_form_opts(FORM *form, Form_Options opts)
43 | remaining options for that form.
49 set_form_opts(FORM *form, Form_Options opts) in FORM_EXPORT()
51 T((T_CALLED("set_form_opts(%p,%d)"), (void *)form, opts)); in FORM_EXPORT()
58 Normalize_Form(form)->opts = opts; in FORM_EXPORT()
65 | Function : Form_Options form_opts(const FORM *)
67 | Description : Retrieves the current form options.
72 form_opts(const FORM *form) in form_opts() argument
74 T((T_CALLED("form_opts(%p)"), (const void *)form)); in form_opts()
[all …]
/freebsd/share/i18n/csmapper/CP/
H A DCP1046%UCS.src11 # 2. Redistributions in binary form must reproduce the above copyright
46 0x80 = 0xFE88 # ARABIC LETTER ALEF WITH HAMZA BELOW FINAL FORM
49 0x83 = 0xF8F6 # ARABIC LETTER SEEN ISOLATED FORM
50 0x84 = 0xF8F5 # ARABIC LETTER SHEEN ISOLATED FORM
51 0x85 = 0xF8F4 # ARABIC LETTER SAD ISOLATED FORM
52 0x86 = 0xF8F7 # ARABIC LETTER DAD ISOLATED FORM
62 0x90 = 0xFE79 # ARABIC LETTER DAMMA MEDIAL FORM
63 0x91 = 0xFE7B # ARABIC LETTER KASRA MEDIAL FORM
64 0x92 = 0xFE7D # ARABIC LETTER SHADDA MEDIAL FORM
65 0x93 = 0xFE7F # ARABIC LETTER SUKUN MEDIAL FORM
[all …]
H A DUCS%CP1046.src11 # 2. Redistributions in binary form must reproduce the above copyright
813 0xFE70 = 0xEB # ARABIC FATHATAN ISOLATED FORM
815 0xFE72 = 0xEC # ARABIC DAMMATAN ISOLATED FORM
817 0xFE74 = 0xED # ARABIC KASRATAN ISOLATED FORM
818 0xFE76 = 0xEE # ARABIC FATHA ISOLATED FORM
819 0xFE77 = 0x94 # ARABIC FATHA MEDIAL FORM
820 0xFE78 = 0xEF # ARABIC DAMMA ISOLATED FORM
821 0xFE79 = 0x90 # ARABIC LETTER DAMMA MEDIAL FORM
822 0xFE7A = 0xF0 # ARABIC KASRA ISOLATED FORM
823 0xFE7B = 0x91 # ARABIC LETTER KASRA MEDIAL FORM
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFFormValue.h57 dwarf::Form Form; /// Form for this value.
60 ValueType Value; /// Contains all data for the form.
64 DWARFFormValue(dwarf::Form F, const ValueType &V) : Form(F), Value(V) {} in DWARFFormValue()
67 DWARFFormValue(dwarf::Form F = dwarf::Form(0)) : Form(F) {} in Form() function
69 static DWARFFormValue createFromSValue(dwarf::Form F, int64_t V);
70 static DWARFFormValue createFromUValue(dwarf::Form F, uint64_t V);
71 static DWARFFormValue createFromPValue(dwarf::Form F, const char *V);
72 static DWARFFormValue createFromBlockValue(dwarf::Form F,
74 static DWARFFormValue createFromUnit(dwarf::Form F, const DWARFUnit *Unit,
77 getAsSectionedAddress(const ValueType &Val, const dwarf::Form Form,
[all …]
/freebsd/contrib/ncurses/man/
H A Dform_hook.3x37 \fB#include <form.h>
39 \fBint set_field_init(FORM *\fIform\fP, Form_Hook \fIfunc\fP);
40 \fBForm_Hook field_init(const FORM *\fIform\fP);
42 \fBint set_field_term(FORM *\fIform\fP, Form_Hook \fIfunc\fP);
43 \fBForm_Hook field_term(const FORM *\fIform\fP);
45 \fBint set_form_init(FORM *\fIform\fP, Form_Hook \fIfunc\fP);
46 \fBForm_Hook form_init(const FORM *\fIform\fP);
48 \fBint set_form_term(FORM *\fIform\fP, Form_Hook \fIfunc\fP);
49 \fBForm_Hook form_term(const FORM *\fIform\fP);
55 sets a hook to be called at form-post time
[all …]
H A Dform_win.3x34 make and break form window and subwindow associations
37 \fB#include <form.h>
39 \fBint set_form_win(FORM *\fIform\fP, WINDOW *\fIwin\fP);
40 \fBWINDOW *form_win(const FORM *\fIform\fP);
42 \fBint set_form_sub(FORM *\fIform\fP, WINDOW *\fIsub\fP);
43 \fBWINDOW *form_sub(const FORM *\fIform\fP);
45 \fBint scale_form(const FORM *\fIform\fP, int *\fIrows\fP, int *\fIcolumns\fP);
48 Every form has an associated pair of \fBcurses\fP windows.
49 The form window
50 displays any title and border associated with the window; the form subwindow
[all …]
H A Dform_page.3x34 set and get form page number
37 \fB#include <form.h>
39 \fBint set_current_field(FORM *\fIform\fP, FIELD *\fIfield\fP);
40 \fBFIELD *current_field(const FORM *\fIform\fP);
42 \fBint unfocus_current_field(FORM *\fIform\fP);
44 \fBint set_form_page(FORM *\fIform\fP, int \fIn\fP);
45 \fBint form_page(const FORM *\fIform\fP);
51 form; \fBcurrent_field\fP returns the current field of the given form.
54 field of the form.
57 The function \fBset_form_page\fP sets the form's page number (goes to page
[all …]
H A Dform_driver.3x40 command-processing loop of the form system
43 \fB#include <form.h>
45 \fBint form_driver(FORM *\fIform\fP, int \fIc\fP);
46 \fBint form_driver_w(FORM *\fIform\fP, int \fIc\fP, wchar_t \fIwc\fP);
50 Once a form has been posted (displayed), you should funnel input events to it
53 The input is a form navigation request.
54 Navigation request codes are constants defined in \fB<form.h>\fP,
70 .SS "Form Driver Requests"
71 The form driver requests are as follows:
143 The form library makes updates to the window associated
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDIE.cpp40 ID.AddInteger(unsigned(Form)); in Profile()
41 if (Form == dwarf::DW_FORM_implicit_const) in Profile()
75 // Emit form type. in Emit()
77 // Could be an assertion, but this way we can see the failing form code in Emit()
81 LLVM_DEBUG(dbgs() << "Invalid form " << format("0x%x", AttrData.getForm()) in Emit()
84 llvm_unreachable("Invalid form for specified DWARF version"); in Emit()
321 getDIE##T().emitValue(AP, Form); \ in emitValue()
333 return getDIE##T().sizeOf(FormParams, Form); in sizeOf()
364 void DIEInteger::emitValue(const AsmPrinter *Asm, dwarf::Form Form) const { in emitValue()
365 switch (Form) { in emitValue()
[all …]
/freebsd/contrib/bsddialog/lib/
H A Dformbox.c11 * 2. Redistributions in binary form must reproduce the above copyright
84 wchar_t securewch; /* wide char of conf.form.secure[mb]ch */
115 if (conf->form.securembch != NULL) { in build_privateform()
116 mbchsize = mblen(conf->form.securembch, MB_LEN_MAX); in build_privateform()
117 if (mbtowc(&f->securewch, conf->form.securembch, mbchsize) < 0) in build_privateform()
120 } else if (conf->form.securech != '\0') { in build_privateform()
121 f->securewch = btowc(conf->form.securech); in build_privateform()
130 RETURN_ERROR("Cannot allocate internal form.pritems"); in build_privateform()
364 if (conf->form.value_wchar) in return_values()
476 color = t.form in drawitem()
684 struct privateform form; bsddialog_form() local
[all...]
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DDIE.h53 /// Dwarf form code.
54 dwarf::Form Form; variable
60 DIEAbbrevData(dwarf::Attribute A, dwarf::Form F) in DIEAbbrevData()
61 : Attribute(A), Form(F) {} in DIEAbbrevData()
63 : Attribute(A), Form(dwarf::DW_FORM_implicit_const), Value(V) {} in DIEAbbrevData()
68 dwarf::Form getForm() const { return Form; } in getForm()
109 void AddAttribute(dwarf::Attribute Attribute, dwarf::Form Form) { in AddAttribute() argument
110 Data.push_back(DIEAbbrevData(Attribute, Form)); in AddAttribute()
174 /// Choose the best form for integer.
175 static dwarf::Form BestForm(bool IsSigned, uint64_t Int) { in BestForm()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFFormValue.cpp82 DWARFFormValue DWARFFormValue::createFromSValue(dwarf::Form F, int64_t V) { in createFromSValue()
86 DWARFFormValue DWARFFormValue::createFromUValue(dwarf::Form F, uint64_t V) { in createFromUValue()
90 DWARFFormValue DWARFFormValue::createFromPValue(dwarf::Form F, const char *V) { in createFromPValue()
94 DWARFFormValue DWARFFormValue::createFromBlockValue(dwarf::Form F, in createFromBlockValue()
102 DWARFFormValue DWARFFormValue::createFromUnit(dwarf::Form F, const DWARFUnit *U, in createFromUnit()
110 bool DWARFFormValue::skipValue(dwarf::Form Form, DataExtractor DebugInfoData, in skipValue() argument
115 switch (Form) { in skipValue()
177 dwarf::getFixedFormByteSize(Form, Params)) { in skipValue()
206 Form = static_cast<dwarf::Form>(DebugInfoData.getULEB128(OffsetPtr)); in skipValue()
217 return doesFormBelongToClass(Form, FC, U ? U->getVersion() : 3); in isFormClass()
[all …]
/freebsd/contrib/ncurses/doc/
H A Dncurses-intro.doc81 + Control of Form Display
92 + Form Options
1287 The form library is a curses extension that supports easy programming
1290 The form library first appeared in AT&T System V. The version
1291 documented here is the form code distributed with ncurses.
1293 Compiling With the form Library
1295 Your form-using modules must import the form library declarations with
1296 #include <form.h>
1305 A form is a collection of fields; each field may be either a label
1309 To make forms, you create groups of fields and connect them with form
[all …]

12345678910>>...271