Searched refs:act (Results 1 – 8 of 8) sorted by relevance
/cts/tools/dasm/src/java_cup/runtime/ |
D | lr_parser.java | 476 int act; in parse() local 509 act = get_action(((symbol)stack.peek()).parse_state, cur_token.sym); in parse() 512 if (act > 0) in parse() 515 cur_token.parse_state = act-1; in parse() 523 else if (act < 0) in parse() 526 lhs_sym = do_action((-act)-1, this, stack, tos); in parse() 529 lhs_sym_num = production_tab[(-act)-1][0]; in parse() 530 handle_size = production_tab[(-act)-1][1]; in parse() 540 act = get_reduce(((symbol)stack.peek()).parse_state, lhs_sym_num); in parse() 543 lhs_sym.parse_state = act; in parse() [all …]
|
/cts/tools/dasm/src/java_cup/ |
D | parse_action_table.java | 63 parse_action act; in check_reductions() local 72 act = under_state[row].under_term[col]; in check_reductions() 73 if (act != null && act.kind() == parse_action.REDUCE) in check_reductions() 76 ((reduce_action)act).reduce_with().note_reduction_use(); in check_reductions()
|
D | emit.java | 487 parse_action act; in do_action_table() local 514 act = row.under_term[j]; in do_action_table() 517 if (act.kind() != parse_action.ERROR) in do_action_table() 522 if (act.kind() == parse_action.SHIFT) in do_action_table() 525 (((shift_action)act).shift_to().index() + 1) + ","); in do_action_table() 529 else if (act.kind() == parse_action.REDUCE) in do_action_table() 532 red = ((reduce_action)act).reduce_with().index(); in do_action_table() 540 act.kind() + " found in parse table"); in do_action_table() 573 parse_action act; in do_reduce_table() local
|
D | lalr_state.java | 457 parse_action act, other_act; in build_table_entries() local 473 act = new reduce_action(itm.the_production()); in build_table_entries() 485 our_act_row.under_term[t] = act; in build_table_entries() 502 our_act_row.under_term[t] = act; in build_table_entries() 517 act = new shift_action(trans.to_state()); in build_table_entries() 523 our_act_row.under_term[sym.index()] = act; in build_table_entries() 531 our_act_row.under_term[sym.index()] = act; in build_table_entries()
|
/cts/tests/tests/os/jni/seccomp-tests/tests/ |
D | sigsegv.c | 153 struct sigaction act; in TEST_F_SIGNAL() local 155 memset(&act, 0, sizeof(act)); in TEST_F_SIGNAL() 159 act.sa_sigaction = &TRAP_action; in TEST_F_SIGNAL() 160 act.sa_flags = SA_SIGINFO; in TEST_F_SIGNAL() 161 ret = sigaction(SIGSYS, &act, NULL); in TEST_F_SIGNAL()
|
D | resumption.c | 180 struct sigaction act; in TEST_F() local 183 memset(&act, 0, sizeof(act)); in TEST_F() 187 act.sa_sigaction = &TRAP_action; in TEST_F() 188 act.sa_flags = SA_SIGINFO; in TEST_F() 189 ret = sigaction(SIGSYS, &act, NULL); in TEST_F()
|
D | seccomp_bpf_tests.c | 571 struct sigaction act; in TEST_F() local 573 memset(&act, 0, sizeof(act)); in TEST_F() 577 act.sa_sigaction = &TRAP_action; in TEST_F() 578 act.sa_flags = SA_SIGINFO; in TEST_F() 579 ret = sigaction(SIGSYS, &act, NULL); in TEST_F()
|
/cts/tests/tests/mediastress/src/android/mediastress/cts/ |
D | MediaPlayerStressTest.java | 125 Activity act = inst.startActivitySync(intent); in doTestVideoPlayback() local 139 act.finish(); in doTestVideoPlayback()
|