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:HasFormVisible
(Results
1 - 21
of
21
) sorted by relevance
/foundation/ability/form_fwk/test/unittest/fms_form_mgr_service_test/
H
A
D
fms_form_mgr_service_test2.cpp
491
* @tc.name: test
HasFormVisible
function.
492
* @tc.desc: Verify that the
HasFormVisible
interface is called normally and the return value is right.
516
EXPECT_EQ(true, formMgrService.
HasFormVisible
(tokenId));
in HWTEST_F()
520
EXPECT_EQ(false, formMgrService.
HasFormVisible
(tokenId));
in HWTEST_F()
523
EXPECT_EQ(false, formMgrService.
HasFormVisible
(tokenId));
in HWTEST_F()
/foundation/ability/form_fwk/interfaces/kits/native/include/
H
A
D
form_mgr.h
164
bool
HasFormVisible
(const uint32_t tokenId);
/foundation/ability/form_fwk/test/mock/include/
H
A
D
mock_form_mgr_proxy.h
36
MOCK_METHOD1(
HasFormVisible
, bool(const uint32_t tokenId));
H
A
D
mock_form_mgr_service.h
41
MOCK_METHOD1(
HasFormVisible
, bool(const uint32_t tokenId));
/foundation/ability/dmsfwk/services/dtbschedmgr/test/unittest/
H
A
D
mock_form_mgr_service.h
80
bool
HasFormVisible
(const uint32_t tokenId) override
/foundation/ability/ability_runtime/test/unittest/frameworks_kits_appkit_native_test/
H
A
D
form_extension_context_mock_test.h
90
bool
HasFormVisible
(const uint32_t tokenId) override
/foundation/ability/form_fwk/test/unittest/form_mgr_proxy_test/
H
A
D
form_mgr_proxy_test.cpp
776
* @tc.desc: Verify
HasFormVisible
781
EXPECT_CALL(*mockFormMgrService,
HasFormVisible
(_))
in HWTEST_F()
785
bool result = formMgrProxy->
HasFormVisible
(tokenId);
in HWTEST_F()
/foundation/ability/form_fwk/services/include/
H
A
D
form_mgr_service.h
194
bool
HasFormVisible
(const uint32_t tokenId) override;
H
A
D
form_mgr_adapter.h
148
bool
HasFormVisible
(const uint32_t tokenId);
/foundation/ability/form_fwk/interfaces/inner_api/include/
H
A
D
form_mgr_interface.h
189
virtual bool
HasFormVisible
(const uint32_t tokenId) = 0;
H
A
D
form_mgr_proxy.h
154
virtual bool
HasFormVisible
(const uint32_t tokenId) override;
/foundation/ability/form_fwk/services/src/
H
A
D
form_dump_mgr.cpp
112
formInfos += " hasFormVisible [" + std::to_string(FormMgrAdapter::GetInstance().
HasFormVisible
(tokenId)) + "]\n";
in DumpHasFormVisible()
H
A
D
form_mgr_service.cpp
472
bool FormMgrService::
HasFormVisible
(const uint32_t tokenId)
in HasFormVisible()
function in OHOS::AppExecFwk::FormMgrService
480
return FormMgrAdapter::GetInstance().
HasFormVisible
(tokenId);
in HasFormVisible()
H
A
D
form_mgr_adapter.cpp
892
bool FormMgrAdapter::
HasFormVisible
(const uint32_t tokenId)
in HasFormVisible()
function in OHOS::AppExecFwk::FormMgrAdapter
/foundation/ability/form_fwk/test/fuzztest/formmgrstub_fuzzer/
H
A
D
formmgrstub_fuzzer.cpp
83
bool
HasFormVisible
(const uint32_t tokenId) override
/foundation/ability/form_fwk/interfaces/kits/native/src/
H
A
D
form_mgr.cpp
388
bool FormMgr::
HasFormVisible
(const uint32_t tokenId)
in HasFormVisible()
function in OHOS::AppExecFwk::FormMgr
401
return remoteProxy_->
HasFormVisible
(tokenId);
in HasFormVisible()
/foundation/ability/form_fwk/test/unittest/fms_form_render_stub_test/
H
A
D
fms_form_render_stub_test.cpp
233
bool
HasFormVisible
(const uint32_t tokenId) override
/foundation/ability/form_fwk/test/unittest/form_mgr_test/
H
A
D
form_mgr_test.cpp
2339
* @tc.desc: Verify
HasFormVisible
2344
EXPECT_CALL(*mockProxy,
HasFormVisible
(_))
in HWTEST_F()
2348
bool result = FormMgr::GetInstance().
HasFormVisible
(tokenId);
in HWTEST_F()
3386
* @tc.desc: Verify
HasFormVisible
3394
bool result = FormMgr::GetInstance().
HasFormVisible
(tokenId);
in HWTEST_F()
/foundation/ability/form_fwk/interfaces/inner_api/src/
H
A
D
form_mgr_proxy.cpp
540
bool FormMgrProxy::
HasFormVisible
(const uint32_t tokenId)
in HasFormVisible()
function in OHOS::AppExecFwk::FormMgrProxy
H
A
D
form_mgr_stub.cpp
545
* @brief Handle
HasFormVisible
message.
554
bool result =
HasFormVisible
(tokenId);
in HandleHasFormVisible()
/foundation/ability/form_fwk/test/unittest/form_mgr_stub_test/
H
A
D
form_mgr_stub_test.cpp
3040
EXPECT_CALL(*mockFormMgrService,
HasFormVisible
(_))
in HWTEST_F()
Completed in 40 milliseconds