Home
last modified time | relevance | path

Searched refs:entitiesJson (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/graphic/graphic_3d/lume/scenewidgetplugin/plugin/src/
H A Decs_serializer.cpp601 auto& entitiesJson = (jsonOut["entities"] = json::standalone_value::array()); in WriteEntityCollection() local
602 entitiesJson.array_.reserve(entityCount); in WriteEntityCollection()
613 entitiesJson.array_.emplace_back(move(entityJson)); in WriteEntityCollection()
913 const auto* entitiesJson = jsonIn.find("entities"); in ReadEntityCollection() local
915 if (entitiesJson && entitiesJson->is_array()) { in ReadEntityCollection()
919 for (const auto& entityJson : entitiesJson->array_) { in ReadEntityCollection()
/ohos5.0/foundation/ability/ability_base/interfaces/kits/native/want/src/
H A Dwant.cpp1850 nlohmann::json entitiesJson; in ToJson() local
1853 entitiesJson.emplace_back(entity); in ToJson()
1865 {"entities", entitiesJson}, in ToJson()