HomeSort by relevance Sort by last modified time
    Searched full:transition_table_ (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/chrome/browser/ui/fullscreen/
fullscreen_controller_state_test.cc 201 COMPILE_ASSERT(sizeof(transition_table_data) == sizeof(transition_table_),
203 memcpy(transition_table_, transition_table_data,
206 // Verify that transition_table_ has been completely defined.
209 EXPECT_NE(transition_table_[source][event], STATE_INVALID);
210 EXPECT_GE(transition_table_[source][event], 0);
211 EXPECT_LT(transition_table_[source][event], NUM_STATES);
215 // Copy transition_table_ data into state_transitions_ table.
221 State destination = transition_table_[source][event];
354 State next_state = transition_table_[source_state][event];
362 next_state = transition_table_[next_state][WINDOW_CHANGE]
    [all...]
fullscreen_controller_state_test.h 132 // Log transition_table_ to a string for debugging.
209 State transition_table_[NUM_STATES][NUM_EVENTS]; member in class:FullscreenControllerStateTest

Completed in 1873 milliseconds