Searched refs:newVal (Results 1 – 12 of 12) sorted by relevance
/ohos5.0/base/hiviewdfx/hilog/services/hilogd/ |
H A D | cmd_executor.cpp | 70 auto newVal = std::make_unique<ClientThread>(); in OnAcceptedConnection() local 71 if (newVal != nullptr) { in OnAcceptedConnection() 72 newVal->m_stopThread.store(false); in OnAcceptedConnection() 73 newVal->m_clientThread = std::thread([this](std::unique_ptr<Socket> handler) { in OnAcceptedConnection() 76 m_clients.push_back(std::move(newVal)); in OnAcceptedConnection()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/state_mgmt/src/lib/v2/ |
H A D | v2_computed.ts | 78 let newVal = this.observeObjectAccess(); 80 if (this.target_[cachedProp] !== newVal) { 81 this.target_[cachedProp] = newVal;
|
/ohos5.0/commonlibrary/memory_utils/libpurgeablemem/common/src/ |
H A D | ux_page_table_c.c | 277 static inline bool UxpteCAS_(uxpte_t *uxpte, uxpte_t old, uxpte_t newVal) in UxpteCAS_() argument 279 return __sync_bool_compare_and_swap(uxpte, old, newVal); in UxpteCAS_() 285 uxpte_t newVal = 0; in UxpteAdd() local 291 newVal = old + incNum; in UxpteAdd() 299 } while (!UxpteCAS_(pte, old, newVal)); in UxpteAdd()
|
/ohos5.0/commonlibrary/ets_utils/js_api_module/buffer/src/ |
H A D | js_buffer.ts | 1123 const newVal = Math.floor(value * Math.pow(twoBytes, -32)); // -32 means offset 32 bits to left 1124 this[offset++] = (newVal >>> eightBytes); 1125 this[offset++] = newVal; 1174 const newVal = Math.floor(value * Math.pow(twoBytes, -32)); // -32 means offset 32 bits to left 1180 this[offset++] = newVal; 1181 this[offset++] = (newVal >>> eightBytes); 1190 const newVal = value; 1196 … this[offset++] = Math.floor(newVal * Math.pow(twoBytes, -32)); // -32 means offset 32 bits to left
|
/ohos5.0/docs/zh-cn/application-dev/napi/ |
H A D | use-napi-object-wrap.md | 20 public set value(newVal: number);
|
H A D | use-sendable-napi.md | 21 public set value(newVal: number);
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/interfaces/ |
H A D | distributeddb_interfaces_import_and_export_rd_test.cpp | 91 int ModifyDataInPage(int modifyPos, char newVal, const char *modifyFile); 239 int DistributedDBInterfacesImportAndExportRdTest::ModifyDataInPage(int modifyPos, char newVal, cons… in ModifyDataInPage() argument 251 size_t ret = fwrite(&newVal, sizeof(char), 1, fp); in ModifyDataInPage()
|
/ohos5.0/docs/en/application-dev/napi/ |
H A D | use-napi-object-wrap.md | 20 public set value(newVal: number);
|
H A D | use-sendable-napi.md | 21 public set value(newVal: number);
|
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkts/ |
H A D | js-apis-util.md | 646 let newVal = 'data111'; 647 Reflect.set(target, 'data', newVal); 648 console.info('data is changed to ' + newVal);
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/ |
H A D | stateMgmt.js | 8936 let newVal = this.observeObjectAccess(); 8938 if (this.target_[cachedProp] !== newVal) { 8939 this.target_[cachedProp] = newVal;
|
/ohos5.0/docs/en/application-dev/reference/apis-arkts/ |
H A D | js-apis-util.md | 646 let newVal = 'data111'; 647 Reflect.set(target, 'data', newVal); 648 console.info('data is changed to ' + newVal);
|