Lines Matching defs:state

341      * @param st The panel state to prepare.
368 // Init the panel state's menu--return false if init failed
409 // Restore action view state before we prepare. This gives apps
410 // an opportunity to override frozen/restored state in onPrepare.
434 // Set other state
444 // Action bars handle their own menu state
449 // Freeze state
450 final Bundle state = new Bundle();
452 st.iconMenuPresenter.saveHierarchyState(state);
455 st.listMenuPresenter.saveHierarchyState(state);
465 // Restore state
467 st.iconMenuPresenter.restoreHierarchyState(state);
470 st.listMenuPresenter.restoreHierarchyState(state);
532 // Callback doesn't want the menu to open, reset any state
983 // Save the future expanded mode state since closePanel will reset it
989 // Set the expanded mode state
996 * Initializes the menu associated with the given panel feature state. You
998 * associated with the given panel state. The default implementation creates
999 * a new menu for the panel state.
1075 * Initializes the panel associated with the panel feature state. You must
1079 * @param st The panel state being initialized.
1196 * Update the state of a drawable feature. This should be called, for every
1398 * the state of the current application, other than that the current
1630 * Invoked when the panels should freeze their state.
1632 * @param icicles Save state into this. This is usually indexed by the
1650 * Invoked when the panels should thaw their state from a previously frozen state.
1652 * @param icicles The state saved by {@link #savePanelState} that needs to be thawed.
1674 * Opens the panels that have had their state restored. This should be
2877 * Gets a panel's state based on its feature ID.
2882 * @return The panel state.
2889 * Gets a panel's state based on its feature ID.
2894 * @param convertPanelState Optional: If the panel state does not exist, use
2895 * this as the panel state.
2896 * @return The panel state.
3052 * callback. This method will grab whatever extra state is needed for the
3160 /** Dynamic state of the panel. */
3213 * Contains the state of the menu when told to freeze.
3218 * Contains the state of associated action views when told to freeze.
3339 void onRestoreInstanceState(Parcelable state) {
3340 SavedState savedState = (SavedState) state;