Lines Matching defs:in

5  * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
103 public BackStackState(Parcel in) {
104 mOps = in.createIntArray();
105 mTransition = in.readInt();
106 mTransitionStyle = in.readInt();
107 mName = in.readString();
108 mIndex = in.readInt();
109 mBreadCrumbTitleRes = in.readInt();
110 mBreadCrumbTitleText = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(in);
111 mBreadCrumbShortTitleRes = in.readInt();
112 mBreadCrumbShortTitleText = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(in);
113 mSharedElementSourceNames = in.createStringArrayList();
114 mSharedElementTargetNames = in.createStringArrayList();
189 public BackStackState createFromParcel(Parcel in) {
190 return new BackStackState(in);
678 Log.v(TAG, "Bump nesting in " + this
996 * in {@link #setNameOverrides(android.app.BackStackRecord.TransitionState, java.util.ArrayList,
1130 // Don't include any newly-hidden fragments in the transition.
1193 // Now map the shared elements in the incoming fragment
1197 // in the shared element transition.
1219 // Wrap the transitions. Explicit targets like in enter and exit will cause the
1221 // excluded fragments views (hidden fragments) will still be in the transition.
1342 // We want to exclude hidden views later, so we need a non-null list in the
1358 * so that the transitions are left in a clean state.
1394 * The views list should match those added in addTargets and should contain
1395 * one view that is not in the view hierarchy (state.nonExistentView).
1409 // We have an exact match. We must have added these earlier in addTargets
1420 * that does not exist in the view hierarchy (state.nonExistentView) so that
1458 * @param inMap A list of keys found in the map, in the order in toGoInMap
1459 * @param toGoInMap A list of keys to use for the new map, in the order of inMap
1480 * Maps shared elements to views in the entering fragment.