Home
last modified time | relevance | path

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

/openbsd-src/lib/libform/
H A Dfld_def.c86 FORM_EXPORT(TypeArgument *)
89 TypeArgument *res = (TypeArgument *)0; in _nc_Make_Argument()
96 TypeArgument *p = typeMalloc(TypeArgument, 1); in _nc_Make_Argument()
112 if (!(res = (TypeArgument *)typ->makearg(ap))) in _nc_Make_Argument()
133 FORM_EXPORT(TypeArgument *)
134 _nc_Copy_Argument(const FIELDTYPE *typ, const TypeArgument *argp, int *err) in _nc_Copy_Argument()
136 TypeArgument *res = (TypeArgument *)0; in _nc_Copy_Argument()
143 TypeArgument *p = typeMalloc(TypeArgument, 1); in _nc_Copy_Argument()
157 if (!(res = (TypeArgument *)(typ->copyarg((const void *)argp)))) in _nc_Copy_Argument()
164 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.h144 TypeArgument; typedef
180 extern FORM_EXPORT(TypeArgument *) _nc_Make_Argument (const FIELDTYPE*, va_list*, int*);
181 extern FORM_EXPORT(TypeArgument *) _nc_Copy_Argument (const FIELDTYPE*, const TypeArgument*, int*);
182 extern FORM_EXPORT(void) _nc_Free_Argument (const FIELDTYPE*, TypeArgument*);
H A Dfld_type.c69 _nc_Free_Argument(field->type, (TypeArgument *)(field->arg)); in FORM_EXPORT()
H A Dfrm_driver.c1096 TypeArgument *argp) in Check_Char()
2725 (TypeArgument *)(field->arg))) in FE_Insert_Character()
2761 field->type, (int)C_BLANK, (TypeArgument *)(field->arg))) in FE_Insert_Line()
3043 Next_Choice(FORM *form, FIELDTYPE *typ, FIELD *field, TypeArgument *argp) in Next_Choice()
3084 Previous_Choice(FORM *form, FIELDTYPE *typ, FIELD *field, TypeArgument *argp) in Previous_Choice()
3134 returnCode((Next_Choice(form, field->type, field, (TypeArgument *)(field->arg))) in CR_Next_Choice()
3155 returnCode((Previous_Choice(form, field->type, field, (TypeArgument *)(field->arg))) in CR_Previous_Choice()
3182 Check_Field(FORM *form, FIELDTYPE *typ, FIELD *field, TypeArgument *argp) in Check_Field()
3245 if (!Check_Field(form, field->type, field, (TypeArgument *)(field->arg))) in _nc_Internal_Validation()
4530 (TypeArgument *)(form->current->arg))) in form_driver()
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DAttr.td235 class TypeArgument<string name, bit opt = 0> : Argument<name, opt>;
1564 let Args = [TypeArgument<"Interface", 1>];
2683 let Args = [TypeArgument<"TypedefType">];
2929 let Args = [TypeArgument<"TypeHint">];
3456 TypeArgument<"MatchingCType">,
3467 let Args = [TypeArgument<"DerefType", /*opt=*/1>];
3474 let Args = [TypeArgument<"DerefType", /*opt=*/1>];
/openbsd-src/gnu/llvm/clang/utils/TableGen/
H A DClangAttrEmitter.cpp1332 class TypeArgument : public SimpleArgument { class
1334 TypeArgument(const Record &Arg, StringRef Attr) in TypeArgument() function in __anone86b54960211::TypeArgument
1407 Ptr = std::make_unique<TypeArgument>(Arg, Attr); in createArgument()