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:propertyTypeUid
(Results
1 - 4
of
4
) sorted by relevance
/foundation/graphic/graphic_3d/lume/metaobject/include/meta/interface/
H
A
D
intf_object_registry.h
313
* @param
propertyTypeUid
Property type.
316
virtual void RegisterInterpolator(TypeId
propertyTypeUid
, BASE_NS::Uid interpolatorClassUid) = 0;
319
* @param
propertyTypeUid
The property type to unregister.
321
virtual void UnregisterInterpolator(TypeId
propertyTypeUid
) = 0;
326
* @param
propertyTypeUid
Property type to check.
328
virtual bool HasInterpolator(TypeId
propertyTypeUid
) const = 0;
331
* @param
propertyTypeUid
The property type.
337
virtual BASE_NS::shared_ptr<IInterpolator> CreateInterpolator(TypeId
propertyTypeUid
) = 0;
351
* @brief See HasInterpolator(BASE_NS::Uid
propertyTypeUid
)
/foundation/graphic/graphic_3d/lume/metaobject/src/
H
A
D
object_registry.h
96
void RegisterInterpolator(TypeId
propertyTypeUid
, BASE_NS::Uid interpolatorClassUid) override;
97
void UnregisterInterpolator(TypeId
propertyTypeUid
) override;
98
bool HasInterpolator(TypeId
propertyTypeUid
) const override;
99
IInterpolator::Ptr CreateInterpolator(TypeId
propertyTypeUid
) override;
H
A
D
object_registry.cpp
591
void ObjectRegistry::RegisterInterpolator(TypeId
propertyTypeUid
, BASE_NS::Uid interpolatorClassUid)
in RegisterInterpolator()
argument
594
interpolatorConstructors_[
propertyTypeUid
] = interpolatorClassUid;
in RegisterInterpolator()
597
void ObjectRegistry::UnregisterInterpolator(TypeId
propertyTypeUid
)
in UnregisterInterpolator()
argument
600
interpolatorConstructors_.erase(
propertyTypeUid
);
in UnregisterInterpolator()
603
bool ObjectRegistry::HasInterpolator(TypeId
propertyTypeUid
) const
in HasInterpolator()
606
return interpolatorConstructors_.contains(
propertyTypeUid
);
in HasInterpolator()
609
IInterpolator::Ptr ObjectRegistry::CreateInterpolator(TypeId
propertyTypeUid
)
in CreateInterpolator()
argument
614
if (auto it = interpolatorConstructors_.find(
propertyTypeUid
); it != interpolatorConstructors_.end()) {
in CreateInterpolator()
624
propertyTypeUid
.ToString().c_str());
in CreateInterpolator()
/foundation/graphic/graphic_3d/lume/metaobject/src/animation/
H
A
D
interpolator.cpp
169
TypeId
propertyTypeUid
;
member
204
registry.RegisterInterpolator(info.
propertyTypeUid
, info.interpolatorClassUid.ToUid());
in RegisterDefaultInterpolators()
214
registry.UnregisterInterpolator(info.
propertyTypeUid
);
in UnRegisterDefaultInterpolators()
Completed in 4 milliseconds