Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/ncurses/form/
H A Dfld_def.c85 NCURSES_EXPORT(TypeArgument *)
88 TypeArgument *res = (TypeArgument *)0; in _nc_Make_Argument()
89 TypeArgument *p; in _nc_Make_Argument()
96 p = typeMalloc(TypeArgument, 1); in _nc_Make_Argument()
112 if (!(res = (TypeArgument *)typ->makearg(ap))) in _nc_Make_Argument()
133 NCURSES_EXPORT(TypeArgument *)
136 TypeArgument *res = (TypeArgument *)0; in _nc_Copy_Argument()
137 TypeArgument *p; in _nc_Copy_Argument()
144 p = typeMalloc(TypeArgument, 1); in _nc_Copy_Argument()
165 res = (TypeArgument *)argp; in _nc_Copy_Argument()
[all …]
H A Dfty_generic.c166 static TypeArgument *
170 TypeArgument *res = (TypeArgument *)0; in GenericArgument()
177 TypeArgument *p = typeMalloc(TypeArgument, 1); in GenericArgument()
199 !(res = (TypeArgument *)typ->genericarg(argp))) in GenericArgument()
246 _nc_Free_Argument(field->type, (TypeArgument *)(field->arg)); in _nc_set_generic_fieldtype()
H A Dform.priv.h143 TypeArgument; typedef
179 extern NCURSES_EXPORT(TypeArgument *) _nc_Make_Argument (const FIELDTYPE*, va_list*, int*);
180 extern NCURSES_EXPORT(TypeArgument *) _nc_Copy_Argument (const FIELDTYPE*, const TypeArgument*, int…
181 extern NCURSES_EXPORT(void) _nc_Free_Argument (const FIELDTYPE*, TypeArgument*);
H A Dllib-lformw135 TypeArgument *_nc_Make_Argument(
139 { return(*(TypeArgument **)0); }
142 TypeArgument *_nc_Copy_Argument(
144 const TypeArgument *argp,
146 { return(*(TypeArgument **)0); }
151 TypeArgument *argp)
H A Dllib-lform135 TypeArgument *_nc_Make_Argument(
139 { return(*(TypeArgument **)0); }
142 TypeArgument *_nc_Copy_Argument(
144 const TypeArgument *argp,
146 { return(*(TypeArgument **)0); }
151 TypeArgument *argp)
H A Dllib-lformtw135 TypeArgument *_nc_Make_Argument(
139 { return(*(TypeArgument **)0); }
142 TypeArgument *_nc_Copy_Argument(
144 const TypeArgument *argp,
146 { return(*(TypeArgument **)0); }
151 TypeArgument *argp)
H A Dllib-lformt135 TypeArgument *_nc_Make_Argument(
139 { return(*(TypeArgument **)0); }
142 TypeArgument *_nc_Copy_Argument(
144 const TypeArgument *argp,
146 { return(*(TypeArgument **)0); }
151 TypeArgument *argp)
H A Dfld_type.c68 _nc_Free_Argument(field->type, (TypeArgument *)(field->arg)); in NCURSES_EXPORT()
H A Dfrm_driver.c1092 TypeArgument *argp) in Check_Char()
2719 (TypeArgument *)(field->arg))) in FE_Insert_Character()
2755 field->type, (int)C_BLANK, (TypeArgument *)(field->arg))) in FE_Insert_Line()
3037 Next_Choice(FORM *form, FIELDTYPE *typ, FIELD *field, TypeArgument *argp) in Next_Choice()
3078 Previous_Choice(FORM *form, FIELDTYPE *typ, FIELD *field, TypeArgument *argp) in Previous_Choice()
3128 returnCode((Next_Choice(form, field->type, field, (TypeArgument *)(field->arg))) in CR_Next_Choice()
3149 returnCode((Previous_Choice(form, field->type, field, (TypeArgument *)(field->arg))) in CR_Previous_Choice()
3176 Check_Field(FORM *form, FIELDTYPE *typ, FIELD *field, TypeArgument *argp) in Check_Field()
3239 if (!Check_Field(form, field->type, field, (TypeArgument *)(field->arg))) in _nc_Internal_Validation()
4525 (TypeArgument *)(form->current->arg))) in form_driver()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A 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-13.1/contrib/llvm-project/clang/utils/TableGen/
H A DClangAttrEmitter.cpp1256 class TypeArgument : public SimpleArgument { class
1258 TypeArgument(const Record &Arg, StringRef Attr) in TypeArgument() function in __anonbee6f2b30211::TypeArgument
1331 Ptr = std::make_unique<TypeArgument>(Arg, Attr); in createArgument()