/frameworks/base/media/mca/filterfw/java/android/filterfw/core/ |
H A D | StreamPort.java | 25 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/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
H A D | GraphInputSource.java | 13 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 D | GraphOutputTarget.java | 13 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;
|
H A D | FrameQueue.java | 91 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 D | FrameManager.java | 65 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...] |
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/ |
H A D | GLTextureSource.java | 53 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 D | ObjectSource.java | 42 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...] |
H A D | FrameSource.java | 36 private Frame mFrame = null; field in class:FrameSource 52 if (mFrame != null) { 54 pushOutput("frame", mFrame);
|
H A D | CallbackFilter.java | 48 private Frame mFrame; field in class:CallbackFilter.CallbackRunnable 55 mFrame = frame; 60 mListener.onFrameReceived(mFilter, mFrame, mUserData); 61 mFrame.release();
|
/frameworks/base/core/tests/coretests/src/android/view/ |
H A D | PreDrawListener.java | 37 private MyLinearLayout mFrame; field in class:PreDrawListener 78 mFrame = findViewById(R.id.frame); 86 mFrame.mCancelNextDraw = true; 87 mFrame.invalidate();
|
H A D | PopupWindowVisibility.java | 35 private View mFrame; field in class:PopupWindowVisibility 46 mFrame = findViewById(R.id.frame); 68 mFrame.setVisibility(v == mHide ? View.INVISIBLE : View.VISIBLE);
|
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/graph/ |
H A D | BatteryMeterDrawableBase.java | 90 private final RectF mFrame = new RectF(); field in class:BatteryMeterDrawableBase 319 mFrame.set(left, top, width + left, height + top); 320 mFrame.offset(px, 0); 324 mFrame.left + Math.round(width * 0.28f), 325 mFrame.top, 326 mFrame.right - Math.round(width * 0.28f), 327 mFrame.top + buttonHeight); 330 mFrame.top += buttonHeight; 342 : (mFrame.top + (mFrame [all...] |
/frameworks/base/core/tests/coretests/src/android/widget/listview/ |
H A D | ListFilter.java | 35 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/filterpacks/java/android/filterpacks/imageproc/ |
H A D | BitmapOverlayFilter.java | 41 private Frame mFrame; field in class:BitmapOverlayFilter 88 if (mFrame != null) { 89 mFrame.release(); 90 mFrame = null;
|
/frameworks/base/services/tests/servicestests/src/com/android/server/wm/ |
H A D | WindowFrameTests.java | 160 // When mFrame extends past cf, the content insets are 161 // the difference between mFrame and ContentFrame. Visible 164 assertRect(w.mFrame,0, 0, 1000, 1000); 172 // On the other hand mFrame doesn't extend past cf we won't get any insets 179 assertRect(w.mFrame, 100, 100, 200, 200); 182 assertTrue(w.mFrame.equals(w.getContentFrameLw())); 183 assertTrue(w.mFrame.equals(w.getVisibleFrameLw())); 184 assertTrue(w.mFrame.equals(w.getStableFrameLw())); 200 assertRect(w.mFrame, 0, 0, 1000, 1000); 210 assertRect(w.mFrame, [all...] |
/frameworks/base/services/core/java/com/android/server/wm/ |
H A D | WindowState.java | 401 final Rect mFrame = new Rect(); field in class:WindowState 982 final int fw = mFrame.width(); 983 final int fh = mFrame.height(); 999 if (windowsAreFloating && !mFrame.isEmpty()) { 1003 final Rect limitFrame = task.inPinnedWindowingMode() ? mFrame : mContentFrame; 1007 final int height = Math.min(mFrame.height(), limitFrame.height()); 1008 final int width = Math.min(limitFrame.width(), mFrame.width()); 1015 Math.min(mFrame.top, limitFrame.bottom - minVisibleHeight)); 1017 Math.min(mFrame.left, limitFrame.right - minVisibleWidth)); 1018 mFrame [all...] |
H A D | TaskSnapshotSurface.java | 118 private final Rect mFrame = new Rect(); field in class:TaskSnapshotSurface 271 mFrame.set(frame); 274 mSizeMismatch = (mFrame.width() != mSnapshot.getSnapshot().getWidth() 275 || mFrame.height() != mSnapshot.getSnapshot().getHeight()); 357 final boolean isTop = mTaskBounds.top == 0 && mFrame.top == 0;
|
H A D | WindowStateAnimator.java | 542 + ", set left=" + w.mFrame.left + " top=" + w.mFrame.top 548 + w.mFrame.left + "," + w.mFrame.top + ") (" 693 final Rect frame = mWin.mFrame; 1507 final float x = w.mFrame.left; 1508 final float y = w.mFrame.top; 1509 final float width = w.mFrame.width(); 1510 final float height = w.mFrame.height();
|
H A D | WallpaperController.java | 298 int availw = wallpaperWin.mFrame.right - wallpaperWin.mFrame.left - dw; 313 int availh = wallpaperWin.mFrame.bottom - wallpaperWin.mFrame.top - dh;
|
/frameworks/native/services/surfaceflinger/ |
H A D | DisplayDevice.cpp | 247 mFrame(Rect::INVALID_RECT), 298 setProjection(DisplayState::eOrientationDefault, mViewport, mFrame); 653 mFrame = frame; 675 mFrame.left, mFrame.top, mFrame.right, mFrame.bottom, mScissor.left,
|
H A D | DisplayDevice.h | 130 const Rect getFrame() const { return mFrame; } 267 Rect mFrame; member in class:android::DisplayDevice
|
/frameworks/base/core/java/android/widget/ |
H A D | SlidingDrawer.java | 105 private final Rect mFrame = new Rect(); field in class:SlidingDrawer 380 final Rect frame = mFrame; 604 final Rect frame = mFrame; 634 final Rect frame = mFrame;
|
/frameworks/av/media/libstagefright/ |
H A D | FrameDecoder.cpp | 551 mFrame(NULL), 685 if (mFrame == NULL) { 688 mFrame = static_cast<VideoFrame*>(frameMem->pointer()); 729 mFrame->getFlattenedData(), 730 mFrame->mWidth, 731 mFrame->mHeight,
|
/frameworks/base/core/java/android/view/ |
H A D | Choreographer.java | 880 private int mFrame; field in class:Choreographer.FrameDisplayEventReceiver 926 mFrame = frame; 935 doFrame(mTimestampNanos, mFrame);
|
/frameworks/av/media/libstagefright/include/ |
H A D | FrameDecoder.h | 172 VideoFrame *mFrame; member in struct:android::ImageDecoder
|