Home | History | Annotate | Download | only in intl

Lines Matching defs:args

79 					   struct expression * const *args));
96 new_exp (nargs, op, args)
99 struct expression * const *args;
106 if (args[i] == NULL)
116 newp->val.args[i] = args[i];
122 FREE_EXPRESSION (args[i]);
139 struct expression *args[1];
141 args[0] = right;
142 return new_exp (1, op, args);
151 struct expression *args[2];
153 args[0] = left;
154 args[1] = right;
155 return new_exp (2, op, args);
165 struct expression *args[3];
167 args[0] = bexp;
168 args[1] = tbranch;
169 args[2] = fbranch;
170 return new_exp (3, op, args);
552 # define YYDPRINTF(Args) \
555 YYFPRINTF Args; \
561 # define YYDPRINTF(Args)
810 /* This used to be a conditional around just the two extra args,
1355 FREE_EXPRESSION (exp->val.args[2]);
1358 FREE_EXPRESSION (exp->val.args[1]);
1361 FREE_EXPRESSION (exp->val.args[0]);