Searched defs:mFrame (Results 1 - 18 of 18) sorted by last modified time

/frameworks/native/services/surfaceflinger/
H A DDisplayDevice.h120 const Rect getFrame() const { return mFrame; }
220 Rect mFrame; member in class:android::DisplayDevice
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DBatteryMeterView.java68 private final RectF mFrame = new RectF(); field in class:BatteryMeterView
317 mFrame.set(0, 0, width, height);
318 mFrame.offset(pl, pt);
322 mFrame.left + Math.round(width * 0.25f),
323 mFrame.top,
324 mFrame.right - Math.round(width * 0.25f),
325 mFrame.top + buttonHeight);
332 mFrame.top += buttonHeight;
333 mFrame.left += mSubpixelSmoothingLeft;
334 mFrame
[all...]
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowState.java224 final Rect mFrame = new Rect(); field in class:WindowState
577 final int fw = mFrame.width();
578 final int fh = mFrame.height();
594 (int) (y + mAttrs.verticalMargin * ph), mFrame);
596 //System.out.println("Out: " + mFrame);
599 Gravity.applyDisplay(mAttrs.gravity, df, mFrame);
603 mContentFrame.set(Math.max(mContentFrame.left, mFrame.left),
604 Math.max(mContentFrame.top, mFrame.top),
605 Math.min(mContentFrame.right, mFrame.right),
606 Math.min(mContentFrame.bottom, mFrame
[all...]
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DFrameManager.java65 private Frame mFrame = null; field in class:FrameManager.FrameSlot
77 return mFrame != null;
81 if (mFrame != null) {
82 mFrame.release();
83 mFrame = null;
89 Frame oldFrame = mFrame;
90 mFrame = frame.retain();
97 Frame result = mFrame.retain();
105 if (mFrame != null) {
106 mFrame
[all...]
H A DFrameQueue.java91 private Frame mFrame = null; field in class:FrameQueue.SingleFrameQueueImpl
95 return mFrame != null;
100 return mFrame == null;
105 Frame result = mFrame;
106 mFrame = null;
112 return mFrame;
125 mFrame = frame.retain();
126 mFrame.setReadOnly(true);
131 if (mFrame != null) {
132 mFrame
[all...]
H A DGraphInputSource.java13 private Frame mFrame = null; field in class:GraphInputSource
27 if (mFrame != null) {
28 mFrame.release();
33 mFrame = frame.retain();
38 if (mFrame != null) {
39 getConnectedOutputPort("frame").pushFrame(mFrame);
40 mFrame.release();
41 mFrame = null;
47 if (mFrame != null) {
48 mFrame
[all...]
H A DGraphOutputTarget.java13 private Frame mFrame = null; field in class:GraphOutputTarget
39 if (mFrame != null) {
40 result = mFrame;
41 mFrame = null;
49 if (mFrame != null) {
50 mFrame.release();
52 mFrame = frame.retain();
57 return super.canSchedule() && mFrame == null;
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DStreamPort.java25 private Frame mFrame; field in class:StreamPort
34 if (mFrame != null) {
35 mFrame.release();
36 mFrame = null;
55 if (mFrame != null) {
56 mFrame.release();
58 } else if (mFrame != null) {
62 mFrame = frame.retain();
63 mFrame.markReadOnly();
70 if (mFrame
[all...]
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
H A DCallbackFilter.java48 private Frame mFrame; field in class:CallbackFilter.CallbackRunnable
55 mFrame = frame;
60 mListener.onFrameReceived(mFilter, mFrame, mUserData);
61 mFrame.release();
H A DFrameSource.java36 private Frame mFrame = null; field in class:FrameSource
52 if (mFrame != null) {
54 pushOutput("frame", mFrame);
H A DGLTextureSource.java53 private Frame mFrame; field in class:GLTextureSource
68 if (mFrame != null) {
69 mFrame.release();
70 mFrame = null;
77 if (mFrame == null) {
81 mFrame = context.getFrameManager().newBoundFrame(outputFormat,
84 mFrame.setTimestamp(mTimestamp);
88 pushOutput("frame", mFrame);
98 if (mFrame != null) {
99 mFrame
[all...]
H A DObjectSource.java42 private Frame mFrame; field in class:ObjectSource
56 if (mFrame == null) {
61 mFrame = context.getFrameManager().newFrame(outputFormat);
62 mFrame.setObjectValue(mObject);
63 mFrame.setTimestamp(Frame.TIMESTAMP_UNKNOWN);
67 pushOutput("frame", mFrame);
77 mFrame.release();
84 if (mFrame != null) {
85 mFrame.release();
86 mFrame
[all...]
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DBitmapOverlayFilter.java41 private Frame mFrame; field in class:BitmapOverlayFilter
88 if (mFrame != null) {
89 mFrame.release();
90 mFrame = null;
/frameworks/base/core/tests/coretests/src/android/view/
H A DPopupWindowVisibility.java35 private View mFrame; field in class:PopupWindowVisibility
46 mFrame = findViewById(R.id.frame);
68 mFrame.setVisibility(v == mHide ? View.INVISIBLE : View.VISIBLE);
H A DPreDrawListener.java37 private MyLinearLayout mFrame; field in class:PreDrawListener
78 mFrame = (MyLinearLayout) findViewById(R.id.frame);
86 mFrame.mCancelNextDraw = true;
87 mFrame.invalidate();
/frameworks/base/core/tests/coretests/src/android/widget/listview/
H A DListFilter.java35 private View mFrame; field in class:ListFilter
47 mFrame = findViewById(R.id.frame);
58 mFrame.setVisibility(v == mHide ? View.INVISIBLE : View.VISIBLE);
/frameworks/base/core/java/android/view/
H A DChoreographer.java698 private int mFrame; field in class:Choreographer.FrameDisplayEventReceiver
744 mFrame = frame;
753 doFrame(mTimestampNanos, mFrame);
/frameworks/base/core/java/android/widget/
H A DSlidingDrawer.java109 private final Rect mFrame = new Rect(); field in class:SlidingDrawer
385 final Rect frame = mFrame;
608 final Rect frame = mFrame;
638 final Rect frame = mFrame;

Completed in 753 milliseconds