Home
last modified time | relevance | path

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

/third_party/flutter/engine/flutter/shell/platform/windows/client_wrapper/testing/
Dstub_flutter_windows_api.h60 virtual void SetWindowIcon(uint8_t* pixel_data, int width, int height) {} in SetWindowIcon() function
Dstub_flutter_windows_api.cc92 s_stub_implementation->SetWindowIcon(pixel_data, width, height); in FlutterDesktopSetWindowIcon()
/third_party/flutter/engine/flutter/shell/platform/glfw/client_wrapper/testing/
Dstub_flutter_glfw_api.h60 virtual void SetWindowIcon(uint8_t* pixel_data, int width, int height) {} in SetWindowIcon() function
Dstub_flutter_glfw_api.cc92 s_stub_implementation->SetWindowIcon(pixel_data, width, height); in FlutterDesktopWindowSetIcon()
/third_party/cef/include/views/
Dcef_window.h192 virtual void SetWindowIcon(CefRefPtr<CefImage> image) = 0;
/third_party/cef/libcef/browser/views/
Dwindow_view.h94 void SetWindowIcon(CefRefPtr<CefImage> window_icon);
Dwindow_impl.h60 void SetWindowIcon(CefRefPtr<CefImage> image) override;
Dwindow_impl.cc271 void CefWindowImpl::SetWindowIcon(CefRefPtr<CefImage> image) { in SetWindowIcon() function in CefWindowImpl
274 root_view()->SetWindowIcon(image); in SetWindowIcon()
Dwindow_view.cc514 void CefWindowView::SetWindowIcon(CefRefPtr<CefImage> window_icon) { in SetWindowIcon() function in CefWindowView
/third_party/flutter/skia/third_party/externals/sdl/src/video/haiku/
DSDL_bvideo.cc74 device->SetWindowIcon = BE_SetWindowIcon; in BE_CreateDevice()
/third_party/flutter/skia/third_party/externals/sdl/src/video/psp/
DSDL_pspvideo.c119 device->SetWindowIcon = PSP_SetWindowIcon; in PSP_Create()
/third_party/cef/libcef_dll/ctocpp/views/
Dwindow_ctocpp.h57 void SetWindowIcon(CefRefPtr<CefImage> image) override;
Dwindow_ctocpp.cc342 void CefWindowCToCpp::SetWindowIcon(CefRefPtr<CefImage> image) { in SetWindowIcon() function in CefWindowCToCpp
/third_party/flutter/skia/third_party/externals/sdl/src/video/raspberry/
DSDL_rpivideo.c106 device->SetWindowIcon = RPI_SetWindowIcon; in RPI_Create()
/third_party/flutter/skia/third_party/externals/sdl/src/video/directfb/
DSDL_DirectFB_video.c121 device->SetWindowIcon = DirectFB_SetWindowIcon; in DirectFB_CreateDevice()
/third_party/flutter/skia/third_party/externals/sdl/src/video/
DSDL_sysvideo.h206 void (*SetWindowIcon) (_THIS, SDL_Window * window, SDL_Surface * icon); member
DSDL_video.c1573 if (_this->SetWindowIcon && window->icon) { in SDL_RecreateWindow()
1574 _this->SetWindowIcon(_this, window, window->icon); in SDL_RecreateWindow()
1660 if (_this->SetWindowIcon) { in SDL_SetWindowIcon()
1661 _this->SetWindowIcon(_this, window, window->icon); in SDL_SetWindowIcon()
/third_party/flutter/skia/third_party/externals/sdl/src/video/mir/
DSDL_mirvideo.c186 device->SetWindowIcon = NULL; in MIR_CreateDevice()
/third_party/flutter/skia/third_party/externals/sdl/src/video/cocoa/
DSDL_cocoavideo.m86 device->SetWindowIcon = Cocoa_SetWindowIcon;
/third_party/flutter/skia/third_party/externals/sdl/src/video/windows/
DSDL_windowsvideo.c137 device->SetWindowIcon = WIN_SetWindowIcon; in WIN_CreateDevice()
/third_party/flutter/skia/third_party/externals/sdl/src/video/x11/
DSDL_x11video.c234 device->SetWindowIcon = X11_SetWindowIcon; in X11_CreateDevice()
/third_party/cef/tests/ceftests/views/
Dwindow_unittest.cc372 window->SetWindowIcon(image); in RunWindowIcon()
/third_party/flutter/skia/third_party/externals/sdl/src/video/pandora/
DSDL_pandora.c108 device->SetWindowIcon = PND_setwindowicon; in PND_create()
/third_party/cef/tests/cefclient/browser/
Dviews_window.cc215 window_->SetWindowIcon(image); in SetFavicon()
/third_party/cef/libcef_dll/cpptoc/views/
Dwindow_cpptoc.cc364 CefWindowCppToC::Get(self)->SetWindowIcon(CefImageCppToC::Unwrap(image)); in window_set_window_icon()