/ohos5.0/foundation/graphic/graphic_3d/lume/scenewidgetplugin/plugin/include/scene_plugin/interface/ |
H A D | mesh_arrays.h | 19 template<typename IndexType> 21 using Ptr = BASE_NS::shared_ptr<MeshGeometry<IndexType>>; 22 using WeakPtr = BASE_NS::weak_ptr<MeshGeometry<IndexType>>; 29 BASE_NS::vector<IndexType> indices; 34 return Ptr { new MeshGeometry<IndexType>() }; in Create() 38 template<typename IndexType> 41 template<typename IndexType> 44 template<typename IndexType> 47 template<typename IndexType> 50 template<typename IndexType> [all …]
|
/ohos5.0/foundation/graphic/graphic_3d/lume/metaobject/include/meta/interface/detail/ |
H A D | array_property.h | 27 using IndexType = IArrayAny::IndexType; in META_BEGIN_NAMESPACE() 33 IndexType GetSize() const in META_BEGIN_NAMESPACE() 40 AnyReturnValue GetAnyAt(IndexType index, IAny& any) const in META_BEGIN_NAMESPACE() 54 using IndexType = IArrayAny::IndexType; variable 60 AnyReturnValue SetAnyAt(IndexType index, const IAny& v) in SetAnyAt() 84 bool RemoveAt(IndexType index) in RemoveAt() 107 using IndexType = IArrayAny::IndexType; variable 111 ValueType GetValueAt(IndexType index) const in GetValueAt() 119 bool SetValueAt(IndexType index, const Type& v) in SetValueAt() 134 bool InsertValueAt(IndexType index, const Type& v) in InsertValueAt() [all …]
|
H A D | any.h | 359 AnyReturnValue SetAnyAt(IArrayAny::IndexType index, const IAny& value) override in SetAnyAt() 367 AnyReturnValue GetAnyAt(IArrayAny::IndexType index, IAny& value) const override in GetAnyAt() 375 AnyReturnValue InsertAnyAt(IArrayAny::IndexType index, const IAny& value) override in InsertAnyAt() 385 AnyReturnValue RemoveAt(IArrayAny::IndexType index) override in RemoveAt() 398 IArrayAny::IndexType GetSize() const noexcept override in GetSize()
|
/ohos5.0/foundation/graphic/graphic_3d/lume/metaobject/include/meta/interface/ |
H A D | intf_any.h | 107 using IndexType = size_t; 111 virtual AnyReturnValue SetAnyAt(IndexType index, const IAny& value) = 0; 112 virtual AnyReturnValue GetAnyAt(IndexType index, IAny& value) const = 0; 113 virtual AnyReturnValue InsertAnyAt(IndexType index, const IAny& value) = 0; 114 virtual AnyReturnValue RemoveAt(IndexType index) = 0; 117 virtual IndexType GetSize() const = 0; 120 AnyReturnValue GetValueAt(IndexType index, T& value) const in GetValueAt() 125 AnyReturnValue SetValueAt(IndexType index, const T& value) in SetValueAt() 152 inline T GetValueAt(const IArrayAny& array, IArrayAny::IndexType index, NonDeduced_t<T> defaultValu…
|
/ohos5.0/foundation/graphic/graphic_3d/lume/Lume_3D/src/ecs/components/ |
H A D | mesh_component_manager.cpp | 35 DECLARE_PROPERTY_TYPE(RENDER_NS::IndexType); 36 BEGIN_ENUM(IndexTypeMetaData, RENDER_NS::IndexType) 37 DECL_ENUM(RENDER_NS::IndexType, CORE_INDEX_TYPE_UINT16, "16 Bit") 38 DECL_ENUM(RENDER_NS::IndexType, CORE_INDEX_TYPE_UINT32, "32 Bit") 39 END_ENUM(IndexTypeMetaData, RENDER_NS::IndexType)
|
/ohos5.0/foundation/graphic/graphic_3d/lume/metaobject/include/meta/interface/property/ |
H A D | intf_stack_property.h | 41 using IndexType = size_t; variable 42 virtual ReturnError InsertModifier(IndexType pos, const IModifier::Ptr& mod) = 0; 43 virtual IModifier::Ptr RemoveModifier(IndexType pos) = 0;
|
H A D | array_property.h | 30 using IndexType = typename ArrayPropertyInterface<Type>::IndexType; in META_BEGIN_NAMESPACE() local
|
/ohos5.0/foundation/distributeddatamgr/kv_store/kvstoremock/frameworks/innerkitsimpl/kvdb/include/ |
H A D | store_util.h | 28 using DBIndexType = DistributedDB::IndexType; 35 static DBIndexType GetDBIndexType(IndexType type);
|
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/api/render/ |
H A D | render_data_structures.h | 63 IndexType indexType { IndexType::CORE_INDEX_TYPE_UINT32 }; 85 IndexType indexType { IndexType::CORE_INDEX_TYPE_UINT32 };
|
/ohos5.0/foundation/graphic/graphic_3d/lume/Lume_3D/api/3d/ecs/components/ |
H A D | mesh_component.h | 106 RENDER_NS::IndexType indexType { RENDER_NS::IndexType::CORE_INDEX_TYPE_UINT32 };
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/kvdb/include/ |
H A D | store_util.h | 29 using DBIndexType = DistributedDB::IndexType; 36 static DBIndexType GetDBIndexType(IndexType type);
|
/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() 427 UpdateMeshFromArrays<uint16_t>(arrays, RENDER_NS::IndexType::CORE_INDEX_TYPE_UINT16); in UpdateMeshFromArraysI16() 432 UpdateMeshFromArrays<uint32_t>(arrays, RENDER_NS::IndexType::CORE_INDEX_TYPE_UINT32); in UpdateMeshFromArraysI32() 437 UpdateMeshFromArrays<uint16_t>(arrays, RENDER_NS::IndexType::CORE_INDEX_TYPE_UINT16, true); in AddSubmeshesFromArrayI16() 442 UpdateMeshFromArrays<uint32_t>(arrays, RENDER_NS::IndexType::CORE_INDEX_TYPE_UINT32, true); in AddSubmeshesFromArraysI32()
|
/ohos5.0/foundation/graphic/graphic_3d/lume/metaobject/src/property/ |
H A D | stack_property.h | 47 ReturnError InsertModifier(IndexType pos, const IModifier::Ptr& mod) override; in META_BEGIN_NAMESPACE() 48 IModifier::Ptr RemoveModifier(IndexType pos) override; in META_BEGIN_NAMESPACE()
|
H A D | stack_property.cpp | 271 ReturnError StackProperty::InsertModifier(IndexType pos, const IModifier::Ptr& mod) in InsertModifier() 281 IndexType i = pos < modifiers_.size() ? pos : modifiers_.size(); in InsertModifier() 286 IModifier::Ptr StackProperty::RemoveModifier(IndexType pos) in RemoveModifier()
|
/ohos5.0/foundation/graphic/graphic_3d/lume/Lume_3D/api/3d/util/ |
H A D | intf_mesh_builder.h | 54 RENDER_NS::IndexType indexType { RENDER_NS::IndexType::CORE_INDEX_TYPE_UINT32 }; in CORE3D_BEGIN_NAMESPACE()
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/interfaces/include/ |
H A D | store_types.h | 233 enum IndexType : uint32_t { enum 246 IndexType type = BTREE;
|
/ohos5.0/foundation/graphic/graphic_3d/lume/Lume_3D/src/util/ |
H A D | mesh_util.cpp | 97 template<typename IndexType> 102 vector<IndexType>& indices; 366 template<typename IndexType> 367 void CalculateTangentImpl(const array_view<const IndexType>& indices, const array_view<const Math::… in CalculateTangentImpl() 376 const IndexType aa = indices[i + 0u]; in CalculateTangentImpl() 377 const IndexType bb = indices[i + 1u]; in CalculateTangentImpl() 378 const IndexType cc = indices[i + 2u]; in CalculateTangentImpl()
|
/ohos5.0/foundation/distributeddatamgr/kv_store/interfaces/innerkits/distributeddata/include/ |
H A D | types.h | 388 enum IndexType : uint32_t { enum 558 IndexType type = BTREE;
|
/ohos5.0/foundation/distributeddatamgr/kv_store/kvstoremock/frameworks/innerkitsimpl/kvdb/src/ |
H A D | store_util.cpp | 48 StoreUtil::DBIndexType StoreUtil::GetDBIndexType(IndexType type) in GetDBIndexType() 50 if (type == IndexType::BTREE) { in GetDBIndexType()
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/kvdb/src/ |
H A D | store_util.cpp | 73 StoreUtil::DBIndexType StoreUtil::GetDBIndexType(IndexType type) in GetDBIndexType() 75 if (type == IndexType::BTREE) { in GetDBIndexType()
|
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/api/render/device/ |
H A D | pipeline_state_desc.h | 73 enum IndexType { enum 1377 IndexType indexType { IndexType::CORE_INDEX_TYPE_UINT32 };
|
/ohos5.0/foundation/graphic/graphic_3d/lume/Lume_3D/api/3d/render/ |
H A D | render_data_defines_3d.h | 109 RENDER_NS::IndexType indexType { RENDER_NS::IndexType::CORE_INDEX_TYPE_UINT32 };
|
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/gles/ |
H A D | render_backend_gles.h | 224 IndexType type { CORE_INDEX_TYPE_UINT32 };
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/gaussdb_rd/ |
H A D | rd_single_ver_natural_store.cpp | 553 option.isHashTable = (IndexType)kvDBProp.GetIntProp(KvDBProperties::INDEX_TYPE, BTREE) == HASH; in InitDataBaseOption()
|
/ohos5.0/foundation/graphic/graphic_3d/lume/metaobject/include/meta/api/internal/ |
H A D | object_api.h | 621 META_NS::ArrayProperty<PropertyType>::IndexType index, const PropertyType& value) \
|