Home
last modified time | relevance | path

Searched refs:inserted (Results 1 – 25 of 152) sorted by relevance

1234567

/ohos5.0/foundation/arkui/ace_engine_lite/frameworks/packages/runtime-core/src/observer/
H A Dsubject.js121 let inserted;
123 inserted = args;
125 inserted = args.slice(2);
128 if (inserted && inserted.length) {
129 inserted.forEach(Subject.of);
/ohos5.0/docs/en/application-dev/device/input/
H A Dinputdevice-guidelines.md5 …er a physical keyboard is currently inserted. Your application can determine whether a physical ke…
26 …er a physical keyboard is currently inserted. Your application can determine whether a physical ke…
30 …board as connected. This step ensures that your application detects all inserted input devices bef…
31 …n9) API to listen for device hot swap events. If a physical keyboard is inserted, mark the physica…
56 // The physical keyboard is inserted.
/ohos5.0/docs/en/application-dev/reference/apis-arkdata/
H A D_rdb___change_info.md23inserted](_r_d_b.md#inserted) | Location where data is inserted. If the primary key of the table i…
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/kvdb/src/
H A Dobserver_bridge.cpp85 auto inserted = ConvertDB(data.GetEntriesInserted(), deviceId, convert_); in OnChange() local
88 …ChangeNotification notice(std::move(inserted), std::move(updated), std::move(deleted), deviceId, f… in OnChange()
103 auto inserted = ObserverBridge::ConvertDB(data.GetInsertEntries(), deviceId, convert_); in OnChange() local
106 …ChangeNotification notice(std::move(inserted), std::move(updated), std::move(deleted), deviceId, f… in OnChange()
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkdata/
H A D_rdb___change_info.md23 | [inserted](_r_d_b.md#inserted) | 记录插入数据的位置,如果该表的主键是string类型,该值是主键的值,否则该值表示插入数据的行号。 |
/ohos5.0/docs/en/release-notes/changelogs/OpenHarmony_5.0.0.33/
H A Dchangelogs-global.md12 The resources in the mcc directory cannot be obtained properly when the SIM card is inserted, affec…
18 …However, when a SIM card is inserted, resources in the default language directory are displayed. W…
20 …, **Wi-Fi** is displayed when a SIM card is inserted, and **WLAN** is displayed when no SIM card i…
22 After change: When a SIM card is inserted, resources in the mcc directory are displayed. If no SIM …
24 …e, **WLAN** is displayed when a SIM card is inserted, and **Wi-Fi** is displayed when no SIM card …
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/include/
H A Dmulti_ver_def.h61 std::list<Entry> inserted; member
67 inserted.clear(); in Reset()
/ohos5.0/foundation/multimodalinput/input/intention/ipc/socket/src/
H A Dsocket_session_manager.cpp222 auto [_, inserted] = sessions_.emplace(session->GetFd(), session); in AddSession()
223 if (!inserted) { in AddSession()
237 auto [_, inserted] = callbacks_.emplace(pid, callback); in AddSessionDeletedCallback()
238 if (!inserted) { in AddSessionDeletedCallback()
H A Dsocket_client.cpp45 auto [_, inserted] = callbacks_.emplace(id, callback); in RegisterEvent()
46 return inserted; in RegisterEvent()
/ohos5.0/docs/en/device-dev/kernel/
H A Dkernel-small-debug-shell-file-sync.md21 - The **sync** command is used to refresh the cache. If no SD card is inserted, no operation will b…
23 - When an SD card is inserted, the cache information is synchronized to the SD card. If the synchro…
/ohos5.0/foundation/distributeddatamgr/relational_store/test/js/relationalstore/unittest/src/
H A DRdbStoreDataChange.test.js92 expect(2).assertEqual(ChangeInfos[i].inserted[0]);
136 expect(undefined).assertEqual(ChangeInfos[i].inserted[0]);
181 expect(undefined).assertEqual(ChangeInfos[i].inserted[0]);
220 expect(3).assertEqual(ChangeInfos[i].inserted[0]);
221 expect(4).assertEqual(ChangeInfos[i].inserted[1]);
270 expect(1).assertEqual(ChangeInfos[i].inserted[0]);
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/multiver/
H A Dmulti_ver_natural_store_commit_notify_data.cpp46 return diffData_.inserted; in GetInsertedEntries()
83 diffData_.inserted.empty() && in IsChangedDataEmpty()
/ohos5.0/base/msdp/device_status/intention/ipc/socket/src/
H A Dsocket_session_manager.cpp250 auto [_, inserted] = sessions_.emplace(session->GetFd(), session); in AddSession()
251 if (!inserted) { in AddSession()
266 auto [_, inserted] = callbacks_.emplace(pid, callback); in AddSessionDeletedCallback()
267 if (!inserted) { in AddSessionDeletedCallback()
H A Dsocket_client.cpp45 auto [_, inserted] = callbacks_.emplace(id, callback); in RegisterEvent()
46 return inserted; in RegisterEvent()
/ohos5.0/foundation/graphic/graphic_2d/rosen/samples/opengl/test_eglCreateWindowSurface/entry/src/main/cpp/manager/
H A Dplugin_manager.cpp92 auto [iter, inserted] = nativeXComponentMap_.try_emplace(id, nativeXComponent); in SetNativeXComponent()
93 if (!inserted && iter->second != nativeXComponent) { in SetNativeXComponent()
/ohos5.0/foundation/graphic/graphic_2d/rosen/samples/opengl/test_xComponentContext/entry/src/main/cpp/plugin/
H A Dplugin_manager.cpp49 auto [iter, inserted] = nativeXComponentMap_.try_emplace(id, nativeXComponent); in SetNativeXComponent()
50 if (!inserted && iter->second != nativeXComponent) { in SetNativeXComponent()
/ohos5.0/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/cloud/
H A Dcloud_types_util.cpp81 return ITypesUtil::Marshal(data, input.table, input.inserted, input.updated, input.normal); in Marshalling()
87 … return ITypesUtil::Unmarshal(data, output.table, output.inserted, output.updated, output.normal); in Unmarshalling()
/ohos5.0/docs/en/application-dev/reference/apis-telephony-kit/
H A Derrorcode-telephony.md78 No SIM card is inserted or the SIM card is not properly inserted.
158 Check whether the correct SIM card is inserted.
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/distributeddatafwk/src/
H A Dkvdb_notifier_client.cpp122 auto inserted = syncCallbackInfo_.Insert(sequenceId, callback); in AddSyncCallback() local
123 if (!inserted) { in AddSyncCallback()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/image/apng/
H A Dapng_image_decoder.cpp505 bool inserted = false; in png_copy_frame_data_at_index() local
513 if (shared_chunk_index >= info->apngSharedInsertIndex && !inserted) { in png_copy_frame_data_at_index()
514 inserted = true; in png_copy_frame_data_at_index()
811 bool inserted = false; in GetFrameData() local
825 if (sharedChunkIndex >= pngInfo_->apngSharedInsertIndex && !inserted) { in GetFrameData()
826 inserted = true; in GetFrameData()
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeEngine/src/log/
H A Dlogger.cpp137 auto const [pos, inserted] = registeredOnce_.insert(string(id)); in VLogOnce()
138 if (inserted) { in VLogOnce()
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/js/napi/cloud_data/src/
H A Djs_cloud_utils.cpp236 napi_value inserted = Convert2JSValue(env, value.inserted); in Convert2JSValue() local
240 napi_set_named_property(env, jsValue, "inserted", inserted); in Convert2JSValue()
/ohos5.0/docs/en/release-notes/changelogs/OpenHarmony_5.0.0.32/
H A Dchangelogs-arkts.md11 …ator, through which you can control the position to which an element is inserted in the binary tre…
201 …d. As a result, **hasKey(null/undefined)** returns **true** when null or undefined is not inserted.
202 …shed. As a result, **has(null/undefined)** returns **true** when null or undefined is not inserted.
210 …ap** object with a user-defined comparator, if null or undefined is not inserted, **hasKey(null/un…
222 …et** object with a user-defined comparator, if null or undefined is not inserted, **has(null/undef…
236 …ap** object with a user-defined comparator, if null or undefined is not inserted, **hasKey(null/un…
248 …et** object with a user-defined comparator, if null or undefined is not inserted, **has(null/undef…
/ohos5.0/foundation/communication/netmanager_base/services/netmanagernative/src/manager/
H A Dbandwidth_manager.cpp466 auto [_, inserted] = deniedListUids_.insert(uid); in AddDeniedList()
467 if (!inserted) { in AddDeniedList()
503 auto [_, inserted] = allowedListUids_.insert(uid); in AddAllowedList()
504 if (!inserted) { in AddAllowedList()
/ohos5.0/docs/en/application-dev/reference/apis-input-kit/
H A Djs-apis-inputdevice.md427 …nique ID of the input device. If the same physical device is repeatedly inserted and removed, its …
464 …nique ID of the input device. If the same physical device is repeatedly inserted and removed, its …
506 …nique ID of the input device. If the same physical device is repeatedly inserted and removed, its …
547 …nique ID of the input device. If the same physical device is repeatedly inserted and removed, its …
587 …nique ID of the input device. If the same physical device is repeatedly inserted and removed, its …
628 …nique ID of the input device. If the same physical device is repeatedly inserted and removed, its …
686 …pe9)| Yes| No| Device change type, which indicates whether an input device is inserted or removed.|
687 …nique ID of the input device. If the same physical device is repeatedly inserted and removed, its …
697 …nique ID of the input device. If the same physical device is repeatedly inserted and removed, its …
771 | 'add' | An input device is inserted.|

1234567