Home
last modified time | relevance | path

Searched refs:IndexType (Results 1 – 25 of 31) sorted by relevance

12

/ohos5.0/foundation/graphic/graphic_3d/lume/scenewidgetplugin/plugin/include/scene_plugin/interface/
H A Dmesh_arrays.h19 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 Darray_property.h27 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 Dany.h359 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 Dintf_any.h107 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 Dmesh_component_manager.cpp35 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 Dintf_stack_property.h41 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 Darray_property.h30 using IndexType = typename ArrayPropertyInterface<Type>::IndexType; in META_BEGIN_NAMESPACE() local
/ohos5.0/foundation/distributeddatamgr/kv_store/kvstoremock/frameworks/innerkitsimpl/kvdb/include/
H A Dstore_util.h28 using DBIndexType = DistributedDB::IndexType;
35 static DBIndexType GetDBIndexType(IndexType type);
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/api/render/
H A Drender_data_structures.h63 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 Dmesh_component.h106 RENDER_NS::IndexType indexType { RENDER_NS::IndexType::CORE_INDEX_TYPE_UINT32 };
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/kvdb/include/
H A Dstore_util.h29 using DBIndexType = DistributedDB::IndexType;
36 static DBIndexType GetDBIndexType(IndexType type);
/ohos5.0/foundation/graphic/graphic_3d/lume/scenewidgetplugin/plugin/src/
H A Dmesh_impl.cpp387 …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 Dstack_property.h47 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 Dstack_property.cpp271 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 Dintf_mesh_builder.h54 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 Dstore_types.h233 enum IndexType : uint32_t { enum
246 IndexType type = BTREE;
/ohos5.0/foundation/graphic/graphic_3d/lume/Lume_3D/src/util/
H A Dmesh_util.cpp97 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 Dtypes.h388 enum IndexType : uint32_t { enum
558 IndexType type = BTREE;
/ohos5.0/foundation/distributeddatamgr/kv_store/kvstoremock/frameworks/innerkitsimpl/kvdb/src/
H A Dstore_util.cpp48 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 Dstore_util.cpp73 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 Dpipeline_state_desc.h73 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 Drender_data_defines_3d.h109 RENDER_NS::IndexType indexType { RENDER_NS::IndexType::CORE_INDEX_TYPE_UINT32 };
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/gles/
H A Drender_backend_gles.h224 IndexType type { CORE_INDEX_TYPE_UINT32 };
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/gaussdb_rd/
H A Drd_single_ver_natural_store.cpp553 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 Dobject_api.h621 META_NS::ArrayProperty<PropertyType>::IndexType index, const PropertyType& value) \

12