Home | History | Annotate | Download | only in ksh

Lines Matching defs:opinfo

20 /* The order of these enums is constrained by the order of opinfo[] */
45 /* things that don't appear in the opinfo[] table */
69 struct opinfo {
79 static const struct opinfo opinfo[] = {
251 s = opinfo[(int)es->tok].name;
315 evalerr(es, ET_LVALUE, opinfo[(int) op].name);
332 for (op = es->tok; IS_BINOP(op) && opinfo[(int) op].prec == prec;
525 for (i = 0; (n0 = opinfo[i].name[0]); i++)
527 && strncmp(cp, opinfo[i].name, opinfo[i].len) == 0)
530 cp += opinfo[i].len;
567 evalerr(es, ET_LVALUE, opinfo[(int) op].name);
569 evalerr(es, ET_RDONLY, opinfo[(int) op].name);