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:ToJson
(Results
1 - 25
of
101
) sorted by relevance
1
2
3
4
5
/base/update/updateservice/interfaces/inner_api/feature/update/model/common/
H
A
D
base_json_struct.h
29
virtual std::string
ToJson
()
in ToJson()
function
31
return GetJsonBuilder().
ToJson
();
in ToJson()
/base/notification/distributed_notification_service/interfaces/inner_api/
H
A
D
notification_json_convert.h
33
virtual bool
ToJson
(nlohmann::json &jsonObject) const = 0;
52
return convertionBase->
ToJson
(jsonObject);
in ConvertToJson()
70
if (!convertionBase->
ToJson
(jsonObject)) {
in ConvertToJsonString()
H
A
D
notification_normal_content.h
43
bool
ToJson
(nlohmann::json &jsonObject) const override;
H
A
D
notification_button_option.h
57
bool
ToJson
(nlohmann::json &jsonObject) const override;
H
A
D
notification_progress.h
70
bool
ToJson
(nlohmann::json &jsonObject) const override;
H
A
D
notification_time.h
81
bool
ToJson
(nlohmann::json &jsonObject) const override;
H
A
D
notification_do_not_disturb_profile.h
105
std::string
ToJson
();
H
A
D
notification_bundle_option.h
123
bool
ToJson
(nlohmann::json &jsonObject) const override;
/base/notification/distributed_notification_service/frameworks/ans/src/
H
A
D
notification_normal_content.cpp
31
bool NotificationNormalContent::
ToJson
(nlohmann::json &jsonObject) const
in ToJson()
function in OHOS::Notification::NotificationNormalContent
33
return NotificationBasicContent::
ToJson
(jsonObject);
in ToJson()
H
A
D
notification_media_content.cpp
55
bool NotificationMediaContent::
ToJson
(nlohmann::json &jsonObject) const
in ToJson()
function in OHOS::Notification::NotificationMediaContent
57
if (!NotificationBasicContent::
ToJson
(jsonObject)) {
in ToJson()
H
A
D
notification_multiline_content.cpp
77
bool NotificationMultiLineContent::
ToJson
(nlohmann::json &jsonObject) const
in ToJson()
function in OHOS::Notification::NotificationMultiLineContent
79
if (!NotificationBasicContent::
ToJson
(jsonObject)) {
in ToJson()
H
A
D
notification_long_text_content.cpp
80
bool NotificationLongTextContent::
ToJson
(nlohmann::json &jsonObject) const
in ToJson()
function in OHOS::Notification::NotificationLongTextContent
82
if (!NotificationBasicContent::
ToJson
(jsonObject)) {
in ToJson()
H
A
D
notification_picture_content.cpp
61
bool NotificationPictureContent::
ToJson
(nlohmann::json &jsonObject) const
in ToJson()
function in OHOS::Notification::NotificationPictureContent
63
if (!NotificationBasicContent::
ToJson
(jsonObject)) {
in ToJson()
/base/update/updateservice/services/core/ability/callback/src/
H
A
D
base_callback_utils.cpp
79
ENGINE_LOGD("CallbackToHap upgradeCallback eventInfoStr %{public}s", eventInfo.
ToJson
().c_str());
in CallbackToHap()
98
std::string eventInfoStr = info.
ToJson
();
in NotifyToHap()
102
UpdateNotify::GetInstance()->ConnectToAppService(eventInfoStr, subscribeInfo.
ToJson
());
in NotifyToHap()
/base/update/updateservice/foundations/ability/utils/include/
H
A
D
json_builder.h
66
builder_.append("\"").append(key).append("\"").append(":").append(jsonBuilder.
ToJson
());
in Append()
77
jsonArray.Append(valueList[i].
ToJson
());
in Append()
89
std::string
ToJson
() const
in ToJson()
function in OHOS::UpdateEngine::JsonBuilder
/base/security/dlp_permission_service/frameworks/common/include/
H
A
D
i_json_operator.h
30
virtual Json
ToJson
() const = 0;
/base/update/updateservice/services/core/ability/model/include/
H
A
D
device_info.h
32
nlohmann::ordered_json
ToJson
(bool isPrint)
in ToJson()
function
/base/notification/distributed_notification_service/test/fuzztest/notificationflags_fuzzer/
H
A
D
notificationflags_fuzzer.cpp
33
// test
ToJson
function
in DoSomethingInterestingWithMyAPI()
38
notificationFlags.
ToJson
(jsonObject);
in DoSomethingInterestingWithMyAPI()
/base/notification/distributed_notification_service/test/fuzztest/notificationrequestannex_fuzzer/
H
A
D
notificationrequestannex_fuzzer.cpp
32
request.
ToJson
(jsonObject);
in DoSomethingInterestingWithMyAPI()
/base/notification/distributed_notification_service/test/fuzztest/notificationlongtextcontentannex_fuzzer/
H
A
D
notificationlongtextcontentannex_fuzzer.cpp
29
notificationLongTextContent.
ToJson
(jsonObject);
in DoSomethingInterestingWithMyAPI()
/base/notification/distributed_notification_service/test/fuzztest/notificationmultilinecontentannex_fuzzer/
H
A
D
notificationmultilinecontentannex_fuzzer.cpp
28
notificationMultiLineContent.
ToJson
(jsonObject);
in DoSomethingInterestingWithMyAPI()
/base/notification/distributed_notification_service/test/fuzztest/notificationnormalcontent_fuzzer/
H
A
D
notificationnormalcontent_fuzzer.cpp
29
// test
ToJson
function
in DoSomethingInterestingWithMyAPI()
31
notificationNormalContent.
ToJson
(jsonObject);
in DoSomethingInterestingWithMyAPI()
/base/notification/distributed_notification_service/test/fuzztest/notificationpicturecontentannex_fuzzer/
H
A
D
notificationpicturecontentannex_fuzzer.cpp
28
notificationPictureContent.
ToJson
(jsonObject);
in DoSomethingInterestingWithMyAPI()
/base/print/print_fwk/services/print_service/src/
H
A
D
print_security_guard_info.cpp
82
nlohmann::json PrintSecurityGuardInfo::
ToJson
()
in ToJson()
function in OHOS::Print::PrintSecurityGuardInfo
110
return
ToJson
().dump();
in ToJsonStr()
/base/print/print_fwk/services/print_service/include/
H
A
D
print_security_guard_info.h
64
nlohmann::json
ToJson
();
Completed in 9 milliseconds
1
2
3
4
5