Home
last modified time | relevance | path

Searched refs:TypeArgument (Results 1 – 11 of 11) sorted by relevance

/freebsd-12-stable/contrib/ncurses/form/
Dfld_def.c84 NCURSES_EXPORT(TypeArgument *)
87 TypeArgument *res = (TypeArgument *)0; in _nc_Make_Argument()
88 TypeArgument *p; in _nc_Make_Argument()
95 p = typeMalloc(TypeArgument, 1); in _nc_Make_Argument()
111 if (!(res = (TypeArgument *)typ->makearg(ap))) in _nc_Make_Argument()
132 NCURSES_EXPORT(TypeArgument *)
133 _nc_Copy_Argument(const FIELDTYPE *typ, const TypeArgument *argp, int *err) in _nc_Copy_Argument()
135 TypeArgument *res = (TypeArgument *)0; in _nc_Copy_Argument()
136 TypeArgument *p; in _nc_Copy_Argument()
143 p = typeMalloc(TypeArgument, 1); in _nc_Copy_Argument()
[all …]
Dfty_generic.c159 static TypeArgument *
163 TypeArgument *res = (TypeArgument *)0; in GenericArgument()
170 TypeArgument *p = typeMalloc(TypeArgument, 1); in GenericArgument()
192 !(res = (TypeArgument *)typ->genericarg(argp))) in GenericArgument()
239 _nc_Free_Argument(field->type, (TypeArgument *)(field->arg)); in _nc_set_generic_fieldtype()
Dform.priv.h137 TypeArgument; typedef
166 extern NCURSES_EXPORT(TypeArgument *) _nc_Make_Argument (const FIELDTYPE*, va_list*, int*);
167 extern NCURSES_EXPORT(TypeArgument *) _nc_Copy_Argument (const FIELDTYPE*, const TypeArgument*, int…
168 extern NCURSES_EXPORT(void) _nc_Free_Argument (const FIELDTYPE*, TypeArgument*);
Dllib-lformtw129 TypeArgument *_nc_Make_Argument(
133 { return(*(TypeArgument **)0); }
136 TypeArgument *_nc_Copy_Argument(
138 const TypeArgument *argp,
140 { return(*(TypeArgument **)0); }
145 TypeArgument *argp)
Dllib-lformt129 TypeArgument *_nc_Make_Argument(
133 { return(*(TypeArgument **)0); }
136 TypeArgument *_nc_Copy_Argument(
138 const TypeArgument *argp,
140 { return(*(TypeArgument **)0); }
145 TypeArgument *argp)
Dllib-lformw129 TypeArgument *_nc_Make_Argument(
133 { return(*(TypeArgument **)0); }
136 TypeArgument *_nc_Copy_Argument(
138 const TypeArgument *argp,
140 { return(*(TypeArgument **)0); }
145 TypeArgument *argp)
Dllib-lform129 TypeArgument *_nc_Make_Argument(
133 { return(*(TypeArgument **)0); }
136 TypeArgument *_nc_Copy_Argument(
138 const TypeArgument *argp,
140 { return(*(TypeArgument **)0); }
145 TypeArgument *argp)
Dfld_type.c67 _nc_Free_Argument(field->type, (TypeArgument *)(field->arg)); in NCURSES_EXPORT()
Dfrm_driver.c1054 TypeArgument *argp) in Check_Char()
2653 (TypeArgument *)(field->arg))) in FE_Insert_Character()
2689 field->type, (int)C_BLANK, (TypeArgument *)(field->arg))) in FE_Insert_Line()
2971 Next_Choice(FORM *form, FIELDTYPE *typ, FIELD *field, TypeArgument *argp) in Next_Choice()
3012 Previous_Choice(FORM *form, FIELDTYPE *typ, FIELD *field, TypeArgument *argp) in Previous_Choice()
3062 returnCode((Next_Choice(form, field->type, field, (TypeArgument *)(field->arg))) in CR_Next_Choice()
3083 returnCode((Previous_Choice(form, field->type, field, (TypeArgument *)(field->arg))) in CR_Previous_Choice()
3110 Check_Field(FORM *form, FIELDTYPE *typ, FIELD *field, TypeArgument *argp) in Check_Field()
3173 if (!Check_Field(form, field->type, field, (TypeArgument *)(field->arg))) in _nc_Internal_Validation()
4451 (TypeArgument *)(form->current->arg))) in form_driver()
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Basic/
DAttr.td205 class TypeArgument<string name, bit opt = 0> : Argument<name, opt>;
1497 let Args = [TypeArgument<"Interface", 1>];
2548 let Args = [TypeArgument<"TypedefType">];
2783 let Args = [TypeArgument<"TypeHint">];
3303 TypeArgument<"MatchingCType">,
3314 let Args = [TypeArgument<"DerefType", /*opt=*/1>];
3321 let Args = [TypeArgument<"DerefType", /*opt=*/1>];
/freebsd-12-stable/contrib/llvm-project/clang/utils/TableGen/
DClangAttrEmitter.cpp1256 class TypeArgument : public SimpleArgument { class
1258 TypeArgument(const Record &Arg, StringRef Attr) in TypeArgument() function in __anon00b70f170211::TypeArgument
1331 Ptr = std::make_unique<TypeArgument>(Arg, Attr); in createArgument()