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:propertiesJson
(Results
1 - 3
of
3
) sorted by relevance
/foundation/graphic/graphic_3d/lume/Lume_3D/src/ecs/components/
H
A
D
material_component_manager.cpp
170
if (const CORE_NS::json::value*
propertiesJson
= material.find(PROPERTIES);
in AppendProperties()
171
propertiesJson
&&
propertiesJson
->is_object()) {
in AppendProperties()
172
for (const auto& propertyObject :
propertiesJson
->object_) {
in AppendProperties()
1095
const CORE_NS::json::value*
propertiesJson
= nullptr;
in operator =()
local
1109
propertiesJson
= propJson;
in operator =()
1116
if (metaData_ &&
propertiesJson
) {
in operator =()
1119
UpdateCustomPropertyMetadata(*
propertiesJson
, *newPod);
in operator =()
1155
const CORE_NS::json::value*
propertiesJson
= nullptr;
in UpdateMetadata()
local
1174
propertiesJson
in UpdateMetadata()
[all...]
/foundation/graphic/graphic_3d/lume/LumeEcsSerializer/EcsSerializer/src/ecs_serializer/
H
A
D
ecs_serializer.cpp
607
json::standalone_value
propertiesJson
= json::standalone_value::object();
in WriteComponent()
local
637
propertiesJson
[propertyPath] = move(propertyJson);
in WriteComponent()
646
if (!
propertiesJson
.empty()) {
in WriteComponent()
647
jsonOut["properties"] = move(
propertiesJson
);
in WriteComponent()
916
const auto*
propertiesJson
= jsonIn.find("properties");
in ReadComponent()
local
917
if (!
propertiesJson
||
propertiesJson
->type != json::type::object) {
in ReadComponent()
927
for (auto& propertyJson :
propertiesJson
->object_) {
in ReadComponent()
/foundation/graphic/graphic_3d/lume/scenewidgetplugin/plugin/src/
H
A
D
ecs_serializer.cpp
669
json::standalone_value
propertiesJson
= json::standalone_value::object();
in WriteComponent()
local
699
propertiesJson
[propertyPath] = move(propertyJson);
in WriteComponent()
708
if (!
propertiesJson
.empty()) {
in WriteComponent()
709
jsonOut["properties"] = move(
propertiesJson
);
in WriteComponent()
1014
const auto*
propertiesJson
= jsonIn.find("properties");
in ReadComponent()
local
1015
if (!
propertiesJson
||
propertiesJson
->type != json::type::object) {
in ReadComponent()
1025
for (auto& propertyJson :
propertiesJson
->object_) {
in ReadComponent()
Completed in 7 milliseconds