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:argsValue
(Results
1 - 19
of
19
) sorted by relevance
/foundation/arkui/ace_engine/frameworks/bridge/common/dom/
H
A
D
dom_camera.cpp
111
std::unique_ptr<JsonValue>
argsValue
= JsonUtil::ParseJsonString(args);
in GetParamFromJson()
local
114
if (!
argsValue
|| !
argsValue
->IsArray() ||
argsValue
->GetArraySize() == 0) {
in GetParamFromJson()
117
std::unique_ptr<JsonValue> firstItem =
argsValue
->GetArrayItem(0);
in GetParamFromJson()
H
A
D
dom_list.cpp
635
std::unique_ptr<JsonValue>
argsValue
= JsonUtil::ParseJsonString(args);
in CallSpecializedMethod()
local
636
if (!
argsValue
|| !
argsValue
->IsArray() ||
argsValue
->GetArraySize() != 1) {
in CallSpecializedMethod()
640
std::unique_ptr<JsonValue> indexValue =
argsValue
->GetArrayItem(0)->GetValue("index");
in CallSpecializedMethod()
647
std::unique_ptr<JsonValue>
argsValue
= JsonUtil::ParseJsonString(args);
in CallSpecializedMethod()
local
648
if (!
argsValue
|| !
argsValue
->IsArray() ||
argsValue
->GetArraySize() != 1) {
in CallSpecializedMethod()
652
std::unique_ptr<JsonValue> scrollArrowParams =
argsValue
in CallSpecializedMethod()
661
std::unique_ptr<JsonValue>
argsValue
= JsonUtil::ParseJsonString(args);
CallSpecializedMethod()
local
770
std::unique_ptr<JsonValue>
argsValue
= JsonUtil::ParseJsonString(args);
ScrollToEdgeMethod()
local
796
std::unique_ptr<JsonValue>
argsValue
= JsonUtil::ParseJsonString(args);
ScrollPageMethod()
local
[all...]
H
A
D
dom_grid_container.cpp
85
std::unique_ptr<JsonValue>
argsValue
= JsonUtil::ParseJsonString(args);
in CallSpecializedMethod()
local
86
if (!
argsValue
|| !
argsValue
->IsArray() ||
argsValue
->GetArraySize() != 1) {
in CallSpecializedMethod()
90
auto callbackId =
argsValue
->GetArrayItem(0)->GetString();
in CallSpecializedMethod()
H
A
D
dom_stepper.cpp
112
std::unique_ptr<JsonValue>
argsValue
= JsonUtil::ParseJsonString(args);
in CallSpecializedMethod()
local
113
if (!
argsValue
|| !
argsValue
->IsArray() ||
argsValue
->GetArraySize() != METHOD_TO_ARGS_SIZE) {
in CallSpecializedMethod()
117
std::unique_ptr<JsonValue> valueParams =
argsValue
->GetArrayItem(0);
in CallSpecializedMethod()
H
A
D
dom_video.cpp
199
std::unique_ptr<JsonValue>
argsValue
= JsonUtil::ParseJsonString(json);
in GetParamFromJson()
local
200
if (!
argsValue
|| !
argsValue
->IsArray() ||
argsValue
->GetArraySize() != METHOD_VIDEO_TO_ARGS_SIZE) {
in GetParamFromJson()
205
std::unique_ptr<JsonValue> Value =
argsValue
->GetArrayItem(0)->GetValue(key);
in GetParamFromJson()
H
A
D
dom_calendar.cpp
178
std::unique_ptr<JsonValue>
argsValue
= JsonUtil::ParseJsonString(args);
in HandleGoTo()
local
179
if (!
argsValue
|| !
argsValue
->IsArray() ||
argsValue
->GetArraySize() != METHOD_GO_TO_ARGS_SIZE) {
in HandleGoTo()
182
auto gotoArg =
argsValue
->GetArrayItem(0);
in HandleGoTo()
H
A
D
dom_chart.cpp
404
std::unique_ptr<JsonValue>
argsValue
= JsonUtil::ParseJsonString(args);
in CallSpecializedMethod()
local
405
if (!
argsValue
|| !
argsValue
->IsArray() ||
argsValue
->GetArraySize() != METHOD_APPEND_ARGS_SIZE) {
in CallSpecializedMethod()
409
std::unique_ptr<JsonValue> serialValue =
argsValue
->GetArrayItem(0)->GetValue("serial");
in CallSpecializedMethod()
415
std::unique_ptr<JsonValue> dataValue =
argsValue
->GetArrayItem(0)->GetValue("data");
in CallSpecializedMethod()
H
A
D
dom_menu.cpp
202
std::unique_ptr<JsonValue>
argsValue
= JsonUtil::ParseJsonString(args);
in CallSpecializedMethod()
local
203
double x = GetJsonDouble(
argsValue
, "x", 0);
in CallSpecializedMethod()
204
double y = GetJsonDouble(
argsValue
, "y", 0);
in CallSpecializedMethod()
H
A
D
dom_input.cpp
149
std::unique_ptr<JsonValue>
argsValue
= JsonUtil::ParseJsonString(args);
in CallSpecializedMethod()
local
150
if (!
argsValue
|| !
argsValue
->IsArray() ||
argsValue
->GetArraySize() != METHOD_SHOW_ERROR_ARGS_SIZE) {
in CallSpecializedMethod()
155
std::unique_ptr<JsonValue> error =
argsValue
->GetArrayItem(0)->GetValue("error");
in CallSpecializedMethod()
164
std::unique_ptr<JsonValue>
argsValue
= JsonUtil::ParseJsonString(args);
in CallSpecializedMethod()
local
165
std::unique_ptr<JsonValue> text =
argsValue
->GetArrayItem(0);
in CallSpecializedMethod()
H
A
D
dom_node.cpp
214
std::unique_ptr<JsonValue>
argsValue
= JsonUtil::ParseJsonString(args);
in CallMethod()
local
215
if (
argsValue
&&
argsValue
->IsArray() &&
argsValue
->GetArraySize() == COMMON_METHOD_FOCUS_ARGS_SIZE) {
in CallMethod()
216
std::unique_ptr<JsonValue> focusValue =
argsValue
->GetArrayItem(0)->GetValue(COMMON_METHOD_FOCUS);
in CallMethod()
223
std::unique_ptr<JsonValue>
argsValue
= JsonUtil::ParseJsonString(args);
in CallMethod()
local
224
if (!
argsValue
|| !
argsValue
->IsArray() ||
argsValue
->GetArraySize() != 1) {
in CallMethod()
228
std::unique_ptr<JsonValue> scrollByPara =
argsValue
in CallMethod()
[all...]
/foundation/arkui/ace_engine/frameworks/bridge/js_frontend/engine/jsi/
H
A
D
jsi_xcomponent_bridge.cpp
212
std::unique_ptr<JsonValue>
argsValue
= JsonUtil::ParseJsonString(arguments);
in JsSetXComponentSurfaceSize()
213
if (!
argsValue
|| !
argsValue
->IsArray() ||
argsValue
->GetArraySize() < 1) {
in JsSetXComponentSurfaceSize()
217
std::unique_ptr<JsonValue> surfaceSizePara =
argsValue
->GetArrayItem(0);
in JsSetXComponentSurfaceSize()
H
A
D
jsi_component_api_bridge.cpp
150
std::unique_ptr<JsonValue>
argsValue
= JsonUtil::ParseJsonString(arguments);
in JsScrollTo()
151
if (!
argsValue
|| !
argsValue
->IsArray() ||
argsValue
->GetArraySize() < 1) {
in JsScrollTo()
155
std::unique_ptr<JsonValue> scrollToPara =
argsValue
->GetArrayItem(0);
in JsScrollTo()
H
A
D
jsi_canvas_bridge.cpp
257
std::unique_ptr<JsonValue>
argsValue
= JsonUtil::ParseJsonString(args);
in HandleJsContext()
local
258
if (
argsValue
&&
argsValue
->IsArray() &&
argsValue
->GetArraySize() > 0) {
in HandleJsContext()
259
auto typeArg =
argsValue
->GetArrayItem(0);
in HandleJsContext()
H
A
D
jsi_engine.cpp
2177
std::unique_ptr<JsonValue>
argsValue
= JsonUtil::ParseJsonString(arguments);
in JsCallComponent()
local
2178
if (
argsValue
&&
argsValue
->IsArray()) {
in JsCallComponent()
2179
std::unique_ptr<JsonValue> cNodeId =
argsValue
->GetArrayItem(0)->GetValue("__nodeId");
in JsCallComponent()
/foundation/arkui/ace_engine/frameworks/core/components/declaration/swiper/
H
A
D
swiper_declaration.cpp
242
std::unique_ptr<JsonValue>
argsValue
= JsonUtil::ParseJsonString(args);
in CallSpecializedMethod()
local
243
if (!
argsValue
|| !
argsValue
->IsArray() ||
argsValue
->GetArraySize() != METHOD_SWIPE_TO_ARGS_SIZE) {
in CallSpecializedMethod()
248
std::unique_ptr<JsonValue> indexValue =
argsValue
->GetArrayItem(0)->GetValue("index");
in CallSpecializedMethod()
/foundation/arkui/ace_engine/frameworks/bridge/js_frontend/
H
A
D
js_ace_page.cpp
137
std::unique_ptr<JsonValue>
argsValue
= JsonUtil::ParseJsonString(pageParams_);
in GetCardId()
local
138
if (
argsValue
&&
argsValue
->IsObject()) {
in GetCardId()
140
if (!
argsValue
->GetString(DOM_TRANSITION_CARD_COMPOSEID).empty()) {
in GetCardId()
141
return
argsValue
->GetString(DOM_TRANSITION_CARD_COMPOSEID);
in GetCardId()
145
const auto& paramsData =
argsValue
->GetObject(DOM_TRANSITION_CARD_PARAMS);
in GetCardId()
/foundation/arkui/ace_engine/frameworks/core/components/declaration/textfield/
H
A
D
textfield_declaration.cpp
324
std::unique_ptr<JsonValue>
argsValue
= JsonUtil::ParseJsonString(args);
in CallSpecializedMethod()
local
325
if (!
argsValue
|| !
argsValue
->IsArray() ||
argsValue
->GetArraySize() != METHOD_SHOW_ERROR_ARGS_SIZE) {
in CallSpecializedMethod()
330
std::unique_ptr<JsonValue> error =
argsValue
->GetArrayItem(0)->GetValue("error");
in CallSpecializedMethod()
/foundation/arkui/ace_engine/frameworks/core/components/declaration/button/
H
A
D
button_declaration.cpp
252
std::unique_ptr<JsonValue>
argsValue
= JsonUtil::ParseJsonString(args);
in CallSpecializedMethod()
local
253
if ((!
argsValue
) || (!
argsValue
->IsArray()) || (
argsValue
->GetArraySize() != METHOD_SET_PROGRESS_ARGS_SIZE)) {
in CallSpecializedMethod()
256
std::unique_ptr<JsonValue> progressValue =
argsValue
->GetArrayItem(0)->GetValue("progress");
in CallSpecializedMethod()
/foundation/arkui/ace_engine/frameworks/core/components/declaration/common/
H
A
D
declaration.cpp
1985
std::unique_ptr<JsonValue>
argsValue
= JsonUtil::ParseJsonString(args);
1986
if (
argsValue
&&
argsValue
->IsArray() &&
argsValue
->GetArraySize() == COMMON_METHOD_FOCUS_ARGS_SIZE) {
1987
std::unique_ptr<JsonValue> focusValue =
argsValue
->GetArrayItem(0)->GetValue(COMMON_METHOD_FOCUS);
1994
std::unique_ptr<JsonValue>
argsValue
= JsonUtil::ParseJsonString(args);
1995
if (!
argsValue
|| !
argsValue
->IsArray() ||
argsValue
->GetArraySize() != 1) {
1999
std::unique_ptr<JsonValue> scrollByPara =
argsValue
[all...]
Completed in 26 milliseconds