/ohos5.0/foundation/graphic/graphic_3d/lume/scenewidgetplugin/plugin/include/scene_plugin/api/ |
H A D | mesh.h | 218 void UpdateMeshFromArraysI16(MeshGeometryArrayPtr<uint16_t> arrays) in UpdateMeshFromArraysI16() argument 221 mesh->UpdateMeshFromArraysI16(arrays); in UpdateMeshFromArraysI16() 229 void UpdateMeshFromArraysI32(MeshGeometryArrayPtr<uint32_t> arrays) in UpdateMeshFromArraysI32() argument 232 mesh->UpdateMeshFromArraysI32(arrays); in UpdateMeshFromArraysI32() 240 void AddSubmeshesFromArrayI16(MeshGeometryArrayPtr<uint16_t> arrays) in AddSubmeshesFromArrayI16() argument 243 mesh->AddSubmeshesFromArrayI16(arrays); in AddSubmeshesFromArrayI16() 251 void AddSubmeshesFromArraysI32(MeshGeometryArrayPtr<uint32_t> arrays) in AddSubmeshesFromArraysI32() argument 254 mesh->AddSubmeshesFromArraysI32(arrays); in AddSubmeshesFromArraysI32()
|
/ohos5.0/base/security/security_guard/frameworks/common/json/src/ |
H A D | json_cfg.cpp | 57 nlohmann::json arrays = jsonObj.at(key); in Unmarshal() local 58 for (const auto &element : arrays) { in Unmarshal() 70 nlohmann::json arrays = jsonObj.at(key); in Unmarshal() local 71 for (const auto &element : arrays) { in Unmarshal() 83 nlohmann::json arrays = jsonObj.at(key); in Unmarshal() local 84 for (const auto &element : arrays) { in Unmarshal()
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ |
H A D | pre_bundle_profile.cpp | 69 auto arrays = jsonBuf.at(INSTALL_LIST); in TransformTo() local 70 if (!arrays.is_array() || arrays.empty()) { in TransformTo() 76 for (const auto &array : arrays) { in TransformTo() 186 auto arrays = jsonBuf.at(INSTALL_LIST); in TransformTo() local 187 if (!arrays.is_array() || arrays.empty()) { in TransformTo() 193 for (const auto &array : arrays) { in TransformTo() 422 auto arrays = jsonBuf.at(EXTENSION_TYPE); in TransformJsonToExtensionTypeList() local 423 if (!arrays.is_array() || arrays.empty()) { in TransformJsonToExtensionTypeList() 428 for (const auto &array : arrays) { in TransformJsonToExtensionTypeList()
|
/ohos5.0/foundation/ability/dmsfwk/services/dtbschedmgr/include/mission/ |
H A D | json_util.h | 48 auto arrays = jsonObject.at(key); in CheckArrayType() local 49 if (arrays.empty()) { in CheckArrayType() 52 if (arrays.size() > AppExecFwk::Constants::MAX_JSON_ARRAY_LENGTH) { in CheckArrayType() 58 for (const auto &array : arrays) { in CheckArrayType() 68 for (const auto &array : arrays) { in CheckArrayType() 79 for (const auto &array : arrays) { in CheckArrayType()
|
/ohos5.0/foundation/ability/ability_runtime/frameworks/simulator/ability_simulator/include/bundle_parser/ |
H A D | json_util.h | 48 auto arrays = jsonObject.at(key); in CheckArrayType() local 49 if (arrays.empty()) { in CheckArrayType() 52 if (arrays.size() > Constants::MAX_JSON_ARRAY_LENGTH) { in CheckArrayType() 58 for (const auto &array : arrays) { in CheckArrayType() 69 for (const auto &array : arrays) { in CheckArrayType() 81 for (const auto &array : arrays) { in CheckArrayType()
|
/ohos5.0/foundation/graphic/graphic_3d/lume/scenewidgetplugin/plugin/src/ |
H A D | mesh_impl.cpp | 387 …SCENE_NS::MeshGeometryArrayPtr<INDEX_TYPE> arrays, const RENDER_NS::IndexType& indexType, bool app… in UpdateMeshFromArrays() argument 396 [arrays, indexType, append](auto privateIntf) { in UpdateMeshFromArrays() 401 … "TempMesh", arrays, indexType, existingEntity, append); in UpdateMeshFromArrays() 425 void UpdateMeshFromArraysI16(SCENE_NS::MeshGeometryArrayPtr<uint16_t> arrays) override in UpdateMeshFromArraysI16() argument 427 UpdateMeshFromArrays<uint16_t>(arrays, RENDER_NS::IndexType::CORE_INDEX_TYPE_UINT16); in UpdateMeshFromArraysI16() 430 void UpdateMeshFromArraysI32(SCENE_NS::MeshGeometryArrayPtr<uint32_t> arrays) override in UpdateMeshFromArraysI32() argument 432 UpdateMeshFromArrays<uint32_t>(arrays, RENDER_NS::IndexType::CORE_INDEX_TYPE_UINT32); in UpdateMeshFromArraysI32() 435 void AddSubmeshesFromArrayI16(SCENE_NS::MeshGeometryArrayPtr<uint16_t> arrays) override in AddSubmeshesFromArrayI16() argument 437 UpdateMeshFromArrays<uint16_t>(arrays, RENDER_NS::IndexType::CORE_INDEX_TYPE_UINT16, true); in AddSubmeshesFromArrayI16() 440 void AddSubmeshesFromArraysI32(SCENE_NS::MeshGeometryArrayPtr<uint32_t> arrays) override in AddSubmeshesFromArraysI32() argument [all …]
|
H A D | scene_impl.cpp | 1418 const BASE_NS::string_view name, SCENE_NS::MeshGeometryArrayPtr<uint16_t> arrays) override in CreateMeshFromArraysI16() argument 1420 … return CreateMeshFromArrays<uint16_t>(name, arrays, RENDER_NS::IndexType::CORE_INDEX_TYPE_UINT16); in CreateMeshFromArraysI16() 1424 const BASE_NS::string_view name, SCENE_NS::MeshGeometryArrayPtr<uint32_t> arrays) override in CreateMeshFromArraysI32() argument 1426 … return CreateMeshFromArrays<uint32_t>(name, arrays, RENDER_NS::IndexType::CORE_INDEX_TYPE_UINT32); in CreateMeshFromArraysI32() 1431 SCENE_NS::MeshGeometryArrayPtr<IndicesType> arrays, RENDER_NS::IndexType indexType) in CreateMeshFromArrays() argument 1436 [arrays, nameString, indexType](auto sceneHolder) { in CreateMeshFromArrays() 1438 *nameString, arrays, indexType); in CreateMeshFromArrays()
|
/ohos5.0/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_base/include/ |
H A D | json_util.h | 47 auto arrays = jsonObject.at(key); in CheckArrayType() local 48 if (arrays.empty()) { in CheckArrayType() 51 if (arrays.size() > Constants::MAX_JSON_ARRAY_LENGTH) { in CheckArrayType() 57 for (const auto &array : arrays) { in CheckArrayType() 68 for (const auto &array : arrays) { in CheckArrayType() 80 for (const auto &array : arrays) { in CheckArrayType()
|
/ohos5.0/foundation/ability/form_fwk/services/include/ |
H A D | json_util_form.h | 47 auto arrays = jsonObject.at(key); in CheckArrayType() local 48 if (arrays.empty()) { in CheckArrayType() 54 for (const auto &array : arrays) { in CheckArrayType() 65 for (const auto &array : arrays) { in CheckArrayType() 77 for (const auto &array : arrays) { in CheckArrayType()
|
/ohos5.0/foundation/ability/dmsfwk/services/dtbschedmgr/include/ |
H A D | json_util.h | 49 auto arrays = jsonObject.at(key); in CheckArrayType() local 50 if (arrays.empty()) { in CheckArrayType() 56 for (const auto &array : arrays) { in CheckArrayType() 67 for (const auto &array : arrays) { in CheckArrayType() 79 for (const auto &array : arrays) { in CheckArrayType()
|
/ohos5.0/foundation/graphic/graphic_3d/lume/scenewidgetplugin/plugin/include/scene_plugin/interface/ |
H A D | intf_mesh.h | 130 virtual void UpdateMeshFromArraysI16(MeshGeometryArrayPtr<uint16_t> arrays) = 0; 136 virtual void UpdateMeshFromArraysI32(MeshGeometryArrayPtr<uint32_t> arrays) = 0; 142 virtual void AddSubmeshesFromArrayI16(MeshGeometryArrayPtr<uint16_t> arrays) = 0; 148 virtual void AddSubmeshesFromArraysI32(MeshGeometryArrayPtr<uint32_t> arrays) = 0;
|
H A D | intf_scene.h | 183 const BASE_NS::string_view name, MeshGeometryArrayPtr<uint16_t> arrays) = 0; 192 const BASE_NS::string_view name, MeshGeometryArrayPtr<uint32_t> arrays) = 0;
|
/ohos5.0/foundation/ability/ability_runtime/services/abilitymgr/src/rdb/ |
H A D | parser_util.cpp | 83 auto arrays = jsonBuf.at(INSTALL_LIST); in FilterInfoFromJson() local 84 if (!arrays.is_array() || arrays.empty()) { in FilterInfoFromJson() 92 for (const auto &array : arrays) { in FilterInfoFromJson()
|
/ohos5.0/docs/en/application-dev/reference/apis-arkgraphics2d/ |
H A D | _o_h_ext_data_handle.md | 23 | uint32_t [reserveInts](#reserveints) | Number of reserved arrays.| 60 Number of reserved arrays.
|
/ohos5.0/base/security/security_guard/frameworks/common/json/include/ |
H A D | json_cfg.h | 54 nlohmann::json arrays = jsonObj.at(key); in Unmarshal() local 55 for (const auto &element : arrays) { in Unmarshal()
|
/ohos5.0/foundation/arkui/ace_engine/adapter/ohos/capability/clipboard/ |
H A D | clipboard_impl.cpp | 595 std::vector<std::vector<uint8_t>> arrays; in GetSpanStringDataHelper() local 598 clip->ProcessSpanStringData(arrays, pasteData, text, isMultiTypeRecord); in GetSpanStringDataHelper() 605 …[callback, arrays, result, isMultiTypeRecord]() mutable { callback(arrays, result, isMultiTypeReco… in GetSpanStringDataHelper() 615 void ClipboardImpl::ProcessSpanStringData(std::vector<std::vector<uint8_t>>& arrays, in ProcessSpanStringData() argument 637 arrays.emplace_back(*spanStringBuffer); in ProcessSpanStringData() 647 arrays.emplace_back(arr); in ProcessSpanStringData()
|
/ohos5.0/docs/en/application-dev/reference/apis-neural-network-runtime-kit/ |
H A D | _o_h___n_n___quant_param.md | 38 | uint32_t [quantCount](#quantcount) | Length of the numBits, scale, and zeroPoint arrays. In the p… 66 Length of the numBits, scale, and zeroPoint arrays. In the per-layer quantization scenario, **quant…
|
H A D | _o_h___n_n___u_int32_array.md | 6 Defines the structure for storing 32-bit unsigned integer arrays.
|
/ohos5.0/docs/en/application-dev/quick-start/ |
H A D | arkts-high-performance-programming.md | 160 …s in slower access speeds. Therefore, during development, avoid changing arrays into sparse arrays. 175 Avoid using union arrays. Avoid mixed use of integer data and floating-point data in value arrays.
|
/ohos5.0/docs/en/application-dev/reference/apis-input-kit/ |
H A D | js-apis-infraredemitter-sys.md | 32 …arrays must be an even number. For example, in [100, 200, 300, 400], 100 μs is a high level signal…
|
/ohos5.0/base/account/os_account/services/accountmgr/src/bundle_manager_adapter/ |
H A D | bundle_manager_adapter_proxy.cpp | 118 auto arrays = jsonObject.at(BUNDLE_INFO_EXTENSION_ABILITY_INFOS); in ParseExtensionAbilityInfos() local 119 if (arrays.empty()) { in ParseExtensionAbilityInfos() 122 if (arrays.size() > Constants::MAX_JSON_ARRAY_LENGTH) { in ParseExtensionAbilityInfos() 126 for (const auto &iter : arrays) { in ParseExtensionAbilityInfos()
|
/ohos5.0/docs/en/application-dev/arkts-utils/ |
H A D | container-overview.md | 7 …containers, The bottom layer of linear containers is implemented through arrays, and the bottom la…
|
/ohos5.0/base/account/os_account/services/accountmgr/test/moduletest/common/ |
H A D | bundle_manager_adapter_module_test.cpp | 383 Json arrays[] = { variable 387 {"extensionAbilityInfo", arrays},
|
/ohos5.0/docs/en/application-dev/ui/ |
H A D | ui-js-component-tabs.md | 156 …ab switching. Then define the arrays and attributes. Add the **change** event to change the attrib…
|
/ohos5.0/foundation/graphic/graphic_2d/frameworks/opengl_wrapper/include/ |
H A D | gl1ext_entries.in | 274 HOOK_API_ENTRY(void, glDeleteVertexArraysOES, GLsizei n, const GLuint *arrays) 275 CALL_HOOK_API(glDeleteVertexArraysOES, n, arrays) 277 HOOK_API_ENTRY(void, glGenVertexArraysOES, GLsizei n, GLuint *arrays) 278 CALL_HOOK_API(glGenVertexArraysOES, n, arrays)
|