/foundation/arkui/ace_engine/adapter/ohos/entrance/ |
H A D | distributed_ui_manager.h | 63 void UpdateUITree(const SerializeableObjectArray& update) in UpdateUITree() argument 65 auto task = [this, &update]() { distributedUI_->UpdateUITree(update); }; in UpdateUITree()
|
/foundation/distributeddatamgr/relational_store/test/js/rdb/unittest/src/ |
H A D | RdbstoreUpdateJsunit.test.js | 77 let ret = await rdbStore.update(valueBucket, predicates) 79 await console.log(TAG + "update done: " + ret); 126 await rdbStore.update(valueBucket, predicates) 135 await rdbStore.update(emptyBucket, predicates) 144 await rdbStore.update(valueBucket, predicates); 169 await rdbStore.update(valueBucket, predicates) 176 await rdbStore.update(valueBucket, predicates) 201 await rdbStore.update(valueBucket, predicates) 212 await rdbStore.update(emptyBucket, predicates) 248 let ret = await rdbStore.update(valueBucke [all...] |
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/shape/ |
H A D | rect_paint_property.h | 31 // Dimension(0) will update radius, but Dimension(-1) will not. 220 bool update = false; in UpdateRadius() local 223 update = true; in UpdateRadius() 227 update = true; in UpdateRadius() 231 update = true; in UpdateRadius() 234 if (update) { in UpdateRadius()
|
/foundation/graphic/graphic_3d/lume/metaobject/src/curves/ |
H A D | bezier_curve.cpp | 31 auto update = MakeCallback<IOnChanged>(this, &CubicBezierEasingCurve::UpdateCoefficients); in Build() local 32 META_ACCESS_PROPERTY(ControlPoint1)->OnChanged()->AddHandler(update); in Build() 33 META_ACCESS_PROPERTY(ControlPoint2)->OnChanged()->AddHandler(update); in Build()
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/executor/document/ |
H A D | grd_document_api_inner.cpp | 48 int32_t GRD_UpdateDocInner(GRD_DB *db, const char *collectionName, const char *filter, const char *update, in GRD_UpdateDocInner() argument 51 if (db == nullptr || db->store_ == nullptr || collectionName == nullptr || filter == nullptr || update == nullptr) { in GRD_UpdateDocInner() 54 int ret = db->store_->UpdateDocument(collectionName, filter, update, flags); in GRD_UpdateDocInner()
|
H A D | grd_document_api.cpp | 52 GRD_API int32_t GRD_UpdateDoc(GRD_DB *db, const char *collectionName, const char *filter, const char *update, in GRD_UpdateDoc() argument 62 return GRD_DocApiInfo.UpdateDocApi(db, collectionName, filter, update, flags); in GRD_UpdateDoc()
|
/foundation/distributeddatamgr/relational_store/test/js/relationalstore/unittest/src/ |
H A D | RdbstoreUpdateJsunit.test.js | 54 * @tc.name Normal test case of update 85 let ret = await rdbStore.update(valueBucket, predicates) 87 await console.log(TAG + "update done: " + ret); 121 * @tc.name Abnormal test case of update, if TABLE name or Bucket is empty and column invalid 124 * 3.Execute update 126 * 5.Execute update 128 * 7.Execute update 141 await rdbStore.update(valueBucket, predicates) // table name should not empty 150 await rdbStore.update(emptyBucket, predicates) // emptyBucket should not empty 159 await rdbStore.update(valueBucke [all...] |
/foundation/distributeddatamgr/kv_store/test/fuzztest/typesutil_fuzzer/ |
H A D | typesutil_fuzzer.cpp | 98 Entry update; in ChangeNotificationFuzz() local 101 update.key = strBase; in ChangeNotificationFuzz() 104 update.value = strBase; in ChangeNotificationFuzz() 110 updates.push_back(update); in ChangeNotificationFuzz()
|
/foundation/communication/netmanager_base/services/netmanagernative/src/netsys/ |
H A D | system_vpn_wrapper.cpp | 93 std::function<void()> update = std::bind(&SystemVpnWrapper::ExecuteUpdate, shared_from_this(), stage); in Update() local 94 vpnFfrtQueue_->submit(update); in Update()
|
/foundation/arkui/ace_engine/frameworks/core/components/text/ |
H A D | render_text.h | 149 void UpdateIfChanged(T& update, const T& val) in UpdateIfChanged() argument 151 if (update != val) { in UpdateIfChanged() 153 update = val; in UpdateIfChanged()
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/interface/src/ |
H A D | document_store.cpp | 142 int UpdateArgsCheck(const std::string &collection, const std::string &filter, const std::string &update, uint32_t flags) in UpdateArgsCheck() argument 150 if (update.length() >= JSON_LENS_MAX || filter.length() >= JSON_LENS_MAX) { in UpdateArgsCheck() 154 JsonObject updateObj = JsonObject::Parse(update, errCode, true); in UpdateArgsCheck() 156 GLOGE("update Parsed failed"); in UpdateArgsCheck() 159 if (update != "{}") { in UpdateArgsCheck() 173 int GetUpDataRePlaceData(ResultSet &resultSet, const std::string &id, const std::string &update, std::string &valStr, in GetUpDataRePlaceData() argument 185 JsonObject updateValue = JsonObject::Parse(update, errCode, true); in GetUpDataRePlaceData() 209 const std::string &update, bool &isReplace) in UpdateDataIntoDB() 238 errCode = GetUpDataRePlaceData(resultSet, docId, update, valStr, isReplace); in UpdateDataIntoDB() 257 int DocumentStore::UpdateDocument(const std::string &collection, const std::string &filter, const std::string &update, in UpdateDocument() argument 208 UpdateDataIntoDB(std::shared_ptr<QueryContext> &context, JsonObject &filterObj, const std::string &update, bool &isReplace) UpdateDataIntoDB() argument [all...] |
/foundation/arkui/ace_engine/test/unittest/interfaces/ |
H A D | animate_impl_test.cpp | 626 ArkUI_ContextCallback* update = new ArkUI_ContextCallback(); in HWTEST_F() local 627 update->callback = AnimateCompleteCallback; in HWTEST_F() 629 int32_t ret = AnimateTo(&context, option, update, complete); in HWTEST_F() 632 delete update; in HWTEST_F() 650 ArkUI_ContextCallback* update = new ArkUI_ContextCallback(); in HWTEST_F() local 651 update->callback = AnimateCompleteCallback; in HWTEST_F() 657 int32_t ret = AnimateTo(&context, option, update, complete); in HWTEST_F() 662 delete update; in HWTEST_F()
|
/foundation/arkui/ace_engine/frameworks/core/components/declaration/text/ |
H A D | text_declaration.h | 158 void CheckIsChanged(const T& update, const T& val) in CheckIsChanged() argument 160 if (update != val) { in CheckIsChanged()
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/interface/include/ |
H A D | document_store.h | 38 int UpdateDocument(const std::string &collection, const std::string &filter, const std::string &update, 70 int UpdateDataIntoDB(std::shared_ptr<QueryContext> &context, JsonObject &filterObj, const std::string &update,
|
/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/distributeddatafwk/test/unittest/ |
H A D | types_util_test.cpp | 93 Entry insert, update, del; in HWTEST_F() local 95 update.key = "update"; in HWTEST_F() 98 update.value = "update_value"; in HWTEST_F() 102 updates.push_back(update); in HWTEST_F() 114 EXPECT_EQ(changeOut.GetUpdateEntries().front().key.ToString(), std::string("update")); in HWTEST_F()
|
H A D | blob_test.cpp | 311 Entry insert, update, del; in HWTEST_F() local 313 update.key = "update"; in HWTEST_F() 316 update.value = "update_value"; in HWTEST_F() 320 updates.push_back(update); in HWTEST_F()
|
/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/test/fuzztest/capabilityinfomanager_fuzzer/ |
H A D | capabilityinfomanager_fuzzer.cpp | 36 DistributedKv::Entry update; in CapabilityInfoManagerFuzzTest() local 39 update.key = std::string(reinterpret_cast<const char*>(data), size); in CapabilityInfoManagerFuzzTest() 42 update.value = std::string(reinterpret_cast<const char*>(data), size); in CapabilityInfoManagerFuzzTest() 48 updates.push_back(update); in CapabilityInfoManagerFuzzTest()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/base/ |
H A D | distributed_ui.cpp | 189 SerializeableObjectArray update; in OnTreeUpdate() local 193 update = DumpUITree(); in OnTreeUpdate() 196 update = DumpUpdate(); in OnTreeUpdate() 197 if (update.empty()) { in OnTreeUpdate() 209 onUpdateCb_(updateType, update); in OnTreeUpdate() 271 auto update = std::move(pendingUpdates_.front()); in ApplyOneUpdate() local 273 UpdateUITreeInner(update); in ApplyOneUpdate()
|
/foundation/arkui/ace_engine_lite/frameworks/packages/runtime-core/src/observer/ |
H A D | observer.js | 41 Observer.prototype.update = function() {
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/include/grd_document/ |
H A D | grd_document_api.h | 37 GRD_API int32_t GRD_UpdateDoc(GRD_DB *db, const char *collectionName, const char *filter, const char *update,
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/executor/include/ |
H A D | grd_document_api_inner.h | 34 int32_t GRD_UpdateDocInner(GRD_DB *db, const char *collectionName, const char *filter, const char *update,
|
/foundation/arkui/ace_engine/interfaces/native/node/ |
H A D | animate_impl.cpp | 24 int32_t AnimateTo(ArkUI_ContextHandle context, ArkUI_AnimateOption* option, ArkUI_ContextCallback* update, in AnimateTo() argument 28 if (!impl || !context || !option || !update || !update->callback) { in AnimateTo() 62 reinterpret_cast<void*>(update->callback), update->userData); in AnimateTo()
|
/foundation/arkui/ace_engine/frameworks/core/components/plugin/ |
H A D | plugin_sub_container.h | 84 void SetAllowUpdate(bool update) in SetAllowUpdate() argument 86 allowUpdate_ = update; in SetAllowUpdate()
|
/foundation/arkui/ace_engine/frameworks/core/components/form/ |
H A D | sub_container.h | 101 void SetAllowUpdate(bool update) in SetAllowUpdate() argument 103 allowUpdate_ = update; in SetAllowUpdate()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/tabs/ |
H A D | tab_content_node.cpp | 63 bool update = false; in ProcessTabBarItem() local 71 update = true; in ProcessTabBarItem() 75 TabContentModelNG::AddTabBarItem(Referenced::Claim(this), myIndex, update); in ProcessTabBarItem() local
|