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:CutoutInfo
(Results
1 - 25
of
51
) sorted by relevance
1
2
3
/foundation/window/window_manager/utils/include/
H
A
D
cutout_info.h
41
class
CutoutInfo
: public Parcelable {
class
43
CutoutInfo
() = default;
44
CutoutInfo
(const std::vector<DMRect>& boundingRects, WaterfallDisplayAreaRects waterfallDisplayAreaRects);
45
~
CutoutInfo
() = default;
46
WM_DISALLOW_COPY_AND_MOVE(
CutoutInfo
);
49
static
CutoutInfo
*Unmarshalling(Parcel& parcel);
/foundation/window/window_manager/utils/test/unittest/
H
A
D
cutout_info_test.cpp
56
sptr<
CutoutInfo
> info = new
CutoutInfo
();
in HWTEST_F()
72
sptr<
CutoutInfo
> info = new
CutoutInfo
();
in HWTEST_F()
90
sptr<
CutoutInfo
> info = new
CutoutInfo
();
in HWTEST_F()
106
sptr<
CutoutInfo
> info = new
CutoutInfo
();
in HWTEST_F()
/foundation/window/window_manager/utils/src/
H
A
D
cutout_info.cpp
19
CutoutInfo
::
CutoutInfo
(const std::vector<DMRect>& boundingRects,
in CutoutInfo()
function in OHOS::Rosen::CutoutInfo
25
bool
CutoutInfo
::Marshalling(Parcel& parcel) const
in Marshalling()
46
CutoutInfo
*
CutoutInfo
::Unmarshalling(Parcel& parcel)
in Unmarshalling()
52
CutoutInfo
*cutoutInfo = new
CutoutInfo
(boundingRects, waterfallDisplayAreaRects);
in Unmarshalling()
56
bool
CutoutInfo
::WriteBoundingRectsVector(const std::vector<DMRect>& boundingRects, Parcel& parcel) const
in WriteBoundingRectsVector()
74
bool
CutoutInfo
::ReadBoundingRectsVector(std::vector<DMRect>& unmarBoundingRects, Parcel& parcel)
in ReadBoundingRectsVector()
98
bool
CutoutInfo
[all...]
/foundation/window/window_manager/interfaces/innerkits/dm_lite/
H
A
D
display_lite.h
25
class
CutoutInfo
;
69
sptr<
CutoutInfo
> GetCutoutInfo() const;
/foundation/window/window_manager/interfaces/innerkits/dm/
H
A
D
display.h
25
class
CutoutInfo
;
139
sptr<
CutoutInfo
> GetCutoutInfo() const;
/foundation/window/window_manager/previewer/include/
H
A
D
display.h
25
class
CutoutInfo
;
132
sptr<
CutoutInfo
> GetCutoutInfo() const;
/foundation/window/window_manager/window_scene/screen_session_manager/src/zidl/
H
A
D
screen_session_manager_lite_proxy.cpp
266
sptr<
CutoutInfo
> ScreenSessionManagerLiteProxy::GetCutoutInfo(DisplayId displayId)
in GetCutoutInfo()
289
sptr<
CutoutInfo
> info = reply.ReadParcelable<
CutoutInfo
>();
in GetCutoutInfo()
H
A
D
screen_session_manager_lite_stub.cpp
158
sptr<
CutoutInfo
> cutoutInfo = GetCutoutInfo(displayId);
in HandleGetCutoutInfo()
/foundation/window/window_manager/window_scene/screen_session_manager/include/zidl/
H
A
D
screen_session_manager_lite_proxy.h
44
virtual sptr<
CutoutInfo
> GetCutoutInfo(DisplayId displayId) override;
H
A
D
screen_session_manager_lite_interface.h
79
virtual sptr<
CutoutInfo
> GetCutoutInfo(DisplayId displayId) { return nullptr; }
in GetCutoutInfo()
/foundation/window/window_manager/dmserver/include/
H
A
D
display_manager_service_inner.h
52
sptr<
CutoutInfo
> GetCutoutInfo(DisplayId displayId) const;
H
A
D
display_cutout_controller.h
42
sptr<
CutoutInfo
> GetCutoutInfo(DisplayId displayId);
/foundation/window/window_manager/window_scene/screen_session_manager/include/
H
A
D
screen_session_manager_lite.h
49
sptr<
CutoutInfo
> GetCutoutInfo(DisplayId displayId) override;
H
A
D
screen_cutout_controller.h
35
sptr<
CutoutInfo
> GetScreenCutoutInfo(DisplayId displayId);
/foundation/window/window_manager/dm_lite/include/
H
A
D
display_manager_lite_proxy.h
57
virtual sptr<
CutoutInfo
> GetCutoutInfo(DisplayId displayId);
H
A
D
display_manager_adapter_lite.h
63
virtual sptr<
CutoutInfo
> GetCutoutInfo(DisplayId displayId);
/foundation/window/window_manager/dm_lite/src/
H
A
D
display_lite.cpp
92
sptr<
CutoutInfo
> DisplayLite::GetCutoutInfo() const
in GetCutoutInfo()
/foundation/window/window_manager/dmserver/src/
H
A
D
display_cutout_controller.cpp
77
sptr<
CutoutInfo
> DisplayCutoutController::GetCutoutInfo(DisplayId displayId)
in GetCutoutInfo()
89
sptr<
CutoutInfo
> cutoutInfo(new
CutoutInfo
(boundingRects, waterfallDisplayAreaRects));
in GetCutoutInfo()
H
A
D
display_manager_service_inner.cpp
158
sptr<
CutoutInfo
> DisplayManagerServiceInner::GetCutoutInfo(DisplayId displayId) const
in GetCutoutInfo()
/foundation/window/window_manager/window_scene/screen_session_manager/src/
H
A
D
screen_cutout_controller.cpp
35
sptr<
CutoutInfo
> ScreenCutoutController::GetScreenCutoutInfo(DisplayId displayId)
in GetScreenCutoutInfo()
44
sptr<
CutoutInfo
> cutoutInfo = new
CutoutInfo
(boundaryRects, waterfallDisplayAreaRects_);
in GetScreenCutoutInfo()
H
A
D
screen_session_manager_lite.cpp
152
sptr<
CutoutInfo
> ScreenSessionManagerLite::GetCutoutInfo(DisplayId displayId)
in GetCutoutInfo()
/foundation/window/window_manager/interfaces/kits/napi/display_runtime/
H
A
D
js_display.h
59
napi_value CreateJsCutoutInfoObject(napi_env env, sptr<
CutoutInfo
> cutoutInfo);
/foundation/window/window_manager/window_scene/test/dms_unittest/
H
A
D
screen_session_manager_lite_test.cpp
168
sptr<
CutoutInfo
> ret = screenSessionManagerLite.GetCutoutInfo(displayId);
in HWTEST_F()
/foundation/window/window_manager/interfaces/kits/cj/display_runtime/
H
A
D
cj_display_impl.cpp
73
CCutoutInfo* CreateCCutoutInfoObject(sptr<
CutoutInfo
> &cutoutInfo)
in CreateCCutoutInfoObject()
289
sptr<
CutoutInfo
> cutoutInfo = display_->GetCutoutInfo();
in GetCutoutInfo()
/foundation/window/window_manager/dm/src/
H
A
D
display.cpp
204
sptr<
CutoutInfo
> Display::GetCutoutInfo() const
in GetCutoutInfo()
Completed in 9 milliseconds
1
2
3