Searched defs:icicles (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindow.java1684 * @param icicles Save state into this. This is usually indexed by the
1688 private void savePanelState(SparseArray<Parcelable> icicles) { argument
1696 icicles.put(curFeatureId, panels[curFeatureId].onSaveInstanceState());
1704 * @param icicles The state saved by {@link #savePanelState} that needs to be thawed.
1706 private void restorePanelState(SparseArray<Parcelable> icicles) { argument
1709 for (int i = icicles.size() - 1; i >= 0; i--) {
1710 curFeatureId = icicles.keyAt(i);
1717 st.onRestoreInstanceState(icicles.get(curFeatureId));

Completed in 56 milliseconds