Home
last modified time | relevance | path

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

/frameworks/support/v4/java/android/support/v4/app/
DFragmentManager.java454 ArrayList<Integer> mAvailIndices; field in FragmentManagerImpl
791 if (mAvailIndices != null && mAvailIndices.size() > 0) { in dump()
793 writer.println(Arrays.toString(mAvailIndices.toArray())); in dump()
1233 if (mAvailIndices == null || mAvailIndices.size() <= 0) { in makeActive()
1241 f.setIndex(mAvailIndices.remove(mAvailIndices.size()-1), mParent); in makeActive()
1254 if (mAvailIndices == null) { in makeInactive()
1255 mAvailIndices = new ArrayList<Integer>(); in makeInactive()
1257 mAvailIndices.add(f.mIndex); in makeInactive()
1893 if (mAvailIndices != null) { in restoreAllState()
1894 mAvailIndices.clear(); in restoreAllState()
[all …]
/frameworks/base/core/java/android/app/
DFragmentManager.java453 ArrayList<Integer> mAvailIndices; field in FragmentManagerImpl
811 if (mAvailIndices != null && mAvailIndices.size() > 0) { in dump()
813 writer.println(Arrays.toString(mAvailIndices.toArray())); in dump()
1182 if (mAvailIndices == null || mAvailIndices.size() <= 0) { in makeActive()
1190 f.setIndex(mAvailIndices.remove(mAvailIndices.size()-1), mParent); in makeActive()
1203 if (mAvailIndices == null) { in makeInactive()
1204 mAvailIndices = new ArrayList<Integer>(); in makeInactive()
1206 mAvailIndices.add(f.mIndex); in makeInactive()
1852 if (mAvailIndices != null) { in restoreAllState()
1853 mAvailIndices.clear(); in restoreAllState()
[all …]