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

/frameworks/base/core/java/android/app/
H A DFragmentManager.java418 ArrayList<BackStackRecord> mBackStackIndices; field in class:FragmentManagerImpl
676 if (mBackStackIndices != null) {
677 N = mBackStackIndices.size();
681 BackStackRecord bs = mBackStackIndices.get(i);
1349 if (mBackStackIndices == null) {
1350 mBackStackIndices = new ArrayList<BackStackRecord>();
1352 int index = mBackStackIndices.size();
1354 mBackStackIndices.add(bse);
1360 mBackStackIndices.set(index, bse);
1368 if (mBackStackIndices
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DFragmentManager.java415 ArrayList<BackStackRecord> mBackStackIndices; field in class:FragmentManagerImpl
672 if (mBackStackIndices != null) {
673 N = mBackStackIndices.size();
677 BackStackRecord bs = mBackStackIndices.get(i);
1372 if (mBackStackIndices == null) {
1373 mBackStackIndices = new ArrayList<BackStackRecord>();
1375 int index = mBackStackIndices.size();
1377 mBackStackIndices.add(bse);
1383 mBackStackIndices.set(index, bse);
1391 if (mBackStackIndices
[all...]

Completed in 74 milliseconds