Searched refs:bse (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/app/
H A DFragmentBreadCrumbs.java308 BackStackEntry bse = i < numPreEntries
314 if (tag != bse) {
324 text.setText(bse.getBreadCrumbTitle());
325 text.setTag(bse);
359 BackStackEntry bse = (BackStackEntry) v.getTag();
360 if (bse == mParentEntry) {
367 bse == mTopEntry ? null : bse, 0)) {
371 if (bse == mTopEntry) {
375 mActivity.getFragmentManager().popBackStack(bse
[all...]
H A DBackStackRecord.java56 public BackStackState(FragmentManagerImpl fm, BackStackRecord bse) { argument
58 BackStackRecord.Op op = bse.mHead;
65 mOps = new int[bse.mNumOp * 7 + numRemoved];
67 if (!bse.mAddToBackStack) {
71 op = bse.mHead;
91 mTransition = bse.mTransition;
92 mTransitionStyle = bse.mTransitionStyle;
93 mName = bse.mName;
94 mIndex = bse.mIndex;
95 mBreadCrumbTitleRes = bse
[all...]
H A DFragmentManager.java1363 public int allocBackStackIndex(BackStackRecord bse) { argument
1370 if (DEBUG) Log.v(TAG, "Setting back stack index " + index + " to " + bse);
1371 mBackStackIndices.add(bse);
1376 if (DEBUG) Log.v(TAG, "Adding back stack index " + index + " with " + bse);
1377 mBackStackIndices.set(index, bse);
1383 public void setBackStackIndex(int index, BackStackRecord bse) { argument
1390 if (DEBUG) Log.v(TAG, "Setting back stack index " + index + " to " + bse);
1391 mBackStackIndices.set(index, bse);
1402 if (DEBUG) Log.v(TAG, "Adding back stack index " + index + " with " + bse);
1403 mBackStackIndices.add(bse);
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DBackStackRecord.java51 public BackStackState(FragmentManagerImpl fm, BackStackRecord bse) { argument
53 BackStackRecord.Op op = bse.mHead;
58 mOps = new int[bse.mNumOp*7 + numRemoved];
60 if (!bse.mAddToBackStack) {
64 op = bse.mHead;
84 mTransition = bse.mTransition;
85 mTransitionStyle = bse.mTransitionStyle;
86 mName = bse.mName;
87 mIndex = bse.mIndex;
88 mBreadCrumbTitleRes = bse
[all...]
H A DFragmentManager.java1410 public int allocBackStackIndex(BackStackRecord bse) { argument
1417 if (DEBUG) Log.v(TAG, "Setting back stack index " + index + " to " + bse);
1418 mBackStackIndices.add(bse);
1423 if (DEBUG) Log.v(TAG, "Adding back stack index " + index + " with " + bse);
1424 mBackStackIndices.set(index, bse);
1430 public void setBackStackIndex(int index, BackStackRecord bse) { argument
1437 if (DEBUG) Log.v(TAG, "Setting back stack index " + index + " to " + bse);
1438 mBackStackIndices.set(index, bse);
1449 if (DEBUG) Log.v(TAG, "Adding back stack index " + index + " with " + bse);
1450 mBackStackIndices.add(bse);
[all...]

Completed in 509 milliseconds