Home
last modified time | relevance | path

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

/freebsd/contrib/ncurses/form/
H A Dfld_def.c85 FORM_EXPORT(TypeArgument *)
88 TypeArgument *res = (TypeArgument *)0; in _nc_Make_Argument()
95 TypeArgument *p = typeMalloc(TypeArgument, 1); in _nc_Make_Argument()
111 if (!(res = (TypeArgument *)typ->makearg(ap))) in _nc_Make_Argument()
132 FORM_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()
142 TypeArgument *p = typeMalloc(TypeArgument, 1); in _nc_Copy_Argument()
156 if (!(res = (TypeArgument *)(typ->copyarg((const void *)argp)))) in _nc_Copy_Argument()
163 res = (TypeArgument *)argp; in _nc_Copy_Argument()
[all …]
H A Dfty_generic.c167 static TypeArgument *
171 TypeArgument *res = (TypeArgument *)0; in GenericArgument()
178 TypeArgument *p = typeMalloc(TypeArgument, 1); in GenericArgument()
200 !(res = (TypeArgument *)typ->genericarg(argp))) in GenericArgument()
247 _nc_Free_Argument(field->type, (TypeArgument *)(field->arg)); in _nc_set_generic_fieldtype()
H A Dform.priv.h139 TypeArgument; typedef
175 extern FORM_EXPORT(TypeArgument *) _nc_Make_Argument (const FIELDTYPE*, va_list*, int*);
176 extern FORM_EXPORT(TypeArgument *) _nc_Copy_Argument (const FIELDTYPE*, const TypeArgument*, int*);
177 extern FORM_EXPORT(void) _nc_Free_Argument (const FIELDTYPE*, TypeArgument*);
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 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 Dfld_type.c68 _nc_Free_Argument(field->type, (TypeArgument *)(field->arg)); in FORM_EXPORT()
H A Dfrm_driver.c1095 TypeArgument *argp) in Check_Char()
2724 (TypeArgument *)(field->arg))) in FE_Insert_Character()
2760 field->type, (int)C_BLANK, (TypeArgument *)(field->arg))) in FE_Insert_Line()
3042 Next_Choice(FORM *form, FIELDTYPE *typ, FIELD *field, TypeArgument *argp) in Next_Choice()
3083 Previous_Choice(FORM *form, FIELDTYPE *typ, FIELD *field, TypeArgument *argp) in Previous_Choice()
3133 returnCode((Next_Choice(form, field->type, field, (TypeArgument *)(field->arg))) in CR_Next_Choice()
3154 returnCode((Previous_Choice(form, field->type, field, (TypeArgument *)(field->arg))) in CR_Previous_Choice()
3181 Check_Field(FORM *form, FIELDTYPE *typ, FIELD *field, TypeArgument *argp) in Check_Field()
3244 if (!Check_Field(form, field->type, field, (TypeArgument *)(field->arg))) in _nc_Internal_Validation()
4529 (TypeArgument *)(form->current->arg))) in form_driver()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DAttr.td250 class TypeArgument<string name, bit opt = 0> : Argument<name, opt>;
1794 let Args = [TypeArgument<"Interface", 1>];
3109 let Args = [TypeArgument<"TypedefType">];
3389 let Args = [TypeArgument<"TypeHint">];
3917 TypeArgument<"MatchingCType">,
3928 let Args = [TypeArgument<"DerefType", /*opt=*/1>];
3935 let Args = [TypeArgument<"DerefType", /*opt=*/1>];
4700 let Args = [TypeArgument<"Type", 1>];
/freebsd/contrib/llvm-project/clang/utils/TableGen/
H A DClangAttrEmitter.cpp1389 class TypeArgument : public SimpleArgument { class
1391 TypeArgument(const Record &Arg, StringRef Attr) in TypeArgument() function in __anone44e3aff0211::TypeArgument
1486 Ptr = std::make_unique<TypeArgument>(Arg, Attr); in createArgument()