Searched defs:oldPrimaryNav (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/app/
H A DBackStackRecord.java880 * pass the return value from this method as the oldPrimaryNav parameter for the next call.
887 * @param oldPrimaryNav The tracked primary navigation fragment as of the beginning of
889 * @return the new oldPrimaryNav fragment after this record's ops would be run
892 Fragment expandOps(ArrayList<Fragment> added, Fragment oldPrimaryNav) { argument
903 if (op.fragment == oldPrimaryNav) {
906 oldPrimaryNav = null;
922 if (old == oldPrimaryNav) {
925 oldPrimaryNav = null;
950 mOps.add(opNum, new Op(OP_UNSET_PRIMARY_NAV, oldPrimaryNav));
953 oldPrimaryNav
[all...]
/frameworks/support/fragment/java/android/support/v4/app/
H A DBackStackRecord.java870 * pass the return value from this method as the oldPrimaryNav parameter for the next call.
877 * @param oldPrimaryNav The tracked primary navigation fragment as of the beginning of
879 * @return the new oldPrimaryNav fragment after this record's ops would be run
882 Fragment expandOps(ArrayList<Fragment> added, Fragment oldPrimaryNav) { argument
893 if (op.fragment == oldPrimaryNav) {
896 oldPrimaryNav = null;
912 if (old == oldPrimaryNav) {
915 oldPrimaryNav = null;
940 mOps.add(opNum, new Op(OP_UNSET_PRIMARY_NAV, oldPrimaryNav));
943 oldPrimaryNav
961 trackAddedFragmentsInPop(ArrayList<Fragment> added, Fragment oldPrimaryNav) argument
[all...]

Completed in 84 milliseconds