Home
last modified time | relevance | path

Searched refs:TC_L_PARENT (Results 1 – 7 of 7) sorted by relevance

/dports/lang/gnu-apl/apl-1.8/src/
H A DParser.cc383 Assert1(tos[pos].get_Class() == TC_L_PARENT); in find_closing_parent()
415 if (tos[p].get_Class() == TC_L_PARENT) in find_opening_parent()
437 if (tos[t].get_Class() != TC_L_PARENT) continue; in remove_nongrouping_parantheses()
443 if (tos[t + 1].get_Class() == TC_L_PARENT) in remove_nongrouping_parantheses()
544 case TC_L_PARENT: // e.g. (/ (actually syntax error) in check_if_value()
605 case TC_L_PARENT: in match_par_bra()
614 tc_peer = TC_L_PARENT; in match_par_bra()
644 if (outer == TC_L_PARENT) return E_UNBALANCED_PARENT; in match_par_bra()
811 if (tos[a1].get_Class() == TC_L_PARENT) in mark_lsymb()
H A DTokenEnums.hh51 TC_L_PARENT = 0x0B, ///< ( enumerator
100 SN_LPAR = TC_L_PARENT,
H A DToken.cc99 tcc(TC_L_PARENT) in operator <<()
595 case TC_L_PARENT: in canonical()
666 case TC_L_PARENT: return "("; in short_class_name()
721 tcn( TC_L_PARENT ) in class_name()
H A DPrefix.cc161 if (next == TC_L_PARENT) // )) XXX in is_value_parenthesis()
169 Assert1(next == TC_L_PARENT); // opening ( in is_value_parenthesis()
1849 if (tl.tok.get_Class() != TC_L_PARENT) syntax_error(LOC); in reduce_V_RPAR_ASS_B()
H A DToken.def68 TD(TOK_L_PARENT , TC_L_PARENT , TV_INT , ID_L_PARENT )
H A DTokenizer.cc270 case TC_L_PARENT: in do_tokenize()
/dports/lang/gnu-apl/apl-1.8/tools/
H A Dphrase_gen.cc103 case TC_L_PARENT: len += fprintf(out, " ( "); break; in print_phrase()