Home | History | Annotate | Download | only in impl

Lines Matching defs:panels

114      * multiple panels). Shortcuts will go to this panel. It gets set in
624 final PanelFeatureState[] panels = mPanels;
625 final int N = panels != null ? panels.length : 0;
627 final PanelFeatureState panel = panels[i];
696 final PanelFeatureState[] panels = mPanels;
697 final int N = panels != null ? panels.length : 0;
699 final PanelFeatureState panel = panels[i];
1342 static private final String PANELS_TAG = "android:Panels";
1369 // save the panels
1405 // restore the panels
1413 * Invoked when the panels should freeze their state.
1420 PanelFeatureState[] panels = mPanels;
1421 if (panels == null) {
1425 for (int curFeatureId = panels.length - 1; curFeatureId >= 0; curFeatureId--) {
1426 if (panels[curFeatureId] != null) {
1427 icicles.put(curFeatureId, panels[curFeatureId].onSaveInstanceState());
1433 * Invoked when the panels should thaw their state from a previously frozen state.
1451 * restored panels.
1456 * Opens the panels that have had their state restored. This should be
1461 PanelFeatureState[] panels = mPanels;
1463 if (panels == null) {
1468 for (int i = panels.length - 1; i >= 0; i--) {
1469 st = panels[i];
1898 * The main window has been attached, try to restore any panels