Home | History | Annotate | Download | only in scheduler

Lines Matching refs:Action

18 #define EXPECT_ACTION(action, client, action_index, expected_num_actions) \
22 EXPECT_STREQ(action, client.Action(action_index)); \
24 ADD_FAILURE() << "Unexpected action: " << client.Action(i) << \
28 #define EXPECT_SINGLE_ACTION(action, client) \
29 EXPECT_ACTION(action, client, 0, 1)
76 const char* Action(int i) const { return actions_[i]; }
79 int ActionIndex(const char* action) const {
81 if (!strcmp(actions_[i], action))
86 bool HasAction(const char* action) const {
87 return ActionIndex(action) >= 0;
1055 // then the ManageTiles action will be triggered after the Draw.
1279 EXPECT_STREQ(client.Action(client.num_actions_() - 1),