Home | History | Annotate | Download | only in wm

Lines Matching defs:mSnapshot

119     private TaskSnapshot mSnapshot;
236 mSnapshot = snapshot;
271 mSizeMismatch = (mFrame.width() != mSnapshot.getSnapshot().getWidth()
272 || mFrame.height() != mSnapshot.getSnapshot().getHeight());
277 final GraphicBuffer buffer = mSnapshot.getSnapshot();
295 mSnapshot = null;
325 final float scale = 1 / mSnapshot.getScale();
347 rect.set(0, 0, mSnapshot.getSnapshot().getWidth(), mSnapshot.getSnapshot().getHeight());
348 final Rect insets = mSnapshot.getContentInsets();
352 rect.inset((int) (insets.left * mSnapshot.getScale()),
353 mTaskBounds.top != 0 ? (int) (insets.top * mSnapshot.getScale()) : 0,
354 (int) (insets.right * mSnapshot.getScale()),
355 (int) (insets.bottom * mSnapshot.getScale()));
367 final float scale = mSnapshot.getScale();