Home | History | Annotate | Download | only in wm

Lines Matching refs:mFirst

57     /** Non-null indicates this is mFirst or mSecond of a parent StackBox. Null indicates this
62 StackBox mFirst;
67 /** Stack of Tasks, this is null exactly when mFirst and mSecond are non-null. */
73 /** Relative orientation of mFirst and mSecond. */
76 /** Fraction of mBounds to devote to mFirst, remainder goes to mSecond */
113 (mStack == null && (mFirst.contains(stackBoxId) || mSecond.contains(stackBoxId)));
129 int stackId = mFirst.stackIdFromPoint(x, y);
140 return mParent != null && mParent.mFirst == this;
151 Rect bounds = mFirst.getStackBounds(stackId);
175 TaskStack stack = mFirst.split(stackId, relativeStackBoxId, position, weight);
223 mFirst = new StackBox(mService, mDisplayContent, this);
224 firstStack.mStackBox = mFirst;
225 mFirst.mStack = firstStack;
235 /** Return the stackId of the first mFirst StackBox with a non-null mStack */
240 return mFirst.getStackId();
259 StackBox sibling = isFirstChild() ? mParent.mSecond : mParent.mFirst;
270 grandparent.mFirst = sibling;
281 (mFirst.resize(stackBoxId, weight) || mSecond.resize(stackBoxId, weight));
312 change |= mFirst.setStackBoxSizes(mTmpRect, underStatusBar);
320 change |= mFirst.setStackBoxSizes(mTmpRect, underStatusBar);
334 mFirst.resetAnimationBackgroundAnimator();
342 boolean result = mFirst.animateDimLayers();
352 mFirst.resetDimming();
360 boolean result = mFirst.isDimming();
370 mFirst.stopDimmingIfNeeded();
379 mFirst.switchUserStacks(userId);
389 mFirst.close();
398 if (mFirst != null) {
399 pw.print(prefix); pw.print("mFirst="); pw.println(System.identityHashCode(mFirst));
400 mFirst.dump(prefix + " ", pw);
415 + " first=" + System.identityHashCode(mFirst)