Home
last modified time | relevance | path

Searched refs:operations (Results 1 - 25 of 81) sorted by relevance

1234

/foundation/arkui/ace_engine/test/unittest/base/
H A Dtransform_util_test.cpp211 std::vector<TransformOperation> operations; in HWTEST_F() local
212 operations.push_back(TransformOperation::Create(TransformOperationType::TRANSLATE)); in HWTEST_F()
213 operations.push_back(TransformOperation::Create(TransformOperationType::SCALE)); in HWTEST_F()
214 operations.push_back(TransformOperation::Create(TransformOperationType::SKEW)); in HWTEST_F()
215 operations.push_back(TransformOperation::Create(TransformOperationType::ROTATE)); in HWTEST_F()
216 operations.push_back(TransformOperation::Create(TransformOperationType::PERSPECTIVE)); in HWTEST_F()
217 operations.push_back(TransformOperation::Create(TransformOperationType::MATRIX)); in HWTEST_F()
218 operations.push_back(TransformOperation::Create(TransformOperationType::UNDEFINED)); in HWTEST_F()
220 TransformOperations::ParseOperationsToMatrix(operations); in HWTEST_F()
221 EXPECT_EQ(operations[ in HWTEST_F()
[all...]
/foundation/graphic/graphic_3d/lume/LumeEngine/ecshelper/ComponentTools/
H A Dcomponent_query.cpp49 const IComponentManager& baseComponentSet, const array_view<const Operation> operations, bool enableEntityLookup) in SetupQuery()
51 const size_t componentCount = operations.size() + 1; in SetupQuery()
57 // Unregistering any old listeners because the operations might not use the same managers. in SetupQuery()
67 for (auto& operation : operations) { in SetupQuery()
150 const IComponentManager& baseComponentSet, const array_view<const Operation> operations, bool enableEntityLookup) in Execute()
152 SetupQuery(baseComponentSet, operations, enableEntityLookup); in Execute()
48 SetupQuery( const IComponentManager& baseComponentSet, const array_view<const Operation> operations, bool enableEntityLookup) SetupQuery() argument
149 Execute( const IComponentManager& baseComponentSet, const array_view<const Operation> operations, bool enableEntityLookup) Execute() argument
H A Dcomponent_query.h60 * @param operations Operations that are performed to base set when other component managers are merged to result.
64 void SetupQuery(const IComponentManager& baseComponentSet, BASE_NS::array_view<const Operation> operations,
73 BASE_NS::array_view<const Operation> operations, bool enableEntityLookup = false);
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/data_share/
H A Ddata_share_types_util.cpp25 std::vector<Operation> operations {}; in Unmarshalling()
30 if (!ITypesUtil::Unmarshal(parcel, operations, whereClause, whereArgs, order, mode)) { in Unmarshalling()
34 DataShare::DataSharePredicates tmpPredicates(operations); in Unmarshalling()
/foundation/ability/ability_runtime/frameworks/native/ability/native/
H A Ddata_ability_impl.cpp376 const std::vector<std::shared_ptr<DataAbilityOperation>> &operations) in ExecuteBatch()
386 if (!CheckExecuteBatchPermission(operations)) { in ExecuteBatch()
391 results = ability_->ExecuteBatch(operations); in ExecuteBatch()
397 const std::vector<std::shared_ptr<DataAbilityOperation>> &operations) const in CheckExecuteBatchPermission()
402 size_t size = operations.size(); in CheckExecuteBatchPermission()
404 std::shared_ptr<DataAbilityOperation> operation = operations[i]; in CheckExecuteBatchPermission()
375 ExecuteBatch( const std::vector<std::shared_ptr<DataAbilityOperation>> &operations) ExecuteBatch() argument
/foundation/distributeddatamgr/data_share/frameworks/native/common/src/
H A Ddatashare_itypes_utils.cpp24 const auto &operations = predicates.GetOperationList(); in Marshalling() local
26 return ITypesUtil::Marshal(parcel, operations, predicates.GetWhereClause(), predicates.GetWhereArgs(), in Marshalling()
33 std::vector<Operation> operations{}; in Unmarshalling()
38 if (!ITypesUtil::Unmarshal(parcel, operations, whereClause, whereArgs, order, mode)) { in Unmarshalling()
41 DataShare::DataSharePredicates tmpPredicates(operations); in Unmarshalling()
/foundation/ability/ability_runtime/interfaces/kits/native/ability/native/
H A Ddata_ability_impl.h205 * @brief Performs batch operations on the database.
207 * @param operations Indicates a list of database operations on the database.
211 const std::vector<std::shared_ptr<DataAbilityOperation>> &operations);
215 const std::vector<std::shared_ptr<DataAbilityOperation>> &operations) const;
/foundation/graphic/graphic_3d/lume/Lume_3D/src/ecs/systems/
H A Dlocal_matrix_system.cpp78 const ComponentQuery::Operation operations[] = { in Initialize() local
82 componentQuery_.SetupQuery(*transformManager_, operations); in Initialize()
/foundation/distributeddatamgr/data_share/frameworks/native/consumer/include/
H A Ddatashare_proxy.h45 virtual int BatchUpdate(const UpdateOperations &operations, std::vector<BatchUpdateResult> &results) override;
76 bool CheckSize(const UpdateOperations &operations);
/foundation/distributeddatamgr/kv_store/kvstoremock/frameworks/innerkitsimpl/distributeddatafwk/src/
H A Dkv_utils.cpp42 const auto &operations = predicates.GetOperationList(); in ToQuery() local
43 for (const auto &oper : operations) { in ToQuery()
86 const auto &operations = predicates.GetOperationList(); in GetKeys() local
87 if (operations.empty()) { in GetKeys()
88 ZLOGE("operations is null"); in GetKeys()
93 for (const auto &oper : operations) { in GetKeys()
/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/distributeddatafwk/src/
H A Dkv_utils.cpp44 const auto &operations = predicates.GetOperationList(); in ToQuery() local
45 for (const auto &oper : operations) { in ToQuery()
88 const auto &operations = predicates.GetOperationList(); in GetKeys() local
89 if (operations.empty()) { in GetKeys()
90 ZLOGE("operations is null"); in GetKeys()
95 for (const auto &oper : operations) { in GetKeys()
/foundation/distributeddatamgr/data_share/frameworks/native/consumer/controller/provider/src/
H A Dext_special_controller.cpp82 int ExtSpecialController::BatchUpdate(const UpdateOperations &operations, in BatchUpdate() argument
95 return proxy->BatchUpdate(operations, results); in BatchUpdate()
/foundation/ability/ability_runtime/test/unittest/frameworks_kits_ability_native_test/
H A Ddata_ability_impl_test.cpp1521 std::vector<std::shared_ptr<DataAbilityOperation>> operations; in HWTEST_F() local
1525 EXPECT_EQ(results, dataabilityimpl->ExecuteBatch(operations)); in HWTEST_F()
1539 std::vector<std::shared_ptr<DataAbilityOperation>> operations; in HWTEST_F() local
1543 EXPECT_EQ(results, dataabilityimpl->ExecuteBatch(operations)); in HWTEST_F()
1571 std::vector<std::shared_ptr<DataAbilityOperation>> operations; in HWTEST_F() local
1574 operations.push_back(operation); in HWTEST_F()
1578 EXPECT_EQ(results, dataabilityimpl->ExecuteBatch(operations)); in HWTEST_F()
1606 std::vector<std::shared_ptr<DataAbilityOperation>> operations; in HWTEST_F() local
1607 dataabilityimpl->ExecuteBatch(operations); in HWTEST_F()
1634 std::vector<std::shared_ptr<DataAbilityOperation>> operations; in HWTEST_F() local
1662 std::vector<std::shared_ptr<DataAbilityOperation>> operations; HWTEST_F() local
1697 std::vector<std::shared_ptr<DataAbilityOperation>> operations; HWTEST_F() local
1733 std::vector<std::shared_ptr<DataAbilityOperation>> operations; HWTEST_F() local
1769 std::vector<std::shared_ptr<DataAbilityOperation>> operations; HWTEST_F() local
1805 std::vector<std::shared_ptr<DataAbilityOperation>> operations; HWTEST_F() local
1841 std::vector<std::shared_ptr<DataAbilityOperation>> operations; HWTEST_F() local
[all...]
/foundation/distributeddatamgr/data_share/frameworks/native/consumer/controller/provider/include/
H A Dext_special_controller.h36 int BatchUpdate(const UpdateOperations &operations, std::vector<BatchUpdateResult> &results);
/foundation/distributeddatamgr/data_share/frameworks/native/consumer/src/
H A Ddatashare_proxy.cpp228 int DataShareProxy::BatchUpdate(const UpdateOperations &operations, std::vector<BatchUpdateResult> &results) in BatchUpdate() argument
237 if (!CheckSize(operations)) { in BatchUpdate()
240 if (!ITypesUtil::Marshal(data, operations)) { in BatchUpdate()
627 bool DataShareProxy::CheckSize(const UpdateOperations &operations) in CheckSize() argument
630 for (const auto &it : operations) { in CheckSize()
634 LOG_ERROR("operations size greater than limit"); in CheckSize()
/foundation/ability/ability_runtime/test/fuzztest/abilityeventhandler_fuzzer/
H A Dabilityeventhandler_fuzzer.cpp156 std::vector<std::shared_ptr<AppExecFwk::DataAbilityOperation>> operations; in DoSomethingInterestingWithMyAPI() local
157 abilitySchedulerProxy->ExecuteBatch(operations); in DoSomethingInterestingWithMyAPI()
/foundation/arkui/ace_engine/frameworks/base/geometry/
H A Dtransform_util.h174 static void ParseOperationsToMatrix(std::vector<TransformOperation>& operations);
176 static void ParseOperationToMatrix(TransformOperation& operations);
/foundation/graphic/graphic_3d/lume/metaobject/src/
H A Dstartable_object_controller.cpp295 BASE_NS::vector<StartableOperation> operations; in RunTasks() local
300 operations.swap(it->second); in RunTasks()
303 for (auto&& op : operations) { in RunTasks()
/foundation/ability/ability_runtime/test/moduletest/mock/include/
H A Dmock_ability_scheduler_stub.h54 const std::vector<std::shared_ptr<AppExecFwk::DataAbilityOperation>>& operations));
/foundation/ability/ability_runtime/test/mock/frameworks_kits_ability_native_test/include/
H A Dmock_data_ability.h133 const std::vector<std::shared_ptr<DataAbilityOperation>> &operations) in ExecuteBatch()
132 ExecuteBatch( const std::vector<std::shared_ptr<DataAbilityOperation>> &operations) ExecuteBatch() argument
/foundation/distributeddatamgr/data_share/frameworks/native/common/include/
H A Didatashare.h49 virtual int BatchUpdate(const UpdateOperations &operations, std::vector<BatchUpdateResult> &results) = 0;
/foundation/distributeddatamgr/data_share/frameworks/native/provider/src/
H A Ddatashare_ext_ability.cpp97 int DataShareExtAbility::BatchUpdate(const UpdateOperations &operations, std::vector<BatchUpdateResult> &results) in BatchUpdate() argument
/foundation/distributeddatamgr/data_share/frameworks/native/provider/include/
H A Ddatashare_stub_impl.h49 int BatchUpdate(const UpdateOperations &operations, std::vector<BatchUpdateResult> &results) override;
H A Ddatashare_stub.h58 virtual int BatchUpdate(const UpdateOperations &operations, std::vector<BatchUpdateResult> &results) override;
H A Ddatashare_ext_ability.h146 virtual int BatchUpdate(const UpdateOperations &operations, std::vector<BatchUpdateResult> &results);
192 * @brief Performs batch operations on the database.

Completed in 16 milliseconds

1234