Lines Matching defs:height
101 windowConfig.height = nativeWindow->surface->GetDefaultHeight();
179 config.height = requestHeight;
234 .h = windowConfig.height,
315 int32_t height = va_arg(args, int32_t);
316 window->surface->SetWindowConfigWidthAndHeight(width, height);
388 int32_t *height = va_arg(args, int32_t*);
390 if (height != nullptr && width != nullptr) {
392 *height = windowConfig.height;
688 int32_t NativeWindowGetDefaultWidthAndHeight(OHNativeWindow *window, int32_t *width, int32_t *height)
690 if (window == nullptr || window->surface == nullptr || width == nullptr || height == nullptr) {
694 if (windowConfig.width != 0 && windowConfig.height != 0) {
696 *height = windowConfig.height;
699 *height = window->surface->GetDefaultHeight();
704 int32_t NativeWindowSetRequestWidthAndHeight(OHNativeWindow *window, int32_t width, int32_t height)
709 window->surface->SetRequestWidthAndHeight(width, height);