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

/frameworks/base/core/java/android/app/
H A DFragmentManager.java678 ArrayList<BackStackRecord> mBackStackIndices; field in class:FragmentManagerImpl
1032 if (mBackStackIndices != null) {
1033 N = mBackStackIndices.size();
1037 BackStackRecord bs = mBackStackIndices.get(i);
1920 if (mBackStackIndices == null) {
1921 mBackStackIndices = new ArrayList<BackStackRecord>();
1923 int index = mBackStackIndices.size();
1925 mBackStackIndices.add(bse);
1931 mBackStackIndices.set(index, bse);
1939 if (mBackStackIndices
[all...]
/frameworks/support/fragment/java/android/support/v4/app/
H A DFragmentManager.java661 ArrayList<BackStackRecord> mBackStackIndices; field in class:FragmentManagerImpl
1044 if (mBackStackIndices != null) {
1045 N = mBackStackIndices.size();
1049 BackStackRecord bs = mBackStackIndices.get(i);
2107 if (mBackStackIndices == null) {
2108 mBackStackIndices = new ArrayList<BackStackRecord>();
2110 int index = mBackStackIndices.size();
2112 mBackStackIndices.add(bse);
2118 mBackStackIndices.set(index, bse);
2126 if (mBackStackIndices
[all...]

Completed in 34 milliseconds