Home
last modified time | relevance | path

Searched refs:new_field (Results 1 – 12 of 12) sorted by relevance

/NextBSD/contrib/ncurses/misc/
HDform.ref27 "new_field" @30 ;NONAME
HDform.def70 "new_field" @30 NONAME
/NextBSD/lib/ncurses/form/
HDMakefile116 form_field_new.3 new_field.3 \
/NextBSD/contrib/gdb/gdb/
HDdwarf2read.c2568 struct nextfield *new_field; in dwarf2_add_field() local
2574 new_field = (struct nextfield *) xmalloc (sizeof (struct nextfield)); in dwarf2_add_field()
2575 make_cleanup (xfree, new_field); in dwarf2_add_field()
2576 memset (new_field, 0, sizeof (struct nextfield)); in dwarf2_add_field()
2577 new_field->next = fip->fields; in dwarf2_add_field()
2578 fip->fields = new_field; in dwarf2_add_field()
2585 new_field->accessibility = DW_ACCESS_public; in dwarf2_add_field()
2587 new_field->accessibility = DW_ACCESS_private; in dwarf2_add_field()
2588 new_field->virtuality = DW_VIRTUALITY_none; in dwarf2_add_field()
2592 new_field->accessibility = DW_UNSND (attr); in dwarf2_add_field()
[all …]
/NextBSD/contrib/ncurses/form/
HDfld_def.c277 new_field(int rows, int cols, int frow, int fcol, int nrow, int nbuf) in new_field() function
HDllib-lformtw159 #undef new_field
160 FIELD *new_field(
HDllib-lform159 #undef new_field
160 FIELD *new_field(
HDllib-lformw159 #undef new_field
160 FIELD *new_field(
HDllib-lformt159 #undef new_field
160 FIELD *new_field(
HDform.h324 extern NCURSES_EXPORT(FIELD *) new_field (int,int,int,int,int,int);
/NextBSD/contrib/ncurses/doc/
HDncurses-intro.doc1314 2. Create the form fields, using new_field().
1336 The basic function for creating fields is new_field():
1337 FIELD *new_field(int height, int width, /* new field size */
1343 multiple rows. So new_field() requires you to specify a width and
1400 Note that new_field() does not copy the pointer array into private
1419 When a field is created, the attributes not specified by the new_field
1434 This function is a sort of inverse of new_field(); instead of setting
/NextBSD/contrib/gcc/
HDsys-protos.h761 extern FIELD * new_field(int, int, int, int, int, int);