Home
last modified time | relevance | path

Searched refs:mAvailIndices (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/core/java/android/app/
DFragmentManager.java454 ArrayList<Integer> mAvailIndices; field in FragmentManagerImpl
812 if (mAvailIndices != null && mAvailIndices.size() > 0) { in dump()
814 writer.println(Arrays.toString(mAvailIndices.toArray())); in dump()
1205 if (mAvailIndices == null || mAvailIndices.size() <= 0) { in makeActive()
1213 f.setIndex(mAvailIndices.remove(mAvailIndices.size()-1), mParent); in makeActive()
1226 if (mAvailIndices == null) { in makeInactive()
1227 mAvailIndices = new ArrayList<Integer>(); in makeInactive()
1229 mAvailIndices.add(f.mIndex); in makeInactive()
1932 if (mAvailIndices != null) { in restoreAllState()
1933 mAvailIndices.clear(); in restoreAllState()
[all …]
/frameworks/support/v4/java/android/support/v4/app/
DFragmentManager.java501 ArrayList<Integer> mAvailIndices; field in FragmentManagerImpl
839 if (mAvailIndices != null && mAvailIndices.size() > 0) { in dump()
841 writer.println(Arrays.toString(mAvailIndices.toArray())); in dump()
1320 if (mAvailIndices == null || mAvailIndices.size() <= 0) { in makeActive()
1328 f.setIndex(mAvailIndices.remove(mAvailIndices.size()-1), mParent); in makeActive()
1341 if (mAvailIndices == null) { in makeInactive()
1342 mAvailIndices = new ArrayList<Integer>(); in makeInactive()
1344 mAvailIndices.add(f.mIndex); in makeInactive()
2037 if (mAvailIndices != null) { in restoreAllState()
2038 mAvailIndices.clear(); in restoreAllState()
[all …]