Home
last modified time | relevance | path

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

12345678910>>...13

/ohos5.0/foundation/multimodalinput/input/frameworks/proxy/event_handler/test/
H A Dinput_manager_impl_test.cpp54 std::vector<WindowInfo> windows; variable
55 windows.push_back(windowInfo);
56 EXPECT_FALSE(InputMgrImpl.IsValiadWindowAreas(windows));
58 windows[0].pointerChangeAreas.clear();
59 EXPECT_FALSE(InputMgrImpl.IsValiadWindowAreas(windows));
94 std::vector<WindowInfo> windows; variable
95 windows.push_back(windowInfo);
182 std::vector<WindowInfo> windows; variable
186 bool ret = InputMgrImpl.IsValiadWindowAreas(windows);
199 std::vector<WindowInfo> windows; variable
[all …]
/ohos5.0/foundation/multimodalinput/input/frameworks/proxy/events/src/
H A Di_anco_consumer.cpp124 bool AncoWindows::Marshalling(const AncoWindows &windows, Parcel &parcel) in Marshalling() argument
127 parcel.WriteUint32(static_cast<uint32_t>(windows.updateType)) && in Marshalling()
128 parcel.WriteInt32(windows.focusWindowId) && in Marshalling()
129 MarshalVector(windows.windows, parcel, &MarshalWindowInfo) in Marshalling()
133 bool AncoWindows::Unmarshalling(Parcel &parcel, AncoWindows &windows) in Unmarshalling() argument
139 parcel.ReadInt32(windows.focusWindowId) && in Unmarshalling()
140 UnmarshalVector(parcel, windows.windows, &UnmarshalWindowInfo) in Unmarshalling()
142 windows.updateType = static_cast<ANCO_WINDOW_UPDATE_TYPE>(updateType); in Unmarshalling()
/ohos5.0/docs/en/application-dev/reference/apis-arkui/
H A Djs-apis-arkui-uiExtension-sys.md23 Sets whether to hide insecure windows.
27windows refer to the windows that may block the **EmbeddedComponent** (or **UIExtensionComponent**…
37 … | Yes | Whether to hide insecure windows. The value **true** means to hide insecure
65 // Hide insecure windows.
67 console.log(`Succeeded in hiding the non-secure windows.`);
69 console.log(`Failed to hide the non-secure windows. Cause:${JSON.stringify(err)}`);
74 // Unhide insecure windows.
76 console.log(`Succeeded in showing the non-secure windows.`);
78 console.log(`Failed to show the non-secure windows. Cause:${JSON.stringify(err)}`);
H A Djs-apis-uiExtensionHost-sys.md247 Sets whether to hide insecure windows.
250windows refer to the windows that may block the **UIExtensionComponent**, such as global floating
260 … | Yes | Whether to hide insecure windows. The value **true** means to hide insecure
288 // Hide insecure windows.
290 console.log(`Succeeded in hiding the non-secure windows.`);
292 console.log(`Failed to hide the non-secure windows. Cause:${JSON.stringify(err)}`);
297 // Unhide insecure windows.
299 console.log(`Succeeded in showing the non-secure windows.`);
301 console.log(`Failed to show the non-secure windows. Cause:${JSON.stringify(err)}`);
561 console.log(`Succeeded in hiding the non-secure windows.`);
[all …]
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_signal/src/
H A Dcommon.rs18 #[cfg(not(windows))]
25 #[cfg(windows)]
30 #[cfg(not(windows))]
33 #[cfg(windows)]
35 #[cfg(not(windows))]
38 #[cfg(not(windows))]
40 #[cfg(windows)]
43 #[cfg(windows)]
45 #[cfg(not(windows))]
49 #[cfg(windows)]
[all …]
H A Dlib.rs24 #[cfg(windows)]
25 mod windows; module
27 #[cfg(not(windows))]
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_io/src/sys/
H A Dmod.rs36 #[cfg(windows)]
55 #[cfg(windows)]
56 mod windows; module
58 #[cfg(windows)]
59 pub use self::windows::*;
/ohos5.0/foundation/multimodalinput/input/interfaces/native/innerkits/proxy/include/
H A Di_anco_consumer.h78 std::vector<AncoWindowInfo> windows; member
80 static bool Marshalling(const AncoWindows &windows, Parcel &parcel);
81 static bool Unmarshalling(Parcel &parcel, AncoWindows &windows);
91 virtual int32_t UpdateWindowInfo(std::shared_ptr<AncoWindows> windows) = 0;
/ohos5.0/foundation/barrierfree/accessibility/services/aams/test/unittest/
H A Daccessible_ability_channel_test.cpp271 std::vector<AccessibilityWindowInfo> windows; variable
272 EXPECT_EQ(channel_->GetWindows(windows), RET_OK);
273 EXPECT_EQ(static_cast<int>(windows.size()), 0);
293 std::vector<AccessibilityWindowInfo> windows; variable
294 EXPECT_EQ(channel->GetWindows(windows), RET_ERR_NO_CONNECTION);
295 EXPECT_EQ(static_cast<int>(windows.size()), 0);
325 std::vector<AccessibilityWindowInfo> windows; variable
326 EXPECT_EQ(channel->GetWindows(windows), RET_ERR_NO_CAPABILITY);
339 std::vector<AccessibilityWindowInfo> windows; variable
340 EXPECT_EQ(channel_->GetWindowsByDisplayId(DISPLAY_ID, windows), RET_OK);
[all …]
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/io/
H A Dstderr.rs69 #[cfg(windows)]
70 use std::os::windows::io::{AsHandle, AsRawHandle, BorrowedHandle, RawHandle};
72 #[cfg(windows)]
79 #[cfg(windows)]
H A Dstdout.rs69 #[cfg(windows)]
70 use std::os::windows::io::{AsHandle, AsRawHandle, BorrowedHandle, RawHandle};
72 #[cfg(windows)]
79 #[cfg(windows)]
H A Dstdin.rs114 #[cfg(windows)]
115 use std::os::windows::io::{AsHandle, AsRawHandle, BorrowedHandle, RawHandle};
117 #[cfg(windows)]
124 #[cfg(windows)]
/ohos5.0/docs/en/application-dev/windowmanager/
H A Dwindow-overview.md21 …erlay layers and positions).** Different types of application and system windows have different de…
25 …th the interaction process. This is the default behavior for application windows. You do not need …
35 The **Window** module provides system windows and application windows.
37 …isplay. Based on the displayed content, application windows are further classified into main windo…
50 …part of the screen is occupied by another window. You can resize the two windows by dragging the s…
51 …position as needed. Multiple freeform windows can be simultaneously displayed on the screen. These…
68 - You cannot develop system windows in the FA model.
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_io/src/sys/windows/udp/
H A Dsocket.rs15 use std::os::windows::io::FromRawSocket;
16 use std::os::windows::raw;
23 use crate::sys::windows::net::init;
24 use crate::sys::windows::socket_addr::socket_addr_trans;
/ohos5.0/foundation/arkui/ace_engine_lite/frameworks/tools/qt/simulator/
H A DREADME_zh.md26 ### 2、Git for windows安装
28 ​ 为能在windows环境下使用git命令,开发者需安装Git for windows
42 建议在Linux下使用 repo 批量下载所涉及到的代码仓到windows盘符下,下载后在windows下打开工程。
57 - 参考源码路径(请下载到windows本地,不要使用"\\\wsl$"路径映射):
/ohos5.0/docs/zh-cn/application-dev/napi/
H A Dbuild-with-ndk-cmake.md23 windows/linux 使用 SDK 包解压完成效果如下图所示:
56 + 配置 windows 下的环境变量
75 + windows 系统环境下,cmake 安装路径为自己所配置的环境变量路径
199 #### windows系统环境下
201windows下使用cmake进行编译,与linux下不同的是,使用cmake要加入参数 -G 选择使用的生成器,直接回车会列出下面的生成器。
211windows\native\build-tools\cmake\bin\cmake.exe -G "Ninja" -D OHOS_STL=c++_shared -D OHOS_ARCH=arme…
/ohos5.0/foundation/barrierfree/accessibility/common/interface/src/
H A Daccessible_ability_channel_stub.cpp333 std::vector<AccessibilityWindowInfo> windows; in HandleGetWindows() local
334 RetError result = GetWindows(windows); in HandleGetWindows()
335 if (!reply.WriteInt32(static_cast<int32_t>(windows.size()))) { in HandleGetWindows()
336 HILOG_ERROR("windows.size() write error: %{public}zu, ", windows.size()); in HandleGetWindows()
339 for (auto &window : windows) { in HandleGetWindows()
359 std::vector<AccessibilityWindowInfo> windows; in HandleGetWindowsByDisplayId() local
360 RetError result = GetWindowsByDisplayId(displayId, windows); in HandleGetWindowsByDisplayId()
361 if (!reply.WriteInt32(static_cast<int32_t>(windows.size()))) { in HandleGetWindowsByDisplayId()
362 HILOG_ERROR("windows.size() write error: %{public}zu, ", windows.size()); in HandleGetWindowsByDisplayId()
365 for (auto &window : windows) { in HandleGetWindowsByDisplayId()
/ohos5.0/build/docs/
H A Dhow-to-use-the-ndk-tools.md22 └── windows
23 ├── ets-windows-x64-4.0.6.5-Canary1.zip
24 ├── js-windows-x64-4.0.6.5-Canary1.zip
25 ├── native-windows-x64-4.0.6.5-Canary1.zip
26 ├── previewer-windows-x64-4.0.6.5-Canary1.zip
27 └── toolchains-windows-x64-4.0.6.5-Canary1.zip
/ohos5.0/foundation/multimedia/media_foundation/test/unittest/
H A DCMakeLists.txt12 set(ffmpeg_inc_path ${THIRD_PARTY_DIR}/ffmpeg/windows/include)
16 set(ffmpeg_lib_path ${THIRD_PARTY_DIR}/ffmpeg/windows/lib)
17 set(sdl_lib_path ${THIRD_PARTY_DIR}/SDL2.0/windows/lib/x64)
68 set(ffmpeg_path ${THIRD_PARTY_DIR}/ffmpeg/windows)
69 set(sdl_path ${THIRD_PARTY_DIR}/SDL2.0/windows)
/ohos5.0/foundation/barrierfree/accessibility/services/aams/test/mock/src/
H A Dmock_accessible_ability_connection.cpp109 …AbilityChannel::GetWindows(uint64_t displayId, std::vector<AccessibilityWindowInfo> &windows) const in GetWindows()
113 (void)windows; in GetWindows()
127 RetError AccessibleAbilityChannel::GetWindows(std::vector<AccessibilityWindowInfo> &windows) in GetWindows() argument
131 return GetWindows(displayId, windows); in GetWindows()
150 std::vector<AccessibilityWindowInfo> &windows) in GetWindowsByDisplayId() argument
153 return GetWindows(displayId, windows); in GetWindowsByDisplayId()
H A Dmock_accessible_ability_channel_proxy.cpp124 RetError AccessibleAbilityChannelProxy::GetWindows(std::vector<AccessibilityWindowInfo> &windows) in GetWindows() argument
126 (void)windows; in GetWindows()
131 std::vector<AccessibilityWindowInfo> &windows) in GetWindowsByDisplayId() argument
134 (void)windows; in GetWindowsByDisplayId()
/ohos5.0/foundation/barrierfree/accessibility/frameworks/aafwk/test/mock/src/
H A Dmock_accessible_ability_channel_proxy.cpp134 RetError AccessibleAbilityChannelProxy::GetWindows(std::vector<AccessibilityWindowInfo> &windows) in GetWindows() argument
137 (void)windows; in GetWindows()
142 std::vector<AccessibilityWindowInfo> &windows) in GetWindowsByDisplayId() argument
146 (void)windows; in GetWindowsByDisplayId()
/ohos5.0/foundation/multimodalinput/input/common/anco/comm/src/
H A Danco_channel_stub.cpp85 auto windows = std::make_shared<AncoWindows>(); in StubUpdateWindowInfo() local
86 if (!AncoWindows::Unmarshalling(data, *windows)) { in StubUpdateWindowInfo()
90 return UpdateWindowInfo(windows); in StubUpdateWindowInfo()
/ohos5.0/base/hiviewdfx/hilog/frameworks/libhilog/
H A DBUILD.gn44 if (platform != "windows" && platform != "mac" && platform != "linux") {
72 if (platform != "windows" && platform != "mac" && platform != "linux") {
81 if (platform == "windows") {
108 if (platform != "windows" && platform != "mac" && platform != "linux") {
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/util/core_affinity/
H A Dmod.rs24 pub mod windows; module
26 pub use windows::*;

12345678910>>...13