Home
last modified time | relevance | path

Searched refs:TypeArgument (Results 1 – 12 of 12) 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()
181 TypeArgument *p = typeMalloc(TypeArgument, 1); in GenericArgument()
203 !(res = (TypeArgument *)typ->genericarg(argp))) in GenericArgument()
250 _nc_Free_Argument(field->type, (TypeArgument *)(field->arg)); in _nc_set_generic_fieldtype()
H A Dform.priv.h139 TypeArgument; typedef
178 extern FORM_EXPORT(TypeArgument *) _nc_Make_Argument (const FIELDTYPE*, va_list*, int*);
179 extern FORM_EXPORT(TypeArgument *) _nc_Copy_Argument (const FIELDTYPE*, const TypeArgument*, int*);
180 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()
2726 (TypeArgument *)(field->arg))) in FE_Insert_Character()
2762 field->type, (int)C_BLANK, (TypeArgument *)(field->arg))) in FE_Insert_Line()
3045 Next_Choice(FORM *form, FIELDTYPE *typ, FIELD *field, TypeArgument *argp) in Next_Choice()
3086 Previous_Choice(FORM *form, FIELDTYPE *typ, FIELD *field, TypeArgument *argp) in Previous_Choice()
3136 returnCode((Next_Choice(form, field->type, field, (TypeArgument *)(field->arg))) in CR_Next_Choice()
3157 returnCode((Previous_Choice(form, field->type, field, (TypeArgument *)(field->arg))) in CR_Previous_Choice()
3184 Check_Field(FORM *form, FIELDTYPE *typ, FIELD *field, TypeArgument *argp) in Check_Field()
3247 if (!Check_Field(form, field->type, field, (TypeArgument *)(field->arg))) in _nc_Internal_Validation()
4532 (TypeArgument *)(form->current->arg))) in form_driver()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DAttr.td264 class TypeArgument<string name, bit opt = 0> : Argument<name, opt>;
1648 TypeArgument<"KernelName">,
2017 let Args = [TypeArgument<"Interface", 1>];
3439 let Args = [TypeArgument<"TypedefType">];
3757 let Args = [TypeArgument<"TypeHint">];
4258 TypeArgument<"MatchingCType">,
4269 let Args = [TypeArgument<"DerefType", /*opt=*/1>];
4276 let Args = [TypeArgument<"DerefType", /*opt=*/1>];
5016 let Args = [TypeArgument<"Type", /*opt=*/0>];
5147 let Args = [TypeArgument<"Type", 1>];
/freebsd/contrib/llvm-project/clang/utils/TableGen/
H A DClangAttrEmitter.cpp1401 class TypeArgument : public SimpleArgument { class
1403 TypeArgument(const Record &Arg, StringRef Attr) in TypeArgument() function in __anone44e3aff0211::TypeArgument
1498 Ptr = std::make_unique<TypeArgument>(Arg, Attr); in createArgument()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h5216 bool isStdTypeIdentity(QualType Ty, QualType *TypeArgument,