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:tweenComponent
(Results
1 - 7
of
7
) sorted by relevance
/foundation/arkui/ace_engine/frameworks/bridge/js_frontend/engine/jsi/
H
A
D
jsi_animation_bridge.cpp
269
auto
tweenComponent
= domNode->GetTweenComponent();
in JsAnimationStartTimeGet()
local
270
if (
tweenComponent
) {
in JsAnimationStartTimeGet()
271
auto option =
tweenComponent
->GetCustomTweenOption();
in JsAnimationStartTimeGet()
335
auto
tweenComponent
= domNode->GetTweenComponent();
in JsAnimationPendingGet()
local
336
if (
tweenComponent
) {
in JsAnimationPendingGet()
337
auto controller =
tweenComponent
->GetAnimator();
in JsAnimationPendingGet()
452
auto
tweenComponent
= domNode->GetTweenComponent();
in JsCreateAnimation()
local
453
if (!
tweenComponent
) {
in JsCreateAnimation()
454
tweenComponent
= AceType::MakeRefPtr<TweenComponent>(
in JsCreateAnimation()
456
domNode->SetTweenComponent(
tweenComponent
);
in JsCreateAnimation()
682
auto
tweenComponent
= domNode->GetTweenComponent();
AnimationBridgeTaskFunc()
local
714
auto
tweenComponent
= domNode->GetTweenComponent();
AnimationBridgeTaskFunc()
local
[all...]
/foundation/arkui/ace_engine/frameworks/core/components/tween/
H
A
D
tween_element.cpp
313
auto
tweenComponent
= AceType::DynamicCast<TweenComponent>(component_);
in Update()
local
314
if (!
tweenComponent
) {
in Update()
318
shadow_ =
tweenComponent
->GetShadow();
in Update()
319
positionParam_ =
tweenComponent
->GetPositionParam();
in Update()
321
if (
tweenComponent
->IsAnimationNameUpdated()) {
in Update()
323
tweenComponent
->DisableAnimationNameUpdated();
in Update()
325
if (
tweenComponent
->IsOptionCssChanged()) {
in Update()
327
option_ =
tweenComponent
->GetTweenOption();
in Update()
328
tweenComponent
->SetOptionCssChanged(false);
in Update()
330
if (
tweenComponent
in Update()
555
auto
tweenComponent
= AceType::DynamicCast<TweenComponent>(component_);
PerformBuild()
local
[all...]
/foundation/arkui/ace_engine/frameworks/core/components/transition/
H
A
D
transition_element.cpp
235
RefPtr<TweenComponent>
tweenComponent
=
in BuildChild()
local
237
tweenComponent
->SetChild(ComposedElement::BuildChild());
in BuildChild()
238
tweenComponent
->SetIsFirstFrameShow(transition->IsFirstFrameShow());
in BuildChild()
239
return
tweenComponent
;
in BuildChild()
/foundation/arkui/ace_engine/frameworks/bridge/js_frontend/engine/common/
H
A
D
base_animation_bridge.cpp
148
RefPtr<TweenComponent>&
tweenComponent
, TweenOption& tweenOption)
in SetTweenComponentParams()
150
tweenComponent
->SetCustomTweenOption(tweenOption);
in SetTweenComponentParams()
151
tweenComponent
->SetCustomAnimationOperation(AnimationOperation::NONE);
in SetTweenComponentParams()
146
SetTweenComponentParams(const RefPtr<Curve>& curve, const std::vector<std::unordered_map<std::string, std::string>>& animationFrames, RefPtr<TweenComponent>&
tweenComponent
, TweenOption& tweenOption)
SetTweenComponentParams()
argument
H
A
D
base_animation_bridge.h
50
RefPtr<TweenComponent>&
tweenComponent
, TweenOption& tweenOption);
/foundation/arkui/ace_engine/frameworks/bridge/common/dom/
H
A
D
dom_node.cpp
2032
auto
tweenComponent
= AceType::DynamicCast<TweenComponent>(rootComponent_->GetChild());
in UpdatePositionProps()
local
2033
if (
tweenComponent
) {
in UpdatePositionProps()
2034
UpdateTweenPosition(
tweenComponent
);
in UpdatePositionProps()
2035
UpdatePositionAnimations(
tweenComponent
);
in UpdatePositionProps()
2072
void DOMNode::UpdateTweenPosition(const RefPtr<TweenComponent>
tweenComponent
)
in UpdateTweenPosition()
argument
2074
if (!declaration_ || !
tweenComponent
) {
in UpdateTweenPosition()
2077
tweenComponent
->SetHasLeft(declaration_->HasLeft());
in UpdateTweenPosition()
2078
tweenComponent
->SetHasTop(declaration_->HasTop());
in UpdateTweenPosition()
2079
tweenComponent
->SetHasBottom(declaration_->HasBottom());
in UpdateTweenPosition()
2080
tweenComponent
in UpdateTweenPosition()
[all...]
H
A
D
dom_node.h
93
void SetTweenComponent(const RefPtr<TweenComponent>&
tweenComponent
)
in SetTweenComponent()
argument
95
tweenComponent_ =
tweenComponent
;
in SetTweenComponent()
925
void UpdateTweenPosition(const RefPtr<TweenComponent>
tweenComponent
);
Completed in 9 milliseconds