Searched defs:mFrame (Results 1 - 18 of 18) sorted by path

/frameworks/base/core/java/android/view/
H A DChoreographer.java692 private int mFrame; field in class:Choreographer.FrameDisplayEventReceiver
738 mFrame = frame;
747 doFrame(mTimestampNanos, mFrame);
/frameworks/base/core/java/android/widget/
H A DSlidingDrawer.java109 private final Rect mFrame = new Rect(); field in class:SlidingDrawer
364 final Rect frame = mFrame;
587 final Rect frame = mFrame;
617 final Rect frame = mFrame;
/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/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.java53 private Frame mFrame; field in class:CallbackFilter.CallbackRunnable
60 mFrame = frame;
65 mListener.onFrameReceived(mFilter, mFrame, mUserData);
66 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.java56 private Frame mFrame; field in class:GLTextureSource
71 if (mFrame != null) {
72 mFrame.release();
73 mFrame = null;
80 if (mFrame == null) {
84 mFrame = context.getFrameManager().newBoundFrame(outputFormat,
87 mFrame.setTimestamp(mTimestamp);
91 pushOutput("frame", mFrame);
101 if (mFrame != null) {
102 mFrame
[all...]
H A DObjectSource.java45 private Frame mFrame; field in class:ObjectSource
59 if (mFrame == null) {
64 mFrame = context.getFrameManager().newFrame(outputFormat);
65 mFrame.setObjectValue(mObject);
66 mFrame.setTimestamp(Frame.TIMESTAMP_UNKNOWN);
70 pushOutput("frame", mFrame);
80 mFrame.release();
87 if (mFrame != null) {
88 mFrame.release();
89 mFrame
[all...]
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DBitmapOverlayFilter.java47 private Frame mFrame; field in class:BitmapOverlayFilter
94 if (mFrame != null) {
95 mFrame.release();
96 mFrame = null;
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DBatteryMeterView.java66 private final RectF mFrame = new RectF(); field in class:BatteryMeterView
278 mFrame.set(0, 0, width, height);
279 mFrame.offset(pl, pt);
282 mFrame.left + width * 0.25f,
283 mFrame.top,
284 mFrame.right - width * 0.25f,
285 mFrame.top + mButtonHeight + 5 /*cover frame border of intersecting area*/);
291 mFrame.top += mButtonHeight;
292 mFrame.left += SUBPIXEL;
293 mFrame
[all...]
/frameworks/base/services/java/com/android/server/wm/
H A DWindowState.java209 final Rect mFrame = new Rect(); field in class:WindowState
530 final int fw = mFrame.width();
531 final int fh = mFrame.height();
547 (int) (y + mAttrs.verticalMargin * ph), mFrame);
549 //System.out.println("Out: " + mFrame);
552 Gravity.applyDisplay(mAttrs.gravity, df, mFrame);
556 mContentFrame.set(Math.max(mContentFrame.left, mFrame.left),
557 Math.max(mContentFrame.top, mFrame.top),
558 Math.min(mContentFrame.right, mFrame.right),
559 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/native/services/surfaceflinger/
H A DDisplayDevice.h117 const Rect getFrame() const { return mFrame; }
212 Rect mFrame; member in class:android::DisplayDevice

Completed in 1669 milliseconds