Home
last modified time | relevance | path

Searched refs:objectList (Results 1 – 8 of 8) sorted by relevance

/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/recording/
H A Dcmd_list.cpp198 objectList.emplace_back(object); in GetAllExtendObject()
200 return objectList.size(); in GetAllExtendObject()
206 for (const auto &object : objectList) { in SetupExtendObject()
266 objectList.emplace_back(object); in GetAllObject()
268 return objectList.size(); in GetAllObject()
274 for (const auto &object : objectList) { in SetupObject()
300 objectList.emplace_back(object); in GetAllBaseObj()
302 return objectList.size(); in GetAllBaseObj()
308 for (const auto &object : objectList) { in SetupBaseObj()
348 objectList.emplace_back(object); in GetAllSurfaceBufferEntry()
[all …]
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/include/recording/
H A Dcmd_list.h166 uint32_t GetAllExtendObject(std::vector<std::shared_ptr<ExtendObject>>& objectList);
171 uint32_t SetupExtendObject(const std::vector<std::shared_ptr<ExtendObject>>& objectList);
206 uint32_t GetAllObject(std::vector<std::shared_ptr<ExtendImageObject>>& objectList);
211 uint32_t SetupObject(const std::vector<std::shared_ptr<ExtendImageObject>>& objectList);
226 uint32_t GetAllBaseObj(std::vector<std::shared_ptr<ExtendImageBaseObj>>& objectList);
231 uint32_t SetupBaseObj(const std::vector<std::shared_ptr<ExtendImageBaseObj>>& objectList);
272 uint32_t GetAllSurfaceBufferEntry(std::vector<std::shared_ptr<SurfaceBufferEntry>>& objectList);
277 …nt32_t SetupSurfaceBufferEntry(const std::vector<std::shared_ptr<SurfaceBufferEntry>>& objectList);
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/2d_graphics/unittest/recording/
H A Dcmd_list_helper_test.cpp481 std::vector<std::shared_ptr<SurfaceBufferEntry>> objectList; variable
482 uint32_t id = cmdList->GetAllSurfaceBufferEntry(objectList);
485 id = cmdList1->SetupSurfaceBufferEntry(objectList);
622 std::vector<std::shared_ptr<ExtendImageObject>> objectList; variable
623 uint32_t id = cmdList->GetAllObject(objectList);
626 id = cmdList1->SetupObject(objectList);
639 std::vector<std::shared_ptr<ExtendImageBaseObj>> objectList; variable
640 uint32_t id = cmdList->GetAllBaseObj(objectList);
643 id = cmdList1->SetupBaseObj(objectList);
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/storage/
H A Ddistributeddb_query_object_helper_test.cpp286 std::vector<QuerySyncObject> objectList = QuerySyncObject::GetQuerySyncObject(query); variable
287 ASSERT_EQ(objectList.size(), 2u); // 2 tables
292 for (auto &object: objectList) {
/ohos5.0/foundation/ability/ability_runtime/frameworks/js/napi/inner/napi_common/
H A Dnapi_common_data.h120 std::vector<napi_value> objectList; member
H A Dnapi_common_util.cpp616 value.objectList.clear(); in UnwrapArrayComplexFromJS()
644 value.objectList.push_back(jsValue); in UnwrapArrayComplexFromJS()
H A Dnapi_common_want.cpp782 if (natArrayValue.objectList.size() > 0) { in InnerUnwrapWantParamsArray()
783 return InnerSetWantParamsArrayObject(env, key, natArrayValue.objectList, wantParams); in InnerUnwrapWantParamsArray()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/cloud/
H A Dcloud_storage_utils.cpp1528 auto objectList = QuerySyncObject::GetQuerySyncObject(query); in GetSyncQueryByPk() local
1529 if (objectList.size() != 1u) { // only support one QueryExpression in GetSyncQueryByPk()
1532 querySyncObject = objectList[0]; in GetSyncQueryByPk()