Home
last modified time | relevance | path

Searched refs:InfoType (Results 1 – 11 of 11) sorted by relevance

/ohos5.0/docs/zh-cn/application-dev/napi/
H A Duse-napi-about-array.md642 // 定义枚举类型与ArkTS侧枚举类型InfoType顺序含义一致
643 enum InfoType { INFO_TYPE = 1, INFO_LENGTH, INFO_ARRAY_BUFFER, INFO_BYTE_OFFSET };
699 enum InfoType {
705 let arrbuff = testNapi.getTypedarrayInfo(int8Array, InfoType.ARRAY_BUFFER) as ArrayBuffer;
710 … 'get_typedarray_info_length: %{public}d', testNapi.getTypedarrayInfo(int8Array, InfoType.LENGTH));
853 // 定义枚举类型与ArkTS侧枚举类型InfoType顺序含义一致
854 enum InfoType { BYTE_LENGTH = 0, ARRAY_BUFFER, BYTE_OFFSET };
900 enum InfoType {
906 …et_dataview_info_bytelength %{public}d', testNapi.getDataViewInfo(dataView, InfoType.BYTE_LENGTH));
908 let arrbuff = testNapi.getDataViewInfo(dataView, InfoType.ARRAY_BUFFER) as ArrayBuffer;
[all …]
H A Duse-jsvm-about-array.md283 enum InfoType { BYTE_LENGTHE, ARRAY_BUFFERE, BYTE_OFFSET };
416 enum InfoType { INFO_TYPE, INFO_LENGTH, INFO_ARRAY_BUFFER, INFO_BYTE_OFFSET };
/ohos5.0/foundation/multimedia/player_framework/services/services/engine_intf/
H A Di_recorder_engine.h47 enum InfoType : int32_t { enum
69 virtual void OnInfo(InfoType type, int32_t extra) = 0;
/ohos5.0/docs/en/application-dev/napi/
H A Duse-napi-about-array.md641 // Define the InfoType enums in the same sequence as those in ArkTS.
642 enum InfoType { INFO_TYPE = 1, INFO_LENGTH, INFO_ARRAY_BUFFER, INFO_BYTE_OFFSET };
697 // Define the InfoType enums, which are the properties of TypedArray.
698 enum InfoType {
704 let arrbuff = testNapi.getTypedarrayInfo(int8Array, InfoType.ARRAY_BUFFER) as ArrayBuffer;
709 … 'get_typedarray_info_length: %{public}d', testNapi.getTypedarrayInfo(int8Array, InfoType.LENGTH));
852 // Define the InfoType enums in the same sequence as those in ArkTS.
853 enum InfoType { BYTE_LENGTH = 0, ARRAY_BUFFER, BYTE_OFFSET };
899 enum InfoType {
905 …et_dataview_info_bytelength %{public}d', testNapi.getDataViewInfo(dataView, InfoType.BYTE_LENGTH));
[all …]
H A Duse-jsvm-about-array.md283 enum InfoType { BYTE_LENGTHE, ARRAY_BUFFERE, BYTE_OFFSET };
416 enum InfoType { INFO_TYPE, INFO_LENGTH, INFO_ARRAY_BUFFER, INFO_BYTE_OFFSET };
/ohos5.0/foundation/multimedia/media_foundation/test/scenetest/helper/
H A Dstd_audio_recorder.cpp42 void OnInfo(InfoType type, int32_t extra) override in OnInfo()
/ohos5.0/foundation/multimedia/player_framework/services/services/recorder/server/
H A Drecorder_server.h124 void OnInfo(InfoType type, int32_t extra) override;
H A Drecorder_server.cpp147 void RecorderServer::OnInfo(InfoType type, int32_t extra) in OnInfo()
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_data_storage_test/
H A Dbms_bundle_data_storage_database_test.cpp759 enum class InfoType { enum in OHOS::BmsBundleDataStorageDatabaseTest
764 void CheckInvalidPropDeserialize(const nlohmann::json infoJson, const InfoType infoType) const;
1558 const nlohmann::json infoJson, const InfoType infoType) const in CheckInvalidPropDeserialize()
1565 case InfoType::BUNDLE_INFO: { in CheckInvalidPropDeserialize()
1570 case InfoType::APPLICATION_INFO: { in CheckInvalidPropDeserialize()
1575 case InfoType::ABILITY_INFO: { in CheckInvalidPropDeserialize()
/ohos5.0/foundation/multimedia/media_foundation/test/scenetest/audio_recorder/
H A DTestFastRecorder.cpp60 void OnInfo(InfoType type, int32_t extra) override in OnInfo()
/ohos5.0/foundation/multimedia/media_foundation/engine/scene/recorder/standard/
H A Dhirecorder_impl.cpp315 ptr->OnInfo(IRecorderEngineObs::InfoType::INTERNEL_WARNING, CppExt::to_underlying(state)); in OnStateChanged()