Lines Matching refs:newtp
50 static struct op *newtp(int);
84 outtree = newtp(TEOF); in yyparse()
263 t = newtp(TCOM); in get_command()
393 t = newtp(TCOM); in get_command()
402 t = newtp(TDBRACKET); in get_command()
420 t = newtp((c == FOR) ? TFOR : TSELECT); in get_command()
435 t = newtp((c == WHILE) ? TWHILE : TUNTIL); in get_command()
442 t = newtp(TCASE); in get_command()
452 t = newtp(TIF); in get_command()
543 t = newtp(0); in thenpart()
563 t = newtp(TELIF); in elsepart()
608 t = newtp(TPAT); in casepart()
677 t = newtp(TFUNCT); in function_body()
692 t->left = newtp(TCOM); in function_body()
746 t = newtp(type); in block()
879 newtp(int type) in newtp() function