Lines Matching refs:newtp
58 static struct op *newtp(int);
97 outtree = newtp(TEOF); in yyparse()
293 t = newtp(TCOM); in get_command()
412 t = newtp(TCOM); in get_command()
421 t = newtp(TDBRACKET); in get_command()
439 t = newtp((c == FOR) ? TFOR : TSELECT); in get_command()
454 t = newtp((c == WHILE) ? TWHILE : TUNTIL); in get_command()
461 t = newtp(TCASE); in get_command()
471 t = newtp(TIF); in get_command()
567 t = newtp(0); in thenpart()
587 t = newtp(TELIF); in elsepart()
632 t = newtp(TPAT); in casepart()
719 t = newtp(TFUNCT); in function_body()
732 t->left = newtp(TCOM); in function_body()
779 t = newtp(type); in block()
911 newtp(int type) in newtp() function