Lines Matching refs:newtp
58 static struct op *newtp(int);
97 outtree = newtp(TEOF); in yyparse()
294 t = newtp(TCOM); in get_command()
420 t = newtp(TCOM); in get_command()
429 t = newtp(TDBRACKET); in get_command()
447 t = newtp((c == FOR) ? TFOR : TSELECT); in get_command()
462 t = newtp((c == WHILE) ? TWHILE : TUNTIL); in get_command()
469 t = newtp(TCASE); in get_command()
479 t = newtp(TIF); in get_command()
576 t = newtp(0); in thenpart()
596 t = newtp(TELIF); in elsepart()
641 t = newtp(TPAT); in casepart()
728 t = newtp(TFUNCT); in function_body()
741 t->left = newtp(TCOM); in function_body()
788 t = newtp(type); in block()
920 newtp(int type) in newtp() function