Home
last modified time | relevance | path

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

1234

/ohos5.0/foundation/ability/ability_runtime/services/dialog_ui/ams_system_dialog/entry/src/main/ets/ServiceExtAbility/
H A DTipsServiceExtAbility.ts25 let win;
62 win.destroy();
74 if (win !== undefined) {
75 win.destroy();
86 win.destroyWindow();
94 await win.hideNonSystemFloatingWindows(true);
96 await win.moveTo(rect.left, rect.top);
97 await win.resetSize(rect.width, rect.height);
98 await win.loadContent('pages/tipsDialog');
99 await win.setBackgroundColor('#00000000');
[all …]
H A DJumpInterceptorServiceExtAbility.ts24 let win;
54 win.destroy();
94 if (win !== undefined) {
95 win.destroy();
103 win = await window.create(globalThis.jumpInterceptorExtensionContext, name, windowType);
105 await win.hideNonSystemFloatingWindows(true);
107 await win.moveTo(rect.left, rect.top);
108 await win.resetSize(rect.width, rect.height);
109 await win.loadContent('pages/jumpInterceptorDialog');
110 await win.setBackgroundColor('#00000000');
[all …]
H A DSelectorServiceExtAbility.ts31 let win;
202 win.destroy();
214 if (win !== undefined) {
215 win.destroy();
226 win.destroyWindow();
236 await win.moveTo(rect.left, rect.top);
237 await win.resetSize(rect.width, rect.height);
253 await win.setBackgroundColor('#00000000');
254 await win.show();
262 await win.moveTo(rect.left, rect.top);
[all …]
H A DSwitchUserServiceExtAbility.ts29 let win;
43 win.destroy();
71 win = await window.create(this.context, name, windowType);
73 await win.hideNonSystemFloatingWindows(true);
75 await win.moveWindowTo(rect.left, rect.top);
76 await win.resize(rect.width, rect.height);
77 await win.loadContent('pages/switchUserDialog');
78 await win.setWindowBackgroundColor('#00000000');
79 await win.showWindow();
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/pipeline/
H A Drs_occlusion_config.cpp25 bool RSOcclusionConfig::IsLeashWindow(std::string win) in IsLeashWindow() argument
27 return win.find(leashWin_) != std::string::npos; in IsLeashWindow()
30 bool RSOcclusionConfig::IsStartingWindow(std::string win) in IsStartingWindow() argument
32 return win.find(startWin_) != std::string::npos; in IsStartingWindow()
35 bool RSOcclusionConfig::IsAlphaWindow(std::string win) in IsAlphaWindow() argument
38 if (win.find(str) != std::string::npos) { in IsAlphaWindow()
45 bool RSOcclusionConfig::IsDividerBar(std::string win) in IsDividerBar() argument
47 return win.find(dividerBar_) != std::string::npos; in IsDividerBar()
/ohos5.0/foundation/multimedia/camera_framework/frameworks/js/camera_napi/demo/entry/src/main/ets/EntryAbility/
H A DEntryAbility.ts51 windowStage.getMainWindow().then((win: window.Window): void => {
52 GlobalContext.get().setPromptAction(win.getUIContext().getPromptAction());
55 win.setWindowLayoutFullScreen(true).then((): void => {
56 win.setWindowSystemBarEnable(['navigation']).then((): void => {
59 win.setWindowSystemBarProperties({
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/pipeline/
H A Drs_occlusion_config.h27 bool IsLeashWindow(std::string win);
28 bool IsStartingWindow(std::string win);
29 bool IsAlphaWindow(std::string win);
30 bool IsDividerBar(std::string win);
/ohos5.0/foundation/window/window_manager_lite/frameworks/wms/
H A Dlite_proxy_windows_manager.cpp44 void LiteProxyWindowsManager::RemoveWindow(IWindow* win) in RemoveWindow() argument
46 if (win != nullptr) { in RemoveWindow()
47 int32_t id = win->GetWindowId(); in RemoveWindow()
48 delete win; in RemoveWindow()
/ohos5.0/foundation/multimedia/camera_framework/frameworks/js/camera_napi/demo/entry/src/main/ets/MainAbility/
H A DMainAbility.ts38 windowStage.getMainWindow().then((win: Window.Window): void => {
39 win.setWindowLayoutFullScreen(true).then((): void => {
40 win.setWindowSystemBarEnable(['navigation']).then((): void => {
43 win.setWindowSystemBarProperties({
/ohos5.0/foundation/multimedia/camera_framework/frameworks/native/camera/test/ndktest/camera_ndk_demo/entry/src/main/ets/MainAbility/
H A DMainAbility.ts39 windowStage.getMainWindow().then((win) => {
40 win.setLayoutFullScreen(true).then(() => {
41 win.setSystemBarEnable(['navigation']).then(() => {
44 win.setSystemBarProperties({
/ohos5.0/docs/zh-cn/application-dev/reference/apis-input-kit/
H A Djs-apis-pointer.md246 window.getLastWindow(context, (error: BusinessError, win: window.Window) => {
251 let windowId = win.getWindowProperties().id;
301 window.getLastWindow(context, (error: BusinessError, win: window.Window) => {
306 let windowId = win.getWindowProperties().id;
393 window.getLastWindow(getContext(), (error: BusinessError, win: window.Window) => {
398 let windowId = win.getWindowProperties().id;
447 window.getLastWindow(getContext(), (error: BusinessError, win: window.Window) => {
452 let windowId = win.getWindowProperties().id;
500 let windowId = win.getWindowProperties().id;
633 let windowId = win.getWindowProperties().id;
[all …]
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/pipeline/
H A Drs_occlusion_config_test.cpp47 std::string win = "test"; variable
48 RSOcclusionConfig::GetInstance().IsAlphaWindow(win);
/ohos5.0/foundation/arkui/ace_engine_lite/frameworks/tools/snapshot/jerry_bin/
H A Dbuild_jerry.bat31 md win
32 xcopy /e/y/i/f ..\jerryscript\build\bin\MinSizeRel\jerry.exe .\win\
33 xcopy /e/y/i/f ..\jerryscript\build\bin\MinSizeRel\jerry-snapshot.exe .\win\
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/fuzztest/pipeline/rsrendernode_fuzzer/
H A Drsrendernode_fuzzer.cpp320 std::string win = GetStringFromData(STR_LEN); in RSOcclusionConfigFuzzTes() local
321 config.IsLeashWindow(win); in RSOcclusionConfigFuzzTes()
322 config.IsStartingWindow(win); in RSOcclusionConfigFuzzTes()
323 config.IsAlphaWindow(win); in RSOcclusionConfigFuzzTes()
324 config.IsDividerBar(win); in RSOcclusionConfigFuzzTes()
/ohos5.0/base/theme/wallpaper_mgr/frameworks/js/napi/wallpaperextensionability/
H A Dwallpaper_extension_ability.js27 WindowManager.create(this.context, WindowName, windowType).then((win) => {
29 this.wallpaperWindow = win;
/ohos5.0/docs/en/application-dev/reference/apis-input-kit/
H A Djs-apis-pointer.md246 window.getLastWindow(context, (error: BusinessError, win: window.Window) => {
251 let windowId = win.getWindowProperties().id;
301 window.getLastWindow(context, (error: BusinessError, win: window.Window) => {
306 let windowId = win.getWindowProperties().id;
393 window.getLastWindow(getContext(), (error: BusinessError, win: window.Window) => {
398 let windowId = win.getWindowProperties().id;
447 window.getLastWindow(getContext(), (error: BusinessError, win: window.Window) => {
452 let windowId = win.getWindowProperties().id;
500 let windowId = win.getWindowProperties().id;
633 let windowId = win.getWindowProperties().id;
[all …]
/ohos5.0/foundation/window/window_manager/AppDemo/window/immersive/entry/src/main/ets/MainAbility/pages/
H A Dindex.ets36 const win = await window.getTopWindow()
37 await win.setFullScreen(true)
/ohos5.0/docs/zh-cn/application-dev/ui/
H A Darkts-component-animation.md80 * @param win 当前app窗口
82 setMainWin(win: window.Window) {
83 if (win == null) {
86 GlobalContext.mainWin = win;
87 win.on("windowSizeChange", (data: window.Size) => {
/ohos5.0/foundation/ability/ability_runtime/test/unittest/cj_ability_object_test/
H A Dcj_ability_object_test.cpp40 auto win = std::make_shared<Rosen::WindowScene>(); in ProxyCall() local
41 auto winStage = new Rosen::CJWindowStageImpl(win); in ProxyCall()
/ohos5.0/foundation/resourceschedule/resource_schedule_service/cgroup_sched/framework/sched_controller/
H A Dcgroup_event_handler.cpp469 auto win = procRecord->GetWindowInfoNonNull(windowId); in HandleFocusedWindow() local
472 win->windowType_ = (int32_t)(windowType); in HandleFocusedWindow()
473 win->isFocused_ = true; in HandleFocusedWindow()
474 win->displayId_ = displayId; in HandleFocusedWindow()
475 win->ability_ = abi; in HandleFocusedWindow()
517 win->windowType_ = (int32_t)(windowType); in HandleUnfocusedWindow()
518 win->isFocused_ = false; in HandleUnfocusedWindow()
519 win->displayId_ = displayId; in HandleUnfocusedWindow()
520 win->ability_ = abi; in HandleUnfocusedWindow()
750 auto win = proc->GetWindowInfoNonNull(windowId); in UpdateActivepWebRenderInfo() local
[all …]
/ohos5.0/foundation/multimedia/camera_framework/frameworks/js/camera_napi/demo/entry/src/main/ets/common/
H A DGlobalContext.ts129 public setCameraWinClass(win: window.Window): void {
130 this.cameraWinClass = win;
/ohos5.0/foundation/window/window_manager/test/systemtest/wms/
H A Dwindow_immersive_test.cpp406 const sptr<Window>& win = Utils::CreateTestWindow(fullScreenAppinfo_); variable
407 if (win == nullptr) {
410 activeWindows_.push_back(win);
414 WMError ret = win->GetAvoidAreaByType(AvoidAreaType::TYPE_CUTOUT, avoidarea);
420 ASSERT_EQ(WMError::WM_OK, win->Hide());
/ohos5.0/foundation/window/window_manager_lite/services/wms/
H A Dlite_wm.cpp640 auto win = winList_.Begin(); in FindTargetWindow() local
641 while (win != winList_.End()) { in FindTargetWindow()
643 if (win->data_->isShow_ && win->data_->GetConfig().rect.IsContains(p)) { in FindTargetWindow()
644 targetWindow = win->data_; in FindTargetWindow()
647 win = win->next_; in FindTargetWindow()
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/vulkan/
H A Dswapchain_vk.cpp249 CreateFunctionsVk::Window win; in SwapchainVk() local
250 win.instance = swapchainCreateInfo.window.instance; in SwapchainVk()
251 win.window = swapchainCreateInfo.window.window; in SwapchainVk()
252 surface_ = CreateFunctionsVk::CreateSurface(devicePlatformData.instance, win); in SwapchainVk()
/ohos5.0/docs/en/application-dev/ui/
H A Darkts-component-animation.md80 * @param win Indicates the current application window.
82 setMainWin(win: window.Window) {
83 if (win == null) {
86 GlobalContext.mainWin = win;
87 win.on("windowSizeChange", (data: window.Size) => {

1234