Home
last modified time | relevance | path

Searched refs:mWindow (Results 1 – 17 of 17) sorted by relevance

/packages/modules/Uwb/service/java/com/android/server/uwb/correction/filtering/
DMedAvgFilter.java37 private final ArrayDeque<Sample> mWindow = new ArrayDeque<>(); field in MedAvgFilter
116 mWindow.addLast(new Sample(value, timeMs, fom)); in add()
117 while (mWindow.size() > mWindowSize) { in add()
118 mWindow.removeFirst(); in add()
128 mWindow.forEach(s -> s.value = selector.run(s.value)); in remap()
149 int count = mWindow.size(); in compute()
154 return mWindow.getFirst(); in compute()
156 List<Sample> sorted = sortSamples(mWindow); in compute()
/packages/apps/Launcher3/src/com/android/launcher3/util/
DSystemUiController.java57 private final Window mWindow; field in SystemUiController
61 mWindow = window; in SystemUiController()
75 int oldFlags = mWindow.getDecorView().getSystemUiVisibility(); in updateUiState()
82 mWindow.getDecorView().setSystemUiVisibility(newFlags); in updateUiState()
91 mStates[UI_STATE_BASE_WINDOW], mWindow.getDecorView().getSystemUiVisibility()); in getBaseSysuiVisibility()
/packages/modules/ImsMedia/service/src/com/android/telephony/imsmedia/lib/libimsmedia/core/video/android/
DImsMediaVideoRenderer.cpp29 mWindow = nullptr; in ImsMediaVideoRenderer()
77 mWindow = window; in SetSurface()
109 if (mWindow != nullptr) in Start()
111 ANativeWindow_acquire(mWindow); in Start()
114 media_status_t err = AMediaCodec_configure(mCodec, mFormat, mWindow, nullptr, 0); in Start()
161 if (mWindow != nullptr) in Stop()
163 ANativeWindow_release(mWindow); in Stop()
DImsMediaVideoSource.cpp30 mWindow = nullptr; in ImsMediaVideoSource()
104 mWindow = window; in SetSurface()
272 if (mCamera->CreateSession(mWindow, mImageReaderSurface) == false) in Start()
/packages/services/Car/cpp/evs/sampleDriver/aidl/src/
DGlWrapper.cpp221 mWindow = shimSurface.get(); in initialize()
222 if (mWindow == nullptr) { in initialize()
226 ANativeWindow_acquire(mWindow); in initialize()
263 mSurface = eglCreateWindowSurface(mDisplay, egl_config, mWindow, nullptr); in initialize()
327 if (mWindow == nullptr) { in shutdown()
331 ANativeWindow_release(mWindow); in shutdown()
332 mWindow = nullptr; in shutdown()
/packages/apps/Car/RotaryController/tests/unit/src/com/android/car/rotary/
DNodeBuilder.java65 private AccessibilityWindowInfo mWindow; field in NodeBuilder
118 when(node.getWindow()).thenReturn(builder.mWindow); in build()
211 mWindow = window; in setWindow()
332 copy.mWindow = mWindow; in cut()
351 mWindow = null; in cut()
/packages/apps/Car/SystemUI/src/com/android/systemui/car/volume/
DCarVolumeDialogImpl.java131 private Window mWindow; field in CarVolumeDialogImpl
396 mWindow = mDialog.getWindow(); in initDialog()
397 mWindow.requestFeature(Window.FEATURE_NO_TITLE); in initDialog()
398 mWindow.setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT)); in initDialog()
399 mWindow.clearFlags(WindowManager.LayoutParams.FLAG_DIM_BEHIND in initDialog()
401 mWindow.addFlags(WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE in initDialog()
407 mWindow.setType(WindowManager.LayoutParams.TYPE_VOLUME_OVERLAY); in initDialog()
408 mWindow.setWindowAnimations(com.android.internal.R.style.Animation_Toast); in initDialog()
409 final WindowManager.LayoutParams lp = mWindow.getAttributes(); in initDialog()
414 mWindow.setAttributes(lp); in initDialog()
[all …]
/packages/modules/ImsMedia/service/src/com/android/telephony/imsmedia/lib/libimsmedia/core/video/nodes/
DIVideoSourceNode.cpp47 mWindow = nullptr; in IVideoSourceNode()
75 if (mWindow == nullptr) in Start()
86 mVideoSource->SetSurface(mWindow); in Start()
264 mWindow = window; in UpdateSurface()
DIVideoRendererNode.cpp43 mWindow = nullptr; in IVideoRendererNode()
87 mVideoRenderer->SetSurface(mWindow); in Start()
340 mWindow = window; in UpdateSurface()
/packages/services/Car/cpp/evs/sampleDriver/hidl/
DGlWrapper.cpp211 mWindow = getNativeWindow(mSurfaceHolder.get()); in initialize()
212 if (mWindow == nullptr) { in initialize()
245 mSurface = eglCreateWindowSurface(mDisplay, egl_config, mWindow, nullptr); in initialize()
DGlWrapper.h70 ANativeWindow* mWindow; variable
/packages/services/Car/tests/CarLibUnitTest/src/android/car/cluster/
DClusterHomeManagerUnitTest.java90 private Window mWindow; field in ClusterHomeManagerUnitTest
327 when(mActivity.getWindow()).thenReturn(mWindow); in setUpActivity()
328 when(mWindow.getDecorView()).thenReturn(mDecorView); in setUpActivity()
/packages/services/Car/cpp/evs/sampleDriver/aidl/include/
DGlWrapper.h72 ANativeWindow* mWindow; variable
/packages/modules/ImsMedia/service/src/com/android/telephony/imsmedia/lib/libimsmedia/core/include/video/nodes/
DIVideoSourceNode.h78 ANativeWindow* mWindow; variable
DIVideoRendererNode.h94 ANativeWindow* mWindow; variable
/packages/modules/ImsMedia/service/src/com/android/telephony/imsmedia/lib/libimsmedia/core/include/video/android/
DImsMediaVideoRenderer.h84 ANativeWindow* mWindow; variable
DImsMediaVideoSource.h153 ANativeWindow* mWindow; variable