Searched refs:bse (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/core/java/android/app/ |
D | BackStackRecord.java | 48 public BackStackState(FragmentManagerImpl fm, BackStackRecord bse) { in BackStackState() argument 49 final int numOps = bse.mOps.size(); in BackStackState() 52 if (!bse.mAddToBackStack) { in BackStackState() 58 final BackStackRecord.Op op = bse.mOps.get(opNum); in BackStackState() 66 mTransition = bse.mTransition; in BackStackState() 67 mTransitionStyle = bse.mTransitionStyle; in BackStackState() 68 mName = bse.mName; in BackStackState() 69 mIndex = bse.mIndex; in BackStackState() 70 mBreadCrumbTitleRes = bse.mBreadCrumbTitleRes; in BackStackState() 71 mBreadCrumbTitleText = bse.mBreadCrumbTitleText; in BackStackState() [all …]
|
D | FragmentBreadCrumbs.java | 311 BackStackEntry bse = i < numPreEntries in updateCrumbs() 317 if (tag != bse) { in updateCrumbs() 327 text.setText(bse.getBreadCrumbTitle()); in updateCrumbs() 328 text.setTag(bse); in updateCrumbs() 362 BackStackEntry bse = (BackStackEntry) v.getTag(); 363 if (bse == mParentEntry) { 370 bse == mTopEntry ? null : bse, 0)) { 374 if (bse == mTopEntry) { 378 mActivity.getFragmentManager().popBackStack(bse.getId(), 0);
|
D | FragmentManager.java | 1941 public int allocBackStackIndex(BackStackRecord bse) { in allocBackStackIndex() argument 1948 if (DEBUG) Log.v(TAG, "Setting back stack index " + index + " to " + bse); in allocBackStackIndex() 1949 mBackStackIndices.add(bse); in allocBackStackIndex() 1954 if (DEBUG) Log.v(TAG, "Adding back stack index " + index + " with " + bse); in allocBackStackIndex() 1955 mBackStackIndices.set(index, bse); in allocBackStackIndex() 1961 public void setBackStackIndex(int index, BackStackRecord bse) { in setBackStackIndex() argument 1968 if (DEBUG) Log.v(TAG, "Setting back stack index " + index + " to " + bse); in setBackStackIndex() 1969 mBackStackIndices.set(index, bse); in setBackStackIndex() 1980 if (DEBUG) Log.v(TAG, "Adding back stack index " + index + " with " + bse); in setBackStackIndex() 1981 mBackStackIndices.add(bse); in setBackStackIndex() [all …]
|