Home
last modified time | relevance | path

Searched refs:CustomDataType (Results 1 – 25 of 39) sorted by relevance

12

/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/external/trilinos/packages/teuchos/parameterlist/example/ParameterList/
H A Dxml_data_types.cpp54 class CustomDataType{ class
56 CustomDataType():_theInt(0), _theString(""){} in CustomDataType() function in CustomDataType
57 CustomDataType(int theInt, std::string theString):_theInt(theInt), _theString(theString){} in CustomDataType() function in CustomDataType
75 bool operator==(const CustomDataType &other) const{ in operator ==()
84 std::ostream& operator<<(std::ostream &out, const CustomDataType &object){ in operator <<()
89 std::istream& operator>>(std::istream &in, CustomDataType &object){ in operator >>()
165 CustomDataType sampleCustom(3, "hello"); in main()
176 TEUCHOS_ADD_TYPE_CONVERTER(CustomDataType); in main()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.ComponentModel.Annotations/src/System/ComponentModel/DataAnnotations/
H A DDataTypeAttribute.cs59 CustomDataType = customDataType; in DataTypeAttribute()
71 public string CustomDataType { get; } property in System.ComponentModel.DataAnnotations.DataTypeAttribute
91 return CustomDataType; in GetDataTypeName()
118 if (DataType == DataType.Custom && string.IsNullOrWhiteSpace(CustomDataType)) in EnsureValidDataType()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ComponentModel.DataAnnotations/DataAnnotations/
H A DDataTypeAttribute.cs22 public string CustomDataType { get; private set; } property in System.ComponentModel.DataAnnotations.DataTypeAttribute
35 return this.CustomDataType; in GetDataTypeName()
83 this.CustomDataType = customDataType; in DataTypeAttribute()
109 if (this.DataType == DataType.Custom && String.IsNullOrEmpty(this.CustomDataType)) { in EnsureValidDataType()
/dports/devel/upp/upp/bazaar/plugin/assimp/code/Blender/
H A DBlenderCustomData.h10 enum CustomDataType { enum
78 …tr<CustomDataLayer> getCustomDataLayer(const CustomData &customdata, CustomDataType cdtype, const …
87 …const ElemBase * getCustomDataLayerData(const CustomData &customdata, CustomDataType cdtype, const…
H A DBlenderCustomData.cpp171 …tomDataLayer> getCustomDataLayer(const CustomData &customdata, const CustomDataType cdtype, const … in getCustomDataLayer()
180 …const ElemBase * getCustomDataLayerData(const CustomData &customdata, const CustomDataType cdtype,… in getCustomDataLayerData()
/dports/multimedia/assimp/assimp-5.1.3/code/AssetLib/Blender/
H A DBlenderCustomData.h10 enum CustomDataType { enum
78 …tr<CustomDataLayer> getCustomDataLayer(const CustomData &customdata, CustomDataType cdtype, const …
87 …const ElemBase * getCustomDataLayerData(const CustomData &customdata, CustomDataType cdtype, const…
H A DBlenderCustomData.cpp164 …tomDataLayer> getCustomDataLayer(const CustomData &customdata, const CustomDataType cdtype, const … in getCustomDataLayer()
173 const ElemBase *getCustomDataLayerData(const CustomData &customdata, const CustomDataType cdtype, c… in getCustomDataLayerData()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.ComponentModel.Annotations/tests/
H A DDataTypeAttributeTests.cs42 Assert.Null(attribute.CustomDataType); in Ctor_DataType()
85 Assert.Equal(customDataType, attribute.CustomDataType); in Ctor_String()
H A DUrlAttributeTests.cs32 Assert.Null(attribute.CustomDataType); in DataType_CustomDataType_ReturnsExpected()
H A DCreditCardAttributeTests.cs38 Assert.Null(attribute.CustomDataType); in DataType_CustomDataType()
H A DEmailAddressAttributeTests.cs45 Assert.Null(attribute.CustomDataType); in DataType_CustomDataType_ReturnExpected()
H A DPhoneAttributeTests.cs64 Assert.Null(attribute.CustomDataType); in DataType_CustomDataType_ReturnsExpected()
H A DFileExtensionsAttributeTests.cs52 Assert.Null(attribute.CustomDataType); in Ctor()
H A DEnumDataTypeAttributeTests.cs64 Assert.Equal("Enumeration", attribute.CustomDataType); in Ctor()
/dports/graphics/blender/blender-2.91.0/source/blender/editors/geometry/
H A Dgeometry_attributes.c68 CustomDataType type = (CustomDataType)RNA_enum_get(op->ptr, "data_type"); in geometry_attribute_add_exec()
/dports/graphics/blender/blender-2.91.0/source/blender/makesdna/
H A DDNA_customdata_types.h91 typedef enum CustomDataType { enum
160 } CustomDataType; typedef
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/util/test/
H A Dtest_histogram.cpp59 void CustomDataType(void);
66 CustomDataType(); in Run()
477 void CDataHistogramDemoApp::CustomDataType(void) in CustomDataType() function in CDataHistogramDemoApp
/dports/graphics/blender/blender-2.91.0/source/blender/io/alembic/intern/
H A Dabc_customdata.cc230 CustomDataType cd_data_type = static_cast<CustomDataType>(data_type); in write_custom_data()
H A Dabc_reader_mesh.cc389 CustomDataType cd_data_type = static_cast<CustomDataType>(data_type); in add_customdata_cb()
/dports/graphics/blender/blender-2.91.0/source/blender/gpu/
H A DGPU_material.h145 GPUNodeLink *GPU_attribute(GPUMaterial *mat, CustomDataType type, const char *name);
/dports/graphics/blender/blender-2.91.0/source/blender/gpu/intern/
H A Dgpu_node_graph.c265 CustomDataType type, in gpu_node_graph_add_attribute()
367 GPUNodeLink *GPU_attribute(GPUMaterial *mat, const CustomDataType type, const char *name) in GPU_attribute()
/dports/graphics/blender/blender-2.91.0/source/blender/editors/mesh/
H A Deditmesh_undo.c86 CustomDataType type;
152 const CustomDataType type = cdata->layers[layer_start].type; in um_arraystore_cd_compact()
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v2.0/
H A DSystem.ComponentModel.DataAnnotations.cs85 …public string CustomDataType { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { t… property in System.ComponentModel.DataAnnotations.DataTypeAttribute
/dports/graphics/blender/blender-2.91.0/source/blender/bmesh/operators/
H A Dbmo_join_triangles.c162 CustomDataType type, in bm_edge_delimit_cdata()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.ComponentModel.Annotations/ref/
H A DSystem.ComponentModel.Annotations.cs78 public string CustomDataType { get { throw null; } } property in System.ComponentModel.DataAnnotations.DataTypeAttribute

12