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:TypeIdRole
(Results
1 - 13
of
13
) sorted by relevance
/foundation/graphic/graphic_3d/lume/metaobject/include/meta/interface/
H
A
D
intf_any.h
54
enum class
TypeIdRole
{ CURRENT, ITEM, ARRAY };
class in AnyReturn
58
/** Should value be cloned. Ignored if role !=
TypeIdRole
::CURRENT */
61
TypeIdRole
role {
TypeIdRole
::CURRENT };
73
virtual TypeId GetTypeId(
TypeIdRole
role) const = 0;
78
return GetTypeId(
TypeIdRole
::CURRENT);
in GetTypeId()
82
return GetTypeId(
TypeIdRole
::CURRENT) == GetTypeId(
TypeIdRole
::ARRAY);
in IsArray()
/foundation/graphic/graphic_3d/lume/metaobject/src/
H
A
D
any.h
47
if (options.role ==
TypeIdRole
::ARRAY) {
53
TypeId GetTypeId(
TypeIdRole
) const override
H
A
D
number.cpp
149
if (options.role ==
TypeIdRole
::ARRAY) {
in Clone()
155
TypeId Number::GetTypeId(
TypeIdRole
role) const
in GetTypeId()
157
if (role ==
TypeIdRole
::ARRAY) {
in GetTypeId()
H
A
D
number.h
39
TypeId GetTypeId(
TypeIdRole
role) const override;
/foundation/graphic/graphic_3d/lume/metaobject/include/meta/interface/detail/
H
A
D
any.h
107
TypeId GetTypeId(
TypeIdRole
role) const override
109
if (role ==
TypeIdRole
::ARRAY) {
112
if (role ==
TypeIdRole
::ITEM) {
277
TypeId GetTypeId(
TypeIdRole
role) const override
279
if (role ==
TypeIdRole
::ARRAY) {
282
if (role ==
TypeIdRole
::ITEM) {
440
if (options.role ==
TypeIdRole
::ARRAY) {
449
if (options.role ==
TypeIdRole
::ITEM) {
/foundation/graphic/graphic_3d/lume/metaobject/test/src/
H
A
D
testing_objects.cpp
411
if (options.role ==
TypeIdRole
::CURRENT || options.role ==
TypeIdRole
::ITEM) {
420
TypeId GetTypeId(
TypeIdRole
role) const override
422
if (role ==
TypeIdRole
::CURRENT || role ==
TypeIdRole
::ITEM) {
H
A
D
test_utils.h
125
auto anya = a->Clone(AnyCloneOptions { CloneValueType::DEFAULT_VALUE,
TypeIdRole
::ITEM });
in IsEqual()
126
auto anyb = b->Clone(AnyCloneOptions { CloneValueType::DEFAULT_VALUE,
TypeIdRole
::ITEM });
in IsEqual()
/foundation/graphic/graphic_3d/lume/metaobject/src/animation/
H
A
D
track_animation_state.cpp
107
if (trackStart_ && trackStart_->GetTypeId() != keyframeArray_->GetTypeId(
TypeIdRole
::ITEM)) {
in ValidateValues()
112
if (trackStart_ = keyframeArray_->Clone({ CloneValueType::DEFAULT_VALUE,
TypeIdRole
::ITEM }); trackStart_) {
in ValidateValues()
H
A
D
track_animation_state.h
63
return keyframeArray_ ? keyframeArray_->GetTypeId(
TypeIdRole
::ITEM) : TypeId {};
H
A
D
track_animation.cpp
179
array = value.Clone(AnyCloneOptions { CloneValueType::DEFAULT_VALUE,
TypeIdRole
::ARRAY });
in OnPropertyChanged()
/foundation/graphic/graphic_3d/lume/metaobject/include/meta/api/property/
H
A
D
array_element_bind.h
31
value_ = any->Clone({ CloneValueType::DEFAULT_VALUE,
TypeIdRole
::ITEM });
in ArrayElementBind()
/foundation/graphic/graphic_3d/lume/metaobject/src/serialization/
H
A
D
importer.cpp
284
if (auto any = array.Clone(AnyCloneOptions { CloneValueType::DEFAULT_VALUE,
TypeIdRole
::ITEM })) {
in ImportArray()
H
A
D
exporter.cpp
206
auto any = array.Clone(AnyCloneOptions { CloneValueType::DEFAULT_VALUE,
TypeIdRole
::ITEM });
in ExportArray()
Completed in 7 milliseconds