Searched refs:FIELD (Results 1 - 25 of 63) sorted by relevance

123

/freebsd-9.3-release/contrib/ncurses/form/
H A Dform.h68 * FIELD *
99 * there are existing applications that manipulate the members of FIELD
106 } FIELD; typedef in typeref:struct:fieldnode
122 bool (*fcheck)(FIELD *,const void *); /* field validation */
125 bool (*next)(FIELD *,const void *); /* enumerate next value */
126 bool (*prev)(FIELD *,const void *); /* enumerate prev value */
149 FIELD ** field; /* field [maxfield] */
150 FIELD * current; /* current field */
285 extern NCURSES_EXPORT_VAR(FIELD *) _nc_Default_Field;
292 bool (* const field_check)(FIELD *,cons
[all...]
H A Df_trace.c37 NCURSES_EXPORT(FIELD **)
38 _nc_retrace_field_ptr(FIELD **code)
44 NCURSES_EXPORT(FIELD *)
45 _nc_retrace_field(FIELD *code)
H A Dfld_ftchoice.c41 | bool (* const next_choice)(FIELD *,const void *),
42 | bool (* const prev_choice)(FIELD *,const void *))
51 bool (*const next_choice) (FIELD *, const void *),
52 bool (*const prev_choice) (FIELD *, const void *))
H A Dfld_user.c39 | Function : int set_field_userptr(FIELD *field, void *usrptr)
47 set_field_userptr(FIELD *field, void *usrptr)
57 | Function : void *field_userptr(const FIELD *field)
66 field_userptr(const FIELD *field)
H A Dllib-lform39 FIELD **_nc_retrace_field_ptr(
40 FIELD **code)
41 { return(*(FIELD ***)0); }
44 FIELD *_nc_retrace_field(
45 FIELD *code)
46 { return(*(FIELD **)0); }
78 const FIELD *field)
85 FIELD *field,
91 const FIELD *field)
96 FIELD *fiel
[all...]
H A Dllib-lformw39 FIELD **_nc_retrace_field_ptr(
40 FIELD **code)
41 { return(*(FIELD ***)0); }
44 FIELD *_nc_retrace_field(
45 FIELD *code)
46 { return(*(FIELD **)0); }
78 const FIELD *field)
85 FIELD *field,
91 const FIELD *field)
96 FIELD *fiel
[all...]
H A Dfld_pad.c39 | Function : int set_field_pad(FIELD *field, int ch)
49 set_field_pad(FIELD *field, int ch)
71 | Function : int field_pad(const FIELD *field)
78 field_pad(const FIELD *field)
H A Dfld_page.c39 | Function : int set_new_page(FIELD *field, bool new_page_flag)
48 set_new_page(FIELD *field, bool new_page_flag)
66 | Function : bool new_page(const FIELD *field)
75 new_page(const FIELD *field)
H A Dfld_stat.c39 | Function : int set_field_status(FIELD *field, bool status)
47 set_field_status(FIELD *field, bool status)
63 | Function : bool field_status(const FIELD *field)
72 field_status(const FIELD *field)
H A Dfld_dup.c39 | Function : FIELD *dup_field(FIELD *field, int frow, int fcol)
50 NCURSES_EXPORT(FIELD *)
51 dup_field(FIELD *field, int frow, int fcol)
53 FIELD *New_Field = (FIELD *)0;
59 (New_Field = typeMalloc(FIELD, 1)))
98 returnField((FIELD *)0);
H A Dfld_link.c39 | Function : FIELD *link_field(FIELD *field, int frow, int fcol)
51 NCURSES_EXPORT(FIELD *)
52 link_field(FIELD *field, int frow, int fcol)
54 FIELD *New_Field = (FIELD *)0;
60 (New_Field = typeMalloc(FIELD, 1)))
93 returnField((FIELD *)0);
H A Dform.priv.h152 extern NCURSES_EXPORT(bool) _nc_Copy_Type (FIELD*, FIELD const *);
153 extern NCURSES_EXPORT(void) _nc_Free_Type (FIELD *);
155 extern NCURSES_EXPORT(int) _nc_Synchronize_Attributes (FIELD*);
156 extern NCURSES_EXPORT(int) _nc_Synchronize_Options (FIELD*, Field_Options);
157 extern NCURSES_EXPORT(int) _nc_Set_Form_Page (FORM*, int, FIELD*);
159 extern NCURSES_EXPORT(FIELD *) _nc_First_Active_Field (FORM*);
161 extern NCURSES_EXPORT(int) _nc_Set_Current_Field (FORM*, FIELD*);
176 extern NCURSES_EXPORT(FIELD **) _nc_retrace_field_ptr (FIELD **);
[all...]
H A Dfld_just.c39 | Function : int set_field_just(FIELD *field, int just)
48 set_field_just(FIELD *field, int just)
73 | Function : int field_just( const FIELD *field )
80 field_just(const FIELD *field)
H A Dfrm_def.c54 (FIELD **)0, /* field */
55 (FIELD *)0, /* current */
69 | Function : static FIELD *Insert_Field_By_Position(
70 | FIELD *new_field,
71 | FIELD *head )
79 static FIELD *
80 Insert_Field_By_Position(FIELD *newfield, FIELD *head)
82 FIELD *current, *newhead;
100 head = (FIELD *)
[all...]
H A Dfld_move.c39 | Function : int move_field(FIELD *field,int frow, int fcol)
49 move_field(FIELD *field, int frow, int fcol)
H A Dfld_opts.c43 | Function : int set_field_opts(FIELD *field, Field_Options opts)
54 set_field_opts(FIELD *field, Field_Options opts)
68 | Function : Field_Options field_opts(const FIELD *field)
75 field_opts(const FIELD *field)
84 | Function : int field_opts_on(FIELD *field, Field_Options opts)
95 field_opts_on(FIELD *field, Field_Options opts)
112 | Function : int field_opts_off(FIELD *field, Field_Options opts)
123 field_opts_off(FIELD *field, Field_Options opts)
H A Dfld_def.c38 static FIELD default_field =
57 (FIELD *)0, /* snext */
58 (FIELD *)0, /* sprev */
59 (FIELD *)0, /* link */
68 NCURSES_EXPORT_VAR(FIELD *)
206 | Function : bool _nc_Copy_Type( FIELD *dst, FIELD const *src )
214 _nc_Copy_Type(FIELD *dst, FIELD const *src)
242 | Function : void _nc_Free_Type( FIELD *fiel
[all...]
H A Dfld_attr.c42 NCURSES_IMPEXP int NCURSES_API set_field_ ## name (FIELD * field, chtype attr)\
67 NCURSES_IMPEXP chtype NCURSES_API field_ ## name (const FIELD * field)\
75 | Function : int set_field_fore(FIELD *field, chtype attr)
88 | Function : chtype field_fore(const FIELD *)
98 | Function : int set_field_back(FIELD *field, chtype attr)
H A Dfld_info.c39 | Function : int field_info(const FIELD *field,
50 field_info(const FIELD *field,
81 | Function : int dynamic_field_info(const FIELD *field,
92 dynamic_field_info(const FIELD *field, int *drows, int *dcols, int *maxgrow)
H A Dfld_type.c39 | Function : int set_field_type(FIELD *field, FIELDTYPE *type,...)
49 set_field_type(FIELD *field, FIELDTYPE *type,...)
84 | Function : FIELDTYPE *field_type(const FIELD *field)
91 field_type(const FIELD *field)
H A Dfld_current.c39 | Function : int set_current_field(FORM * form,FIELD * field)
51 set_current_field(FORM *form, FIELD *field)
107 | Function : FIELD *current_field(const FORM * form)
113 NCURSES_EXPORT(FIELD *)
122 | Function : int field_index(const FIELD * field)
131 field_index(const FIELD *field)
/freebsd-9.3-release/contrib/gcc/cp/
H A Ddecl.h27 FIELD, /* Declaration inside struct or union */ enumerator in enum:decl_context
/freebsd-9.3-release/contrib/gcc/config/rs6000/
H A Daix.h164 #define ADJUST_FIELD_ALIGN(FIELD, COMPUTED) \
166 (TYPE_MODE (TREE_CODE (TREE_TYPE (FIELD)) == ARRAY_TYPE \
167 ? get_inner_array_type (FIELD) \
168 : TREE_TYPE (FIELD)) == DFmode \
/freebsd-9.3-release/sys/netgraph/atm/uni/
H A Dng_uni_cust.h86 #define _TIMER_DESTROY(UNI,FIELD) _TIMER_STOP(UNI,FIELD)
87 #define _TIMER_STOP(UNI,FIELD) do { \
88 ng_uncallout(&FIELD.c, (UNI)->arg); \
92 #define _TIMER_START(UNI,ARG,FIELD,DUE,FUNC) do { \
93 _TIMER_STOP(UNI, FIELD); \
94 ng_callout(&FIELD.c, (UNI)->arg, NULL, \
/freebsd-9.3-release/sys/ia64/disasm/
H A Ddisasm_decode.c58 switch (FIELD(bits, 34, 2)) { /* x2a */
60 if (FIELD(bits, 33, 1) == 0) { /* ve */
61 switch (FIELD(bits, 29, 4)) { /* x4 */
63 if (FIELD(bits, 27, 2) <= 1) /* x2b */
68 if (FIELD(bits, 27, 2) <= 1) /* x2b */
73 if (FIELD(bits, 27, 2) == 0) /* x2b */
78 switch (FIELD(bits, 27, 2)) { /* x2b */
98 switch (FIELD(bits, 27, 2)) { /* x2b */
124 if (FIELD(bits, 27, 2) == 1) /* x2b */
132 switch (FIELD(bit
[all...]

Completed in 82 milliseconds

123