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:jsonUriObject
(Results
1 - 3
of
3
) sorted by relevance
/foundation/ability/ability_runtime/test/fuzztest/deeplinkreserveconfig_fuzzer/
H
A
D
deeplinkreserveconfig_fuzzer.cpp
90
json
jsonUriObject
;
in DoSomethingInterestingWithMyAPI()
local
91
jsonUriObject
["SCHEME_NAME"] = SCHEME_NAME;
in DoSomethingInterestingWithMyAPI()
92
deepLinkReserveConfig.LoadReservedUrilItem(
jsonUriObject
, uriList);
in DoSomethingInterestingWithMyAPI()
93
jsonUriObject
["HOST_NAME"] = HOST_NAME;
in DoSomethingInterestingWithMyAPI()
94
deepLinkReserveConfig.LoadReservedUrilItem(
jsonUriObject
, uriList);
in DoSomethingInterestingWithMyAPI()
95
jsonUriObject
["PORT_NAME"] = PORT_NAME;
in DoSomethingInterestingWithMyAPI()
96
deepLinkReserveConfig.LoadReservedUrilItem(
jsonUriObject
, uriList);
in DoSomethingInterestingWithMyAPI()
97
jsonUriObject
["PATH_NAME"] = PATH_NAME;
in DoSomethingInterestingWithMyAPI()
98
deepLinkReserveConfig.LoadReservedUrilItem(
jsonUriObject
, uriList);
in DoSomethingInterestingWithMyAPI()
99
jsonUriObject
["PATH_START_WITH_NAM
in DoSomethingInterestingWithMyAPI()
[all...]
/foundation/ability/ability_runtime/services/abilitymgr/src/deeplink_reserve/
H
A
D
deeplink_reserve_config.cpp
177
void DeepLinkReserveConfig::LoadReservedUrilItem(const nlohmann::json &
jsonUriObject
, std::vector<ReserveUri> &uriList)
in LoadReservedUrilItem()
argument
180
if (
jsonUriObject
.contains(SCHEME_NAME) &&
jsonUriObject
.at(SCHEME_NAME).is_string()) {
in LoadReservedUrilItem()
181
std::string schemeName =
jsonUriObject
.at(SCHEME_NAME).get<std::string>();
in LoadReservedUrilItem()
185
if (
jsonUriObject
.contains(HOST_NAME) &&
jsonUriObject
.at(HOST_NAME).is_string()) {
in LoadReservedUrilItem()
186
std::string hostName =
jsonUriObject
.at(HOST_NAME).get<std::string>();
in LoadReservedUrilItem()
190
if (
jsonUriObject
.contains(PORT_NAME) &&
jsonUriObject
.at(PORT_NAME).is_string()) {
in LoadReservedUrilItem()
191
std::string portName =
jsonUriObject
in LoadReservedUrilItem()
244
const nlohmann::json&
jsonUriObject
= uriItem.value();
LoadReservedUriList()
local
[all...]
/foundation/ability/ability_runtime/services/abilitymgr/include/deeplink_reserve/
H
A
D
deeplink_reserve_config.h
55
void LoadReservedUrilItem(const nlohmann::json &
jsonUriObject
, std::vector<ReserveUri> &uriList);
Completed in 2 milliseconds