Home | History | Annotate | Download | only in ksh

Lines Matching defs:te

289 		Test_env te;
291 te.flags = TEF_DBRACKET;
292 te.pos.wp = t->args;
293 te.isa = dbteste_isa;
294 te.getopnd = dbteste_getopnd;
295 te.eval = dbteste_eval;
296 te.error = dbteste_error;
298 rv = test_parse(&te);
1469 dbteste_isa(te, meta)
1470 Test_env *te;
1477 if (!*te->pos.wp)
1481 for (p = *te->pos.wp; *p == CHAR; p += 2)
1489 for (p = *te->pos.wp; *p == CHAR
1494 ret = (int) test_isop(te, meta, buf);
1500 && strcmp(*te->pos.wp, dbtest_tokens[(int) meta]) == 0;
1504 te->pos.wp++;
1510 dbteste_getopnd(te, op, do_eval)
1511 Test_env *te;
1515 char *s = *te->pos.wp;
1520 te->pos.wp++;
1534 dbteste_eval(te, op, opnd1, opnd2, do_eval)
1535 Test_env *te;
1541 return test_eval(te, op, opnd1, opnd2, do_eval);
1545 dbteste_error(te, offset, msg)
1546 Test_env *te;
1550 te->flags |= TEF_ERROR;