Lines Matching full:case
106 case finsh_token_type_comma:/*',', it's a variable_list declaration.*/ in proc_variable_decl()
177 case finsh_token_type_assign:/*'=', it's a variable with assign declaration.*/ in proc_variable_decl()
235 case finsh_token_type_semicolon:/*';', it's a variable declaration.*/ in proc_variable_decl()
267 case finsh_token_type_void: in proc_type()
271 case finsh_token_type_char: in proc_type()
275 case finsh_token_type_short: in proc_type()
279 case finsh_token_type_int: in proc_type()
283 case finsh_token_type_long: in proc_type()
298 case finsh_token_type_char: in proc_type()
302 case finsh_token_type_short: in proc_type()
306 case finsh_token_type_int: in proc_type()
310 case finsh_token_type_long: in proc_type()
335 case finsh_type_void: in proc_type()
339 case finsh_type_char: in proc_type()
340 case finsh_type_uchar: in proc_type()
344 case finsh_type_short: in proc_type()
345 case finsh_type_ushort: in proc_type()
349 case finsh_type_int: in proc_type()
350 case finsh_type_uint: in proc_type()
354 case finsh_type_long: in proc_type()
355 case finsh_type_ulong: in proc_type()
545 case finsh_token_type_shl: in proc_shift_expr()
548 case finsh_token_type_shr: in proc_shift_expr()
585 case finsh_token_type_sub: in proc_additive_expr()
588 case finsh_token_type_add: in proc_additive_expr()
627 case finsh_token_type_mul: in proc_multiplicative_expr()
631 case finsh_token_type_div: in proc_multiplicative_expr()
635 case finsh_token_type_mod: in proc_multiplicative_expr()
699 case finsh_token_type_add: /* + */ in proc_unary_expr()
703 case finsh_token_type_inc: /* ++ */ in proc_unary_expr()
707 case finsh_token_type_sub: /* - */ in proc_unary_expr()
711 case finsh_token_type_dec: /* -- */ in proc_unary_expr()
715 case finsh_token_type_bitwise: /* ~ */ in proc_unary_expr()
719 case finsh_token_type_mul: /* * */ in proc_unary_expr()
723 case finsh_token_type_and: /* & */ in proc_unary_expr()
753 case finsh_token_type_inc :/* '++' */ in proc_postfix_expr()
757 case finsh_token_type_dec :/* '--' */ in proc_postfix_expr()
761 case finsh_token_type_left_paren :/* '(' */ in proc_postfix_expr()
803 case finsh_token_type_identifier: in proc_primary_expr()
812 case finsh_token_type_left_paren: in proc_primary_expr()
817 case finsh_token_type_value_int: in proc_primary_expr()
820 case finsh_token_type_value_long: in proc_primary_expr()
823 case finsh_token_type_value_char: in proc_primary_expr()
826 case finsh_token_type_value_string: in proc_primary_expr()
829 case finsh_token_type_value_null: in proc_primary_expr()
916 case finsh_token_type_identifier: in finsh_parser_run()