Home
last modified time | relevance | path

Searched refs:screenHeight (Results 1 – 25 of 31) sorted by relevance

12

/third_party/wayland-ivi-extension/ivi-layermanagement-examples/layer-add-surfaces/src/
Dlayer-add-surfaces.c35 t_ilm_uint screenHeight; variable
146 choosen_height = screenProperties.screenHeight; in choose_screen()
152 choosen_height = screenProperties.screenHeight; in choose_screen()
158 screenHeight = choosen_height; in choose_screen()
270 ilm_layerCreateWithDimension(&layer, screenWidth, screenHeight); in main()
271 …d-surfaces: layer (%d) destination region: x:0 y:0 w:%u h:%u\n", layer, screenWidth, screenHeight); in main()
/third_party/skia/samplecode/
DSamplePathText.cpp95 virtual void reset(SkRandom*, int screenWidth, int screenHeight) {} in reset() argument
96 virtual bool animate(double nanos, int screenWidth, int screenHeight) { return false; } in animate() argument
157 void reset(SkRandom* rand, int screenWidth, int screenHeight) override { in reset() argument
158 const SkScalar screensize = static_cast<SkScalar>(std::max(screenWidth, screenHeight)); in reset()
172 this->runAnimationTask(0, 0, screenWidth, screenHeight); in reset()
177 bool animate(double nanos, int screenWidth, int screenHeight) final { in animate() argument
184 dt, screenWidth, screenHeight)); in animate()
265 void reset(SkRandom* rand, int screenWidth, int screenHeight) override { in reset() argument
266 fWaves.reset(*rand, screenWidth, screenHeight); in reset()
267 this->MovingGlyphAnimator::reset(rand, screenWidth, screenHeight); in reset()
/third_party/wayland-ivi-extension/ivi-layermanagement-examples/LayerManagerControl/src/
Dcommon.cpp136 t_ilm_uint screenHeight = 0; in captureSceneData() local
138 ilmErrorTypes callResult = ilm_getScreenResolution(0, &screenWidth, &screenHeight); in captureSceneData()
147 scene.screenHeight = screenHeight; in captureSceneData()
Dprint.cpp100 << screenProperties.screenHeight << "\n"; in printScreenProperties()
Dsceneio.cpp101 pIlmdisplay->set("height", sceneStruct.screenHeight); in captureSceneData()
/third_party/flutter/engine/flutter/lib/web_ui/lib/src/engine/surface/
Dscene.dart20 final double screenHeight = html.window.innerHeight.toDouble();
21 _globalClip = ui.Rect.fromLTRB(0, 0, screenWidth, screenHeight);
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/
Dmtl_utils.h77 NSUInteger screenHeight,
81 NSUInteger screenHeight,
86 NSUInteger screenHeight = 0,
Dmtl_utils.mm646 NSUInteger screenHeight,
653 re.originY = static_cast<double>(screenHeight) - rect.y1();
663 NSUInteger screenHeight,
670 return GetViewportFlipY(rect, screenHeight, znear, zfar);
676 MTLScissorRect GetScissorRect(const gl::Rectangle &rect, NSUInteger screenHeight, bool flipY)
681 re.y = flipY ? (screenHeight - rect.y1()) : rect.y;
/third_party/wayland-ivi-extension/ivi-layermanagement-examples/EGLWLInputEventExample/include/
DWLEyes.h72 WLEyes(int screenWidth, int screenHeight);
/third_party/flutter/flutter/examples/flutter_gallery/lib/demo/shrine/
Dexpanding_bottom_sheet.dart174 Animation<double> _getHeightAnimation(double screenHeight) {
180 peak: _kCartHeight + (screenHeight - _kCartHeight) * _kPeakVelocityProgress,
181 end: screenHeight,
189 end: screenHeight,
333 final double screenHeight = screenSize.height;
337 _heightAnimation = _getHeightAnimation(screenHeight);
/third_party/flutter/skia/platform_tools/android/apps/skottie/src/main/java/org/skia/skottie/
DSkottieActivity.java80 int screenHeight = (int)(size.y / 1.3f); in populateGrid() local
88 mCellHeight = screenHeight / mRowCount; in populateGrid()
/third_party/skia/platform_tools/android/apps/skottie/src/main/java/org/skia/skottie/
DSkottieActivity.java76 int screenHeight = (int)(size.y / 1.3f); in populateGrid() local
84 mCellHeight = screenHeight / mRowCount; in populateGrid()
/third_party/skia/src/codec/
DSkFrameHolder.h183 int screenHeight() const { return fScreenHeight; } in screenHeight() function
/third_party/flutter/skia/src/codec/
DSkFrameHolder.h178 int screenHeight() const { return fScreenHeight; } in screenHeight() function
DSkGifCodec.cpp87 SkASSERT(reader->screenHeight() > 0 && reader->screenWidth() > 0); in MakeFromStream()
94 auto encodedInfo = SkEncodedInfo::Make(reader->screenWidth(), reader->screenHeight(), in MakeFromStream()
/third_party/wayland-ivi-extension/ivi-layermanagement-examples/EGLWLInputEventExample/src/
DWLEyes.cpp284 WLEyes::WLEyes(int screenWidth, int screenHeight) in WLEyes() argument
286 , m_height(screenHeight) in WLEyes()
/third_party/wayland-ivi-extension/ivi-layermanagement-api/ilmCommon/include/
Dilm_types.h231 t_ilm_uint screenHeight; /*!< height value of screen in pixels */ member
/third_party/skia/third_party/externals/libgifcodec/
DSkLibGifCodec.cpp85 SkASSERT(reader->screenHeight() > 0 && reader->screenWidth() > 0); in MakeFromStream()
92 auto encodedInfo = SkEncodedInfo::Make(reader->screenWidth(), reader->screenHeight(), in MakeFromStream()
/third_party/wayland-ivi-extension/ivi-layermanagement-examples/LayerManagerControl/include/
DLMControl.h57 t_ilm_uint screenHeight; member
/third_party/flutter/engine/flutter/shell/platform/android/io/flutter/view/
DFlutterView.java535 int screenHeight = getRootView().getHeight(); in calculateBottomKeyboardInset() local
539 if (insets.getSystemWindowInsetBottom() < screenHeight * keyboardHeightRatioHeuristic) { in calculateBottomKeyboardInset()
/third_party/flutter/flutter/packages/flutter/test/rendering/
Dviewport_test.dart661 const double screenHeight = 400.0;
663 const double itemHeight = screenHeight / 10.0;
667 tester.binding.window.physicalSizeTestValue = const Size(screenWidth, screenHeight);
/third_party/flutter/flutter/packages/flutter/test/cupertino/
Daction_sheet_test.dart285 double screenHeight;
289 screenHeight = MediaQuery.of(context).size.height;
322 expect(tester.getSize(find.byType(CupertinoActionSheet)).height, screenHeight);
/third_party/flutter/skia/third_party/externals/angle2/util/osx/
DOSXWindow.mm103 float screenHeight = CGDisplayBounds(CGMainDisplayID()).size.height;
104 return screenHeight - y;
/third_party/skia/third_party/externals/angle2/util/osx/
DOSXWindow.mm103 float screenHeight = CGDisplayBounds(CGMainDisplayID()).size.height;
104 return screenHeight - y;
/third_party/wayland-ivi-extension/ivi-layermanagement-api/ilmControl/src/
Dilm_control_wayland_platform.c177 ctx_scrn->prop.screenHeight = width; in output_listener_mode()
180 ctx_scrn->prop.screenHeight = height; in output_listener_mode()
1366 ctx_scrn->prop.screenHeight = 480; in init_control()
1639 *pHeight = ctx_scrn->prop.screenHeight; in ilm_getScreenResolution()

12