Searched defs:bse (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/app/
H A DBackStackRecord.java48 public BackStackState(FragmentManagerImpl fm, BackStackRecord bse) { argument
49 final int numOps = bse.mOps.size();
52 if (!bse.mAddToBackStack) {
58 final BackStackRecord.Op op = bse.mOps.get(opNum);
66 mTransition = bse.mTransition;
67 mTransitionStyle = bse.mTransitionStyle;
68 mName = bse.mName;
69 mIndex = bse.mIndex;
70 mBreadCrumbTitleRes = bse.mBreadCrumbTitleRes;
71 mBreadCrumbTitleText = bse
[all...]
H A DFragmentManager.java1917 public int allocBackStackIndex(BackStackRecord bse) { argument
1924 if (DEBUG) Log.v(TAG, "Setting back stack index " + index + " to " + bse);
1925 mBackStackIndices.add(bse);
1930 if (DEBUG) Log.v(TAG, "Adding back stack index " + index + " with " + bse);
1931 mBackStackIndices.set(index, bse);
1937 public void setBackStackIndex(int index, BackStackRecord bse) { argument
1944 if (DEBUG) Log.v(TAG, "Setting back stack index " + index + " to " + bse);
1945 mBackStackIndices.set(index, bse);
1956 if (DEBUG) Log.v(TAG, "Adding back stack index " + index + " with " + bse);
1957 mBackStackIndices.add(bse);
[all...]
/frameworks/support/fragment/java/android/support/v4/app/
H A DBackStackRecord.java46 public BackStackState(BackStackRecord bse) { argument
47 final int numOps = bse.mOps.size();
50 if (!bse.mAddToBackStack) {
56 final BackStackRecord.Op op = bse.mOps.get(opNum);
64 mTransition = bse.mTransition;
65 mTransitionStyle = bse.mTransitionStyle;
66 mName = bse.mName;
67 mIndex = bse.mIndex;
68 mBreadCrumbTitleRes = bse.mBreadCrumbTitleRes;
69 mBreadCrumbTitleText = bse
[all...]
H A DFragmentManager.java2104 public int allocBackStackIndex(BackStackRecord bse) { argument
2111 if (DEBUG) Log.v(TAG, "Setting back stack index " + index + " to " + bse);
2112 mBackStackIndices.add(bse);
2117 if (DEBUG) Log.v(TAG, "Adding back stack index " + index + " with " + bse);
2118 mBackStackIndices.set(index, bse);
2124 public void setBackStackIndex(int index, BackStackRecord bse) { argument
2131 if (DEBUG) Log.v(TAG, "Setting back stack index " + index + " to " + bse);
2132 mBackStackIndices.set(index, bse);
2143 if (DEBUG) Log.v(TAG, "Adding back stack index " + index + " with " + bse);
2144 mBackStackIndices.add(bse);
[all...]

Completed in 173 milliseconds