Lines Matching refs:typ

1052 	   FIELDTYPE *typ,  in Check_Char()  argument
1056 if (typ) in Check_Char()
1058 if (typ->status & _LINKED_TYPE) in Check_Char()
1062 Check_Char(form, field, typ->left, ch, argp->left) || in Check_Char()
1063 Check_Char(form, field, typ->right, ch, argp->right)); in Check_Char()
1068 if (typ->charcheck.occheck) in Check_Char()
1070 if (typ->status & _GENERIC) in Check_Char()
1071 return typ->charcheck.gccheck(ch, form, field, (void *)argp); in Check_Char()
1073 return typ->charcheck.occheck(ch, (void *)argp); in Check_Char()
1076 if (typ->ccheck) in Check_Char()
1077 return typ->ccheck(ch, (void *)argp); in Check_Char()
2971 Next_Choice(FORM *form, FIELDTYPE *typ, FIELD *field, TypeArgument *argp) in Next_Choice() argument
2973 if (!typ || !(typ->status & _HAS_CHOICE)) in Next_Choice()
2976 if (typ->status & _LINKED_TYPE) in Next_Choice()
2980 Next_Choice(form, typ->left, field, argp->left) || in Next_Choice()
2981 Next_Choice(form, typ->right, field, argp->right)); in Next_Choice()
2986 assert(typ->enum_next.onext); in Next_Choice()
2987 if (typ->status & _GENERIC) in Next_Choice()
2988 return typ->enum_next.gnext(form, field, (void *)argp); in Next_Choice()
2990 return typ->enum_next.onext(field, (void *)argp); in Next_Choice()
2992 assert(typ->next); in Next_Choice()
2993 return typ->next(field, (void *)argp); in Next_Choice()
3012 Previous_Choice(FORM *form, FIELDTYPE *typ, FIELD *field, TypeArgument *argp) in Previous_Choice() argument
3014 if (!typ || !(typ->status & _HAS_CHOICE)) in Previous_Choice()
3017 if (typ->status & _LINKED_TYPE) in Previous_Choice()
3021 Previous_Choice(form, typ->left, field, argp->left) || in Previous_Choice()
3022 Previous_Choice(form, typ->right, field, argp->right)); in Previous_Choice()
3027 assert(typ->enum_prev.oprev); in Previous_Choice()
3028 if (typ->status & _GENERIC) in Previous_Choice()
3029 return typ->enum_prev.gprev(form, field, (void *)argp); in Previous_Choice()
3031 return typ->enum_prev.oprev(field, (void *)argp); in Previous_Choice()
3033 assert(typ->prev); in Previous_Choice()
3034 return typ->prev(field, (void *)argp); in Previous_Choice()
3110 Check_Field(FORM *form, FIELDTYPE *typ, FIELD *field, TypeArgument *argp) in Check_Field() argument
3112 if (typ) in Check_Field()
3127 if (typ->status & _LINKED_TYPE) in Check_Field()
3131 Check_Field(form, typ->left, field, argp->left) || in Check_Field()
3132 Check_Field(form, typ->right, field, argp->right)); in Check_Field()
3137 if (typ->fieldcheck.ofcheck) in Check_Field()
3139 if (typ->status & _GENERIC) in Check_Field()
3140 return typ->fieldcheck.gfcheck(form, field, (void *)argp); in Check_Field()
3142 return typ->fieldcheck.ofcheck(field, (void *)argp); in Check_Field()
3145 if (typ->fcheck) in Check_Field()
3146 return typ->fcheck(field, (void *)argp); in Check_Field()