/ohos5.0/build/ohos/ndk/cmake/ |
H A D | ohos.toolchain.cmake | 19 set(CMAKE_SYSTEM_VERSION 1) 37 set(OHOS OHOS) 49 set(OHOS_STL c++_shared) 53 set(OHOS_PIE TRUE) 57 set(OHOS_ARM_NEON thumb) 60 # set the ABI 62 set(OHOS_ARCH arm64-v8a) 72 # set the ccache 93 # set the arch abi 228 # set the other flags [all …]
|
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeBinaryCompile/LumeShaderCompiler/ |
H A D | shader.compile.toolchain.cmake | 4 set(CMAKE_SYSTEM_VERSION 1) 6 set(CMAKE_SYSTEM_NAME Linux) 10 set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) 25 set (CMAKE_LINKER "${OHOS_NDK}/bin/lld") 27 set(CMAKE_C_COMPILER_ID_RUN TRUE) 28 set(CMAKE_CXX_COMPILER_ID_RUN TRUE) 29 set(CMAKE_C_COMPILER_ID Clang) 30 set(CMAKE_CXX_COMPILER_ID Clang) 31 set(CMAKE_C_COMPILER_VERSION 9.0) 32 set(CMAKE_CXX_COMPILER_VERSION 9.0) [all …]
|
H A D | CMakeLists.txt | 29 set(CMAKE_THREAD_PREFER_PTHREAD true) 34 set(LIBRT "" CACHE STRING "" FORCE) 42 set(CMAKE_CXX_STANDARD 17) 43 set(CMAKE_CXX_STANDARD_REQUIRED ON) 44 set(CMAKE_CXX_EXTENSIONS OFF) 77 set(ENABLE_HLSL OFF CACHE BOOL "" FORCE) 78 set(ENABLE_OPT OFF CACHE BOOL "" FORCE) 125 set(GLSLANG_VERSION "120000") 128 set(sources 146 set(executable "LumeShaderCompiler") [all …]
|
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/tests/ |
H A D | join_set.rs | 38 let mut set = JoinSet::new(); in sdv_join_set_spawn_simple() localVariable 39 set.spawn(async move { 1 }); in sdv_join_set_spawn_simple() 75 let mut set = JoinSet::new(); in sdv_join_set_spawn_pending() localVariable 95 let mut set = JoinSet::new(); in sdv_join_set_spawn_io() localVariable 97 set.spawn(async move { in sdv_join_set_spawn_io() 108 set.spawn(async move { in sdv_join_set_spawn_io() 137 let mut set = JoinSet::new(); in sdv_join_set_spawn_multiple() localVariable 226 set.cancel_all(); in sdv_join_set_cancel_all() 245 let mut builder = set in sdv_join_set_builder() 277 set.shutdown().await; in sdv_join_set_shutdown() [all …]
|
/ohos5.0/foundation/graphic/graphic_3d/lume/Lume_3D/api/3d/shaders/common/ |
H A D | 3d_dm_frag_layout_common.h | 29 layout(set = 0, binding = 0, std140) uniform uCameraMatrices 33 layout(set = 0, binding = 1, std140) uniform uGeneralStructData 37 layout(set = 0, binding = 2, std140) uniform uEnvironmentStructData 41 layout(set = 0, binding = 3, std140) uniform uFogStructData 45 layout(set = 0, binding = 4, std140) uniform uLightStructData 49 layout(set = 0, binding = 5, std140) uniform uPostProcessStructData 53 layout(set = 0, binding = 6, std430) buffer uLightClusterIndexData 60 layout(set = 0, binding = 10) uniform samplerCube uSampRadiance; 64 layout(set = 1, binding = 0, std140) uniform uMeshStructData 68 layout(set = 1, binding = 1, std140) uniform uObjectSkinStructData [all …]
|
H A D | 3d_post_process_layout_common.h | 34 layout(set = 0, binding = 2, std140) uniform uCameraMatrices 38 layout(set = 0, binding = 3, std140) uniform uGeneralStructData 42 layout(set = 0, binding = 4, std140) uniform uEnvironmentStructData 46 layout(set = 0, binding = 5, std140) uniform uFogStructData 50 layout(set = 0, binding = 6, std140) uniform uLightStructData 54 layout(set = 0, binding = 7, std140) uniform uPostProcessStructData 58 layout(set = 0, binding = 8, std430) buffer uLightClusterIndexData 62 layout(set = 0, binding = 9) uniform CORE_RELAXEDP sampler2D uSampColorPrePass; 63 layout(set = 0, binding = 10) uniform sampler2D uSampColorShadow; // VSM or other 64 layout(set = 0, binding = 11) uniform sampler2DShadow uSampDepthShadow; // PCF [all …]
|
H A D | 3d_dm_vert_layout_common.h | 29 layout(set = 0, binding = 0, std140) uniform uCameraMatrices 33 layout(set = 0, binding = 1, std140) uniform uGeneralStructData 37 layout(set = 0, binding = 2, std140) uniform uEnvironmentStructData 41 layout(set = 0, binding = 3, std140) uniform uFogStructData 45 layout(set = 0, binding = 4, std140) uniform uLightStructData 49 layout(set = 0, binding = 5, std140) uniform uPostProcessStructData 56 layout(set = 1, binding = 0, std140) uniform uMeshStructData 60 layout(set = 1, binding = 1, std140) uniform uObjectSkinStructData 64 layout(set = 1, binding = 2, std140) uniform uMaterialStructData 68 layout(set = 1, binding = 3, std140) uniform uMaterialTransformStructData [all …]
|
/ohos5.0/base/update/updater/services/flashd/ |
H A D | flashd_basepkg.bat | 38 set start=!time! 44 set end=!time! 67 for /f %options% %%a in ("%~1") do set start_h=%%a&set /a start_m=100%%b %% 100&set /a start_s=100%… 68 for /f %options% %%a in ("%~2") do set end_h=%%a&set /a end_m=100%%b %% 100&set /a end_s=100%%c %% … 70 set /a mins=%end_m%-%start_m% 71 set /a secs=%end_s%-%start_s% 72 set /a ms=%end_ms%-%start_ms% 73 if %ms% lss 0 set /a secs = %secs% - 1 & set /a ms = 100%ms% 74 if %secs% lss 0 set /a mins = %mins% - 1 & set /a secs = 60%secs% 75 if %mins% lss 0 set /a hours = %hours% - 1 & set /a mins = 60%mins% [all …]
|
/ohos5.0/docs/en/application-dev/reference/apis-universal-keystore-kit/ |
H A D | _huks_param_set_api.md | 6 …set lifecycle management, including initializing a parameter set, adding parameters, building a pa… 49 Adds parameters to a parameter set. 72 Builds a parameter set. 115 Copies a parameter set (deep copy). 138 Frees a key alias set. 155 Frees a parameter set. 163 | paramSet | Pointer to the parameter set to free. | 180 | paramSet | Pointer to the parameter set to check. | 194 Obtains a parameter from a parameter set. 217 Initializes a parameter set. [all …]
|
/ohos5.0/foundation/resourceschedule/ffrt/ |
H A D | CMakeLists.txt | 22 # set compiler clang or gcc, must before project(ffrt) 24 set(CMAKE_C_COMPILER clang) 25 set(CMAKE_CXX_COMPILER clang++) 27 set(CMAKE_C_COMPILER gcc) 28 set(CMAKE_CXX_COMPILER g++) 42 set(FFRT_CODE_PATH ${PROJECT_SOURCE_DIR}/src) 45 set(FFRT_BUILD_PATH ${PROJECT_SOURCE_DIR}/build) 46 set(ROOT_PATH ${PROJECT_SOURCE_DIR}/../) 48 set(TRACE_PATH ${FFRT_CODE_PATH}/dfx/trace) 49 set(QOS_PATH ${FFRT_CODE_PATH}/sched/) [all …]
|
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/composelistitem/interfaces/ |
H A D | composelistitem.js | 199 set iconStyle(o64) { 205 set icon(n64) { 235 set leftWidth(i64) { 606 set arrow(t62) { 612 set icon(s62) { 618 set subIcon(r62) { 624 set button(q62) { 630 set switch(p62) { 642 set radio(n62) { 648 set image(m62) { [all …]
|
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/gles/ |
H A D | shader_module_gles.cpp | 51 uint8_t set; in CollectRes() member 57 if (set.set != PipelineLayoutConstants::INVALID_INDEX) { in CollectRes() 58 for (const auto& binding : set.bindings) { in CollectRes() 61 … samplers.push_back({ static_cast<uint8_t>(set.set), static_cast<uint8_t>(binding.binding) }); in CollectRes() 64 Collect(set.set, binding, plat_.cbSets); in CollectRes() 67 … images.push_back({ static_cast<uint8_t>(set.set), static_cast<uint8_t>(binding.binding) }); in CollectRes() 70 Collect(set.set, binding, plat_.ciSets); in CollectRes() 77 Collect(set.set, binding, plat_.ubSets); in CollectRes() 80 Collect(set.set, binding, plat_.sbSets); in CollectRes() 87 Collect(set.set, binding, plat_.siSets); in CollectRes() [all …]
|
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkts/ |
H A D | js-apis-treemap.md | 76 treeMap.set("aa","3"); 77 treeMap.set("dd","1"); 78 treeMap.set("cc","2"); 79 treeMap.set("bb","4"); 98 ts1.set(entry1, "0"); 99 ts1.set(entry2, "1"); 250 treeMap.set("sparrow", 356); 355 map.set("demo", 12); 363 ### set subsection 479 treeMap.set("gander", 356); [all …]
|
H A D | js-apis-lightweightmap.md | 134 lightWeightMap.set("squirrel", 123); 135 lightWeightMap.set("sparrow", 356); 137 map.set("sparrow", 356); 176 lightWeightMap.set("squirrel", 123); 215 lightWeightMap.set("squirrel", 123); 286 lightWeightMap.set("sparrow", 356); 326 lightWeightMap.set("sparrow", 356); 366 lightWeightMap.set("sparrow", 356); 449 ### set subsection 450 set(key: K, value: V): Object [all …]
|
H A D | js-apis-hashmap.md | 130 hashMap.set("squirrel", 123); 169 hashMap.set("squirrel", 123); 208 hashMap.set("squirrel", 123); 209 hashMap.set("sparrow", 356); 243 hashMap.set("squirrel", 123); 244 hashMap.set("sparrow", 356); 251 ### set subsection 326 hashMap.set("sparrow", 356); 354 hashMap.set("sparrow", 356); 388 hashMap.set("sparrow", 356); [all …]
|
/ohos5.0/foundation/ai/intelligent_voice_framework/services/intell_voice_trigger/server/ |
H A D | trigger_db_helper.cpp | 136 ret = set->GetInt(columnIndex, vendorUuid); in GetVendorUuid() 147 int ret = set->GetColumnIndex("data", columnIndex); in GetBlob() 153 ret = set->GetBlob(columnIndex, data); in GetBlob() 170 ret = set->GetInt(columnIndex, version); in GetModelVersion() 187 ret = set->GetInt(columnIndex, type); in GetModelType() 207 if (set == nullptr) { in GetGenericTriggerModel() 212 set->GoToFirstRow(); in GetGenericTriggerModel() 215 if (!GetVendorUuid(set, vendorUuid)) { in GetGenericTriggerModel() 221 if (!GetBlob(set, data)) { in GetGenericTriggerModel() 227 if (!GetModelVersion(set, modelVersion)) { in GetGenericTriggerModel() [all …]
|
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/atomicservicenavigation/interfaces/ |
H A D | atomicservicenavigation.js | 94 set navPathStack(s) { 100 set title(r) { 101 this.__title.set(r); 106 set titleOptions(q) { 112 set hideTitleBar(p) { 118 set navBarWidth(o) { 119 this.__navBarWidth.set(o); 124 set mode(n) { 125 this.__mode.set(n); 130 set navBarWidthRange(m) { [all …]
|
/ohos5.0/foundation/multimedia/media_foundation/test/unittest/ |
H A D | CMakeLists.txt | 4 set(GTEST_DIRS ${THIRD_PARTY_DIR}/gtest) 5 set(MOCKCPP_DIR ${THIRD_PARTY_DIR}/mockcpp) 13 set(sdl_inc_path ${THIRD_PARTY_DIR}/SDL2.0/include) 16 set(ffmpeg_lib_path ${THIRD_PARTY_DIR}/ffmpeg/windows/lib) 17 set(sdl_lib_path ${THIRD_PARTY_DIR}/SDL2.0/windows/lib/x64) 18 set(gtest_lib_path ${GTEST_ROOT_DIR}/mingw64/lib/) 22 set(sdl_lib_path ${THIRD_PARTY_DIR}/SDL2.0/linux/lib) 25 set(curl_lib_path ${THIRD_PARTY_DIR}/curl/lib/linux) 44 set(SRC 68 set(ffmpeg_path ${THIRD_PARTY_DIR}/ffmpeg/windows) [all …]
|
/ohos5.0/foundation/multimedia/camera_framework/frameworks/js/camera_napi/demo/ |
H A D | hvigorw.bat | 11 set DIRNAME=%~dp0 12 if "%DIRNAME%" == "" set DIRNAME=. 13 set APP_BASE_NAME=%~n0 14 set APP_HOME=%DIRNAME% 17 for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi 19 set WRAPPER_MODULE_PATH=%APP_HOME%\hvigor\hvigor-wrapper.js 20 set NODE_EXE=node.exe 34 echo Please set the NODE_HOME variable in your environment to match the 40 set NODE_HOME=%NODE_HOME:"=% 41 set NODE_EXE_PATH=%NODE_HOME%/%NODE_EXE% [all …]
|
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/progressbutton/interfaces/ |
H A D | progressbutton.js | 126 set progress(g1) { 127 this.__progress.set(g1); 132 set textProgress(f1) { 138 set content(e1) { 139 this.__content.set(e1); 144 set isLoading(d1) { 145 this.__isLoading.set(d1); 150 set enable(c1) { 151 this.__enable.set(c1); 156 set progressColor(b1) { [all …]
|
/ohos5.0/docs/en/application-dev/reference/ |
H A D | syscap.md | 7 …ra. Each SysCap corresponds to a set of APIs, whose availability depends on the support of the tar… 15 The supported SysCap set, associated SysCap set, and required SysCap set are collections of SysCaps. 16 …set covers the device capabilities, and the required SysCap set covers the application capabilitie… 23 Each device provides a SysCap set that matches its hardware capability. 30 …set of APIs for DevEco Studio. DevEco Studio identifies the supported SysCap set based on the devi… 50 DevEco Studio automatically configures the associated SysCap set and required SysCap set based on t… 70 … // The SysCap set in addedSysCaps and the SysCap set supported by each device configured in de… 76 …es configured in devices. It is the required SysCap set with addedSysCaps set and removedSysCaps s… 84 …set and required SysCap set of the application are the same as the supported SysCap set of the dev… 90 …the associated SysCap set of an application is the union of multiple devices' supported SysCap set… [all …]
|
/ohos5.0/docs/zh-cn/application-dev/arkts-utils/ |
H A D | nonlinear-container.md | 34 | 增加元素 | set(key: K, value: V) | 增加一个键值对。 | 63 …访问元素 | forEach(callbackFn: (value?: T, key?: T, set?: HashSet\<T>) => void, thisArg?: Object) | 遍历… 65 …改元素 | forEach(callbackFn: (value?: T, key?: T, set?: HashSet\<T>) => void, thisArg?: Object) | 通过遍… 66 | 删除元素 | remove(value: T) | 删除set中匹配到的值。 | 67 | 删除元素 | clear() | 清空整个set。 | 83 | 增加元素 | set(key: K, value: V) | 增加一个键值对。 | 118 …访问元素 | forEach(callbackFn: (value?: T, key?: T, set?: TreeSet\<T>) => void, thisArg?: Object) | 遍历… 121 | 删除元素 | remove(value: T) | 删除set中匹配到的值。 | 122 | 删除元素 | clear() | 清空整个set。 | 181 | 删除元素 | clear() | 清空整个set。 | [all …]
|
/ohos5.0/foundation/ai/intelligent_voice_framework/llt/hdt/depend_libs/cmake/ |
H A D | CMakeLists.txt | 8 set(ROOT_DIR ${CMAKE_CURRENT_SOURCE_DIR}/../../../../../../../) 9 set(CLANG_DIR ${ROOT_DIR}prebuilts/clang/host/linux-x86/clang-r353983c/) 10 set(INTELL_VOICE_DIR ${ROOT_DIR}foundation/ai/intelligent_voice_framework/llt/hdt/) 11 set(LIB_PATH ${INTELL_VOICE_DIR}/build) 14 set(CMAKE_CXX_COMPILER "${CLANG_DIR}/bin/clang++") 15 set(CMAKE_C_COMPILER "${CLANG_DIR}/bin/clang") 16 set(CMAKE_CXX_STANDARD_REQUIRED ON) 17 set(CMAKE_CXX_STANDARD 17) 18 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=gnu99")
|
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/segmentbutton/interfaces/ |
H A D | segmentbutton.js | 233 set buttons(val) { 675 set multiColor(newValue) { 814 set focusIndex(newValue) { 842 set index(newValue) { 1040 set press(newValue) { 1048 set hover(newValue) { 1235 set focusIndex(newValue) { 1267 set pressArray(newValue) { 1275 set hoverArray(newValue) { 1978 set focusIndex(newValue) { [all …]
|
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/device/ |
H A D | shader_pipeline_binder.cpp | 126 uint32_t set { ~0U }; in UpdateBindingPropertyMetadata() local 142 … set = Math::min(set, PipelineLayoutConstants::MAX_DESCRIPTOR_SET_COUNT); in UpdateBindingPropertyMetadata() 343 BindImage(set, binding, in Bind() 347 BindSampler(set, binding, { handle }); in Bind() 370 const uint32_t setIdx = setToBinderIndex_[set]; in BindBuffer() 401 const uint32_t setIdx = setToBinderIndex_[set]; in BindBuffers() 433 const uint32_t setIdx = setToBinderIndex_[set]; in BindImage() 466 const uint32_t setIdx = setToBinderIndex_[set]; in BindImages() 578 const uint32_t set) const in GetDescriptorSetLayoutBindingResources() 613 rb.set = set; in GetResourceBinding() [all …]
|