Searched refs:act (Results 1 – 9 of 9) sorted by relevance
/cts/tests/framework/base/windowmanager/src/android/server/wm/intent/ |
D | Cases.java | 124 mRegularSequence.act(mSingleInstanceIntent), in newTaskCases() 126 mRegularSequence.act(mSingleInstanceIntent.withFlags(NEW_TASK)), in newTaskCases() 129 mRegularSequence.act(mAff1Intent), in newTaskCases() 131 mRegularSequence.act(aff1NewTask), in newTaskCases() 133 mRegularSequence.act(mRegularIntent.withFlags(NEW_TASK)), in newTaskCases() 136 mRegularSequence.act(mSingleTopIntent.withFlags(NEW_TASK)), in newTaskCases() 139 mTwoAffinitiesSequence.act(aff1NewTask), in newTaskCases() 142 mRearrangedRootSequence.act(mAff1Intent.withFlags(NEW_TASK)), in newTaskCases() 144 mRearrangedRootSequence.act(mSecondAff1Intent.withFlags(NEW_TASK)), in newTaskCases() 147 mRegularSequence.act(mRegularIntent.withFlags(NEW_TASK, MULTIPLE_TASK)), in newTaskCases() [all …]
|
D | LaunchSequence.java | 125 default LaunchSequence act(LaunchIntent intent) { in act() method 135 default LaunchSequence act(LaunchIntent intent, LaunchSequence launchFrom) { in act() method 175 boolean act, Optional<LaunchSequence> launchFrom) { in ConsecutiveLaunch() argument 178 mAct = act; in ConsecutiveLaunch()
|
D | LaunchRunner.java | 90 List<GenerationIntent> act = testCase.getSetup().getAct(); in verify() local 113 for (int i = 0; i < act.size(); i++) { in verify() 114 GenerationIntent generationIntent = act.get(i); in verify()
|
D | Persistence.java | 134 public Setup(List<GenerationIntent> initialIntents, List<GenerationIntent> act) { in Setup() argument 136 mAct = act; in Setup() 156 List<GenerationIntent> act = intentsFromJson(object.getJSONArray(ACT_KEY), table); in fromJson() local 158 return new Setup(initialState, act); in fromJson()
|
/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/mediastress/src/android/mediastress/cts/ |
D | MediaPlayerStressTest.java | 176 Activity act = inst.startActivitySync(intent); in doTestVideoPlayback() local 190 act.finish(); in doTestVideoPlayback()
|