Home | History | Annotate | Download | only in impl

Lines Matching defs:panels

115      * multiple panels). Shortcuts will go to this panel. It gets set in
627 final PanelFeatureState[] panels = mPanels;
628 final int N = panels != null ? panels.length : 0;
630 final PanelFeatureState panel = panels[i];
714 final PanelFeatureState[] panels = mPanels;
715 final int N = panels != null ? panels.length : 0;
717 final PanelFeatureState panel = panels[i];
1419 static private final String PANELS_TAG = "android:Panels";
1446 // save the panels
1482 // restore the panels
1490 * Invoked when the panels should freeze their state.
1497 PanelFeatureState[] panels = mPanels;
1498 if (panels == null) {
1502 for (int curFeatureId = panels.length - 1; curFeatureId >= 0; curFeatureId--) {
1503 if (panels[curFeatureId] != null) {
1504 icicles.put(curFeatureId, panels[curFeatureId].onSaveInstanceState());
1510 * Invoked when the panels should thaw their state from a previously frozen state.
1528 * restored panels.
1533 * Opens the panels that have had their state restored. This should be
1538 PanelFeatureState[] panels = mPanels;
1540 if (panels == null) {
1545 for (int i = panels.length - 1; i >= 0; i--) {
1546 st = panels[i];
1996 * The main window has been attached, try to restore any panels