Home | History | Annotate | Download | only in app

Lines Matching refs:mBackStack

360     BackStackState[] mBackStack;
368 mBackStack = in.createTypedArray(BackStackState.CREATOR);
378 dest.writeTypedArray(mBackStack, flags);
420 ArrayList<BackStackRecord> mBackStack;
542 return mBackStack != null ? mBackStack.size() : 0;
547 return mBackStack.get(index);
671 if (mBackStack != null) {
672 N = mBackStack.size();
676 BackStackRecord bs = mBackStack.get(i);
1484 if (mBackStack == null) {
1485 mBackStack = new ArrayList<BackStackRecord>();
1487 mBackStack.add(state);
1492 if (mBackStack == null) {
1496 int last = mBackStack.size()-1;
1500 final BackStackRecord bss = mBackStack.remove(last);
1511 index = mBackStack.size()-1;
1513 BackStackRecord bss = mBackStack.get(index);
1529 BackStackRecord bss = mBackStack.get(index);
1539 if (index == mBackStack.size()-1) {
1544 for (int i=mBackStack.size()-1; i>index; i--) {
1545 states.add(mBackStack.remove(i));
1718 if (mBackStack != null) {
1719 N = mBackStack.size();
1723 backStack[i] = new BackStackState(this, mBackStack.get(i));
1725 + ": " + mBackStack.get(i));
1733 fms.mBackStack = backStack;
1829 if (fms.mBackStack != null) {
1830 mBackStack = new ArrayList<BackStackRecord>(fms.mBackStack.length);
1831 for (int i=0; i<fms.mBackStack.length; i++) {
1832 BackStackRecord bse = fms.mBackStack[i].instantiate(this);
1841 mBackStack.add(bse);
1847 mBackStack = null;