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

/frameworks/base/core/java/android/app/
H A DFragmentManager.java697 ArrayList<BackStackRecord> mBackStackIndices; field in class:FragmentManagerImpl
1051 if (mBackStackIndices != null) {
1052 N = mBackStackIndices.size();
1056 BackStackRecord bs = mBackStackIndices.get(i);
1939 if (mBackStackIndices == null) {
1940 mBackStackIndices = new ArrayList<BackStackRecord>();
1942 int index = mBackStackIndices.size();
1944 mBackStackIndices.add(bse);
1950 mBackStackIndices.set(index, bse);
1958 if (mBackStackIndices
[all...]
/frameworks/support/fragment/src/main/java/androidx/fragment/app/
H A DFragmentManager.java693 ArrayList<BackStackRecord> mBackStackIndices; field in class:FragmentManagerImpl
1079 if (mBackStackIndices != null) {
1080 N = mBackStackIndices.size();
1084 BackStackRecord bs = mBackStackIndices.get(i);
2145 if (mBackStackIndices == null) {
2146 mBackStackIndices = new ArrayList<BackStackRecord>();
2148 int index = mBackStackIndices.size();
2150 mBackStackIndices.add(bse);
2156 mBackStackIndices.set(index, bse);
2164 if (mBackStackIndices
[all...]

Completed in 38 milliseconds