Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:windowIdMap_
(Results
1 - 5
of
5
) sorted by relevance
/foundation/distributedhardware/distributed_screen/services/screenclient/src/
H
A
D
screen_client_window_adapter.cpp
75
windowIdMap_
.emplace(windowId, window);
in CreateWindow()
86
auto iter =
windowIdMap_
.find(windowId);
in ShowWindow()
87
if (iter ==
windowIdMap_
.end()) {
in ShowWindow()
110
auto iter =
windowIdMap_
.find(windowId);
in HideWindow()
111
if (iter ==
windowIdMap_
.end()) {
in HideWindow()
134
auto iter =
windowIdMap_
.find(windowId);
in MoveWindow()
135
if (iter ==
windowIdMap_
.end()) {
in MoveWindow()
158
auto iter =
windowIdMap_
.find(windowId);
in RemoveWindow()
159
if (iter ==
windowIdMap_
.end()) {
in RemoveWindow()
164
windowIdMap_
in RemoveWindow()
[all...]
/foundation/distributedhardware/distributed_screen/services/screenclient/test/unittest/src/
H
A
D
screen_client_window_adapter_test.cpp
104
ScreenClientWindowAdapter::GetInstance().
windowIdMap_
.emplace(windowId, nullptr);
in HWTEST_F()
147
ScreenClientWindowAdapter::GetInstance().
windowIdMap_
.emplace(windowId, nullptr);
in HWTEST_F()
191
ScreenClientWindowAdapter::GetInstance().
windowIdMap_
.emplace(windowId, nullptr);
in HWTEST_F()
233
ScreenClientWindowAdapter::GetInstance().
windowIdMap_
.emplace(windowId, nullptr);
in HWTEST_F()
246
ScreenClientWindowAdapter::GetInstance().
windowIdMap_
.emplace(0, nullptr);
in HWTEST_F()
/foundation/distributedhardware/distributed_screen/services/screenclient/include/
H
A
D
screen_client_window_adapter.h
50
std::map<int32_t, sptr<Rosen::Window>>
windowIdMap_
;
member in OHOS::DistributedHardware::ScreenClientWindowAdapter
/foundation/window/window_manager/wmserver/include/
H
A
D
window_root.h
149
std::map<sptr<IRemoteObject>, uint32_t>
windowIdMap_
;
member in OHOS::Rosen::WindowRoot
/foundation/window/window_manager/wmserver/src/
H
A
D
window_root.cpp
239
windowIdMap_
.insert(std::make_pair(remoteObject, node->GetWindowId()));
in AddDeathRecipient()
1162
if (
windowIdMap_
.count(window->AsObject()) == 0) {
in DestroyWindowInner()
1170
windowIdMap_
.erase(window->AsObject());
in DestroyWindowInner()
1447
auto iter =
windowIdMap_
.find(remoteObject);
in GetWindowIdByObject()
1448
return iter == std::end(
windowIdMap_
) ? INVALID_WINDOW_ID : iter->second;
in GetWindowIdByObject()
Completed in 10 milliseconds