/third_party/cef/tests/cefclient/browser/ |
D | root_window_views.cc | 97 if (!window_) in Show() 100 window_->Show(); in Show() 104 window_->Minimize(); in Show() 107 window_->Maximize(); in Show() 121 if (window_) in Hide() 122 window_->Hide(); in Hide() 133 if (window_) { in SetBounds() 134 window_->SetBounds( in SetBounds() 146 if (window_) in Close() 147 window_->Close(force); in Close() [all …]
|
D | views_window.cc | 134 if (window_) in Show() 135 window_->Show(); in Show() 136 if (browser_view_ && !window_->IsMinimized()) { in Show() 144 if (window_) in Hide() 145 window_->Hide(); in Hide() 150 if (window_) in Minimize() 151 window_->Minimize(); in Minimize() 156 if (window_) in Maximize() 157 window_->Maximize(); in Maximize() 162 if (window_) in SetBounds() [all …]
|
D | views_overlay_controls.cc | 45 DCHECK(!window_); in Initialize() 49 window_ = window; in Initialize() 50 window_maximized_ = window_->IsMaximized(); in Initialize() 74 window_->AddOverlayView(menu_button, CEF_DOCKING_MODE_TOP_LEFT); in Initialize() 84 window_->AddOverlayView(location_bar_, CEF_DOCKING_MODE_CUSTOM); in Initialize() 88 window_ = nullptr; in Destroy() 101 auto bounds = window_->GetBounds(); in UpdateControls() 147 window_->Minimize(); in OnButtonPressed() 150 if (window_->IsMaximized()) in OnButtonPressed() 151 window_->Restore(); in OnButtonPressed() [all …]
|
D | root_window_gtk.cc | 89 window_(nullptr), in RootWindowGtk() 170 if (!window_) in Show() 176 UseDefaultX11VisualForGtk(GTK_WIDGET(window_)); in Show() 177 gtk_widget_show_all(window_); in Show() 180 MinimizeWindow(GTK_WINDOW(window_)); in Show() 182 MaximizeWindow(GTK_WINDOW(window_)); in Show() 186 GdkWindow* gdk_window = gtk_widget_get_window(window_); in Show() 196 if (window_) in Hide() 197 gtk_widget_hide(window_); in Hide() 203 if (!window_) in SetBounds() [all …]
|
D | root_window_mac.mm | 24 NSWindow* window_; field 133 NSWindow* window_; 155 window_(nil), 232 if (!window_) 235 const bool is_visible = [window_ isVisible]; 236 const bool is_minimized = [window_ isMiniaturized]; 237 const bool is_maximized = [window_ isZoomed]; 248 [window_ deminiaturize:nil]; 250 [window_ performZoom:nil]; 254 if (![window_ isVisible]) [all …]
|
D | temp_window_mac.mm | 24 window_ = [[NSWindow alloc] initWithContentRect:NSMakeRect(0, 0, 1, 1) 28 CHECK(window_); 31 DCHECK(window_); 32 [window_ close]; 36 NSWindow* window_; 56 g_temp_window->impl_->window_.contentView);
|
/third_party/flutter/engine/flutter/shell/platform/android/ |
D | android_native_window.cc | 9 AndroidNativeWindow::AndroidNativeWindow(Handle window) : window_(window) {} in AndroidNativeWindow() 12 if (window_ != nullptr) { in ~AndroidNativeWindow() 13 ANativeWindow_release(window_); in ~AndroidNativeWindow() 14 window_ = nullptr; in ~AndroidNativeWindow() 19 return window_ != nullptr; in IsValid() 23 return window_; in handle() 27 return window_ == nullptr ? SkISize::Make(0, 0) in GetSize() 28 : SkISize::Make(ANativeWindow_getWidth(window_), in GetSize() 29 ANativeWindow_getHeight(window_)); in GetSize()
|
D | android_context_gl.cc | 122 window_ = std::move(window); in CreateWindowSurface() 132 reinterpret_cast<EGLNativeWindowType>(window_->handle()), attribs); in CreateWindowSurface() 152 window_(nullptr), in AndroidContextGL() 272 if (!this->CreateWindowSurface(window_)) { in Resize()
|
D | android_native_window.h | 28 Handle window_;
|
/third_party/flutter/engine/flutter/shell/platform/glfw/client_wrapper/include/flutter/ |
D | flutter_window.h | 28 explicit FlutterWindow(FlutterDesktopWindowRef window) : window_(window) {} in FlutterWindow() 42 FlutterDesktopWindowSetHoverEnabled(window_, enabled); in SetHoverEnabled() 47 FlutterDesktopWindowSetTitle(window_, title.c_str()); in SetTitle() 56 FlutterDesktopWindowSetIcon(window_, pixel_data, width, height); in SetIcon() 63 FlutterDesktopWindowGetFrame(window_, &frame.left, &frame.top, &frame.width, in GetFrame() 71 FlutterDesktopWindowSetFrame(window_, frame.left, frame.top, frame.width, in SetFrame() 80 return FlutterDesktopWindowGetScaleFactor(window_); in GetScaleFactor() 87 FlutterDesktopWindowRef window_;
|
D | plugin_registrar_glfw.h | 25 window_ = std::make_unique<FlutterWindow>( in PluginRegistrarGlfw() 35 FlutterWindow* window() { return window_.get(); } in window() 39 std::unique_ptr<FlutterWindow> window_;
|
D | flutter_window_controller.h | 68 FlutterWindow* window() { return window_.get(); } in window() 82 std::unique_ptr<FlutterWindow> window_; variable
|
/third_party/flutter/engine/flutter/shell/platform/windows/client_wrapper/include/flutter/ |
D | flutter_window.h | 28 explicit FlutterWindow(FlutterDesktopWindowRef window) : window_(window) {} in FlutterWindow() 42 FlutterDesktopWindowSetHoverEnabled(window_, enabled); in SetHoverEnabled() 47 FlutterDesktopWindowSetTitle(window_, title.c_str()); in SetTitle() 56 FlutterDesktopWindowSetIcon(window_, pixel_data, width, height); in SetIcon() 63 FlutterDesktopWindowGetFrame(window_, &frame.left, &frame.top, &frame.width, in GetFrame() 71 FlutterDesktopWindowSetFrame(window_, frame.left, frame.top, frame.width, in SetFrame() 80 return FlutterDesktopWindowGetScaleFactor(window_); in GetScaleFactor() 87 FlutterDesktopWindowRef window_;
|
D | plugin_registrar_windows.h | 26 window_ = std::make_unique<FlutterWindow>( in PluginRegistrarWindows() 36 FlutterWindow* window() { return window_.get(); } in window() 40 std::unique_ptr<FlutterWindow> window_;
|
D | flutter_window_controller.h | 67 FlutterWindow* window() { return window_.get(); } in window() 81 std::unique_ptr<FlutterWindow> window_; variable
|
/third_party/cef/patch/patches/ |
D | rwh_background_color_1984.patch | 19 - window_->layer()->SetFillsBoundsOpaquely(opaque); 20 - window_->layer()->SetColor(color); 21 + if (window_) { 24 + window_->layer()->SetFillsBoundsOpaquely(opaque); 25 + window_->layer()->SetColor(color); 31 // This needs to happen only after |window_| has been initialized using 33 window_->SetEmbedFrameSinkId(frame_sink_id_); 35 + // Do this after |window_| is created to avoid crashes on Win10.
|
/third_party/cef/tests/ceftests/views/ |
D | test_window_delegate.cc | 49 EXPECT_FALSE(window_); in OnWindowCreated() 50 window_ = window; in OnWindowCreated() 124 EXPECT_TRUE(window->IsSame(window_)); in OnWindowDestroyed() 135 window_ = nullptr; in OnWindowDestroyed() 164 return config_->on_accelerator.Run(window_, command_id); in OnAccelerator() 171 return config_->on_key_event.Run(window_, event); in OnKeyEvent() 190 if (!window_) in OnCloseWindow() 193 EXPECT_TRUE(window_->IsValid()); in OnCloseWindow() 194 EXPECT_FALSE(window_->IsClosed()); in OnCloseWindow() 197 CefRefPtr<CefWindow> window = window_; in OnCloseWindow()
|
/third_party/flutter/engine/flutter/shell/gpu/ |
D | gpu_surface_vulkan.cc | 13 : window_(std::move(proc_table), std::move(native_surface)), in GPUSurfaceVulkan() 20 return window_.IsValid(); in IsValid() 26 auto surface = window_.AcquireSurface(); in AcquireFrame() 41 return weak_this->window_.SwapBuffers(); in AcquireFrame() 58 return window_.GetSkiaGrContext(); in GetContext()
|
/third_party/flutter/engine/flutter/shell/platform/ohos/ |
D | ohos_surface_gl.cc | 14 : window_(nullptr), in OhosSurfaceGL() 42 window_ = window; in SetPlatformWindow() 131 double y = window_->GetRect().height_ / 2.0; // get middle of height for flip mirror in GLContextSurfaceTransformation() 186 if (!window_) { in InitRenderSurface() 191 auto surfaceNode = window_->GetSurfaceNode(); in InitRenderSurface()
|
/third_party/flutter/engine/flutter/shell/platform/glfw/ |
D | platform_handler.cc | 31 window_(window) { in PlatformHandler() 55 const char* clipboardData = glfwGetClipboardString(window_); in HandleMethodCall() 75 glfwSetClipboardString(window_, itr->value.GetString()); in HandleMethodCall()
|
/third_party/flutter/engine/flutter/shell/platform/glfw/client_wrapper/ |
D | flutter_window_controller.cc | 57 window_ = in CreateWindow() 77 window_ = nullptr; in RunEventLoop()
|
/third_party/flutter/engine/flutter/shell/platform/windows/client_wrapper/ |
D | flutter_window_controller.cc | 57 window_ = in CreateWindow() 77 window_ = nullptr; in RunEventLoop()
|
/third_party/boost/libs/beast/test/beast/zlib/ |
D | inflate_stream.cpp | 327 int window_[2]; member in boost::beast::zlib::inflate_stream_test::Matrix 337 window_[0] = 9; in Matrix() 338 window_[1] = 15; in Matrix() 359 window_[0] = from; in window() 360 window_[1] = to; in window() 391 for(auto window = window_[0]; in operator ()() 392 window <= window_[1]; ++window) in operator ()()
|
/third_party/cef/libcef/browser/views/ |
D | window_impl.cc | 81 window_(widget->GetNativeWindow()) { in CefUnhandledKeyEventHandler() 82 DCHECK(window_); in CefUnhandledKeyEventHandler() 83 window_->AddPostTargetHandler(this); in CefUnhandledKeyEventHandler() 91 window_->RemovePostTargetHandler(this); in ~CefUnhandledKeyEventHandler() 118 aura::Window* window_; member in __anona3f0b0210111::CefUnhandledKeyEventHandler
|
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/ |
D | rolling_cpu_kernel.cc | 45 window_ = LongToInt(window); in InitKernel() 75 offset = (window_ - 1) / 2; in RollingBoundsCalculate() 93 int start = offset + i - window_ + start_offset; in RollingBoundsCalculate()
|