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:transformJson
(Results
1 - 5
of
5
) sorted by relevance
/foundation/arkui/ace_engine/frameworks/core/animation/
H
A
D
animation_util.cpp
54
std::string GetTransformTypeValue(const std::unique_ptr<JsonValue>&
transformJson
)
in GetTransformTypeValue()
argument
56
if (
transformJson
->IsNull()) {
in GetTransformTypeValue()
57
LOGE("
transformJson
is null");
in GetTransformTypeValue()
60
std::string jsonValue =
transformJson
->GetString();
in GetTransformTypeValue()
62
double jsonDouble =
transformJson
->GetDouble();
in GetTransformTypeValue()
68
std::string GetTransformType(const std::unique_ptr<JsonValue>&
transformJson
)
in GetTransformType()
argument
70
if (
transformJson
->IsNull()) {
in GetTransformType()
71
LOGE("
transformJson
is null");
in GetTransformType()
74
return
transformJson
->GetKey();
in GetTransformType()
463
std::unique_ptr<JsonValue>
transformJson
in KeyframesAddKeyFrame()
[all...]
/foundation/arkui/ace_engine/frameworks/bridge/common/dom/
H
A
D
dom_node.cpp
824
std::string DOMNode::GetTransformType(const std::unique_ptr<JsonValue>&
transformJson
)
in GetTransformType()
argument
826
if (
transformJson
->IsNull()) {
in GetTransformType()
829
return
transformJson
->GetKey();
in GetTransformType()
832
std::string DOMNode::GetTransformTypeValue(const std::unique_ptr<JsonValue>&
transformJson
)
in GetTransformTypeValue()
argument
834
if (
transformJson
->IsNull()) {
in GetTransformTypeValue()
837
std::string jsonValue =
transformJson
->GetString();
in GetTransformTypeValue()
839
double jsonDouble =
transformJson
->GetDouble();
in GetTransformTypeValue()
852
std::unique_ptr<JsonValue>
transformJson
= JsonUtil::ParseJsonString(jsonValue);
in SetTransform()
local
853
for (int32_t index = 0; index <
transformJson
->GetArraySize(); ++index) {
in SetTransform()
854
std::string typeKey = node.GetTransformType(
transformJson
in SetTransform()
[all...]
H
A
D
dom_node.h
904
std::string GetTransformType(const std::unique_ptr<JsonValue>&
transformJson
);
905
std::string GetTransformTypeValue(const std::unique_ptr<JsonValue>&
transformJson
);
/foundation/arkui/ace_engine/frameworks/core/components/declaration/common/
H
A
D
declaration.h
486
std::string GetTransformType(const std::unique_ptr<JsonValue>&
transformJson
);
487
std::string GetTransformTypeValue(const std::unique_ptr<JsonValue>&
transformJson
);
H
A
D
declaration.cpp
3168
std::string Declaration::GetTransformType(const std::unique_ptr<JsonValue>&
transformJson
)
3170
if (
transformJson
->IsNull()) {
3171
LOGE("
transformJson
is null");
3174
return
transformJson
->GetKey();
3177
std::string Declaration::GetTransformTypeValue(const std::unique_ptr<JsonValue>&
transformJson
)
3179
if (
transformJson
->IsNull()) {
3180
LOGE("
transformJson
is null");
3183
std::string jsonValue =
transformJson
->GetString();
3185
double jsonDouble =
transformJson
->GetDouble();
Completed in 10 milliseconds