/foundation/arkui/ace_engine/test/unittest/base/ |
H A D | transform_util_test.cpp | 211 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 D | component_query.cpp | 49 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 D | component_query.h | 60 * @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 D | data_share_types_util.cpp | 25 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 D | data_ability_impl.cpp | 376 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 D | datashare_itypes_utils.cpp | 24 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 D | data_ability_impl.h | 205 * @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 D | local_matrix_system.cpp | 78 const ComponentQuery::Operation operations[] = { in Initialize() local 82 componentQuery_.SetupQuery(*transformManager_, operations); in Initialize()
|
/foundation/distributeddatamgr/data_share/frameworks/native/consumer/include/ |
H A D | datashare_proxy.h | 45 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 D | kv_utils.cpp | 42 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 D | kv_utils.cpp | 44 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 D | ext_special_controller.cpp | 82 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 D | data_ability_impl_test.cpp | 1521 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 D | ext_special_controller.h | 36 int BatchUpdate(const UpdateOperations &operations, std::vector<BatchUpdateResult> &results);
|
/foundation/distributeddatamgr/data_share/frameworks/native/consumer/src/ |
H A D | datashare_proxy.cpp | 228 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 D | abilityeventhandler_fuzzer.cpp | 156 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 D | transform_util.h | 174 static void ParseOperationsToMatrix(std::vector<TransformOperation>& operations); 176 static void ParseOperationToMatrix(TransformOperation& operations);
|
/foundation/graphic/graphic_3d/lume/metaobject/src/ |
H A D | startable_object_controller.cpp | 295 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 D | mock_ability_scheduler_stub.h | 54 const std::vector<std::shared_ptr<AppExecFwk::DataAbilityOperation>>& operations));
|
/foundation/ability/ability_runtime/test/mock/frameworks_kits_ability_native_test/include/ |
H A D | mock_data_ability.h | 133 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 D | idatashare.h | 49 virtual int BatchUpdate(const UpdateOperations &operations, std::vector<BatchUpdateResult> &results) = 0;
|
/foundation/distributeddatamgr/data_share/frameworks/native/provider/src/ |
H A D | datashare_ext_ability.cpp | 97 int DataShareExtAbility::BatchUpdate(const UpdateOperations &operations, std::vector<BatchUpdateResult> &results) in BatchUpdate() argument
|
/foundation/distributeddatamgr/data_share/frameworks/native/provider/include/ |
H A D | datashare_stub_impl.h | 49 int BatchUpdate(const UpdateOperations &operations, std::vector<BatchUpdateResult> &results) override;
|
H A D | datashare_stub.h | 58 virtual int BatchUpdate(const UpdateOperations &operations, std::vector<BatchUpdateResult> &results) override;
|
H A D | datashare_ext_ability.h | 146 virtual int BatchUpdate(const UpdateOperations &operations, std::vector<BatchUpdateResult> &results); 192 * @brief Performs batch operations on the database.
|