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

/frameworks/base/core/java/android/app/
H A DFragmentManager.java424 ArrayList<BackStackRecord> mBackStackIndices; field in class:FragmentManagerImpl
685 if (mBackStackIndices != null) {
686 N = mBackStackIndices.size();
690 BackStackRecord bs = mBackStackIndices.get(i);
1366 if (mBackStackIndices == null) {
1367 mBackStackIndices = new ArrayList<BackStackRecord>();
1369 int index = mBackStackIndices.size();
1371 mBackStackIndices.add(bse);
1377 mBackStackIndices.set(index, bse);
1385 if (mBackStackIndices
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DFragmentManager.java433 ArrayList<BackStackRecord> mBackStackIndices; field in class:FragmentManagerImpl
695 if (mBackStackIndices != null) {
696 N = mBackStackIndices.size();
700 BackStackRecord bs = mBackStackIndices.get(i);
1413 if (mBackStackIndices == null) {
1414 mBackStackIndices = new ArrayList<BackStackRecord>();
1416 int index = mBackStackIndices.size();
1418 mBackStackIndices.add(bse);
1424 mBackStackIndices.set(index, bse);
1432 if (mBackStackIndices
[all...]

Completed in 295 milliseconds