Home
last modified time | relevance | path

Searched refs:valuesType (Results 1 – 25 of 148) sorted by relevance

123456

/dports/graphics/tweeny/tweeny-3-6-g1c2eb4e/include/
H A Dtween.h164 …const typename detail::tweentraits<T, Ts...>::valuesType & step(int32_t dt, bool suppressCallbacks…
176 …const typename detail::tweentraits<T, Ts...>::valuesType & step(uint32_t dt, bool suppressCallback…
197 …const typename detail::tweentraits<T, Ts...>::valuesType & step(float dp, bool suppressCallbacks =…
208 …const typename detail::tweentraits<T, Ts...>::valuesType & seek(float p, bool suppressCallbacks = …
220 …const typename detail::tweentraits<T, Ts...>::valuesType & seek(int32_t d, bool suppressCallbacks …
232 …const typename detail::tweentraits<T, Ts...>::valuesType & seek(uint32_t d, bool suppressCallbacks…
432 const typename detail::tweentraits<T, Ts...>::valuesType & peek() const;
441 const typename detail::tweentraits<T, Ts...>::valuesType peek(float progress) const;
451 const typename detail::tweentraits<T, Ts...>::valuesType peek(uint32_t time) const;
513 typename traits::valuesType current;
[all …]
H A Dtween.tcc82 …inline const typename detail::tweentraits<T, Ts...>::valuesType & tween<T, Ts...>::step(int32_t dt… in step()
87 …inline const typename detail::tweentraits<T, Ts...>::valuesType & tween<T, Ts...>::step(uint32_t d… in step()
92 …inline const typename detail::tweentraits<T, Ts...>::valuesType & tween<T, Ts...>::step(float dp, … in step()
99 …inline const typename detail::tweentraits<T, Ts...>::valuesType & tween<T, Ts...>::seek(float p, b… in seek()
108 …inline const typename detail::tweentraits<T, Ts...>::valuesType & tween<T, Ts...>::seek(int32_t t,… in seek()
200 const typename detail::tweentraits<T, Ts...>::valuesType & tween<T, Ts...>::peek() const { in peek()
205 …const typename detail::tweentraits<T, Ts...>::valuesType tween<T, Ts...>::peek(float progress) con… in peek()
206 typename detail::tweentraits<T, Ts...>::valuesType values; in peek()
212 …const typename detail::tweentraits<T, Ts...>::valuesType tween<T, Ts...>::peek(uint32_t time) cons… in peek()
213 typename detail::tweentraits<T, Ts...>::valuesType values; in peek()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web.DataVisualization/Common/General/
H A DAxisScale.cs1369 ChartValueType valuesType) in CalcInterval() argument
1382 if( inter <= 1.0 && valuesType != ChartValueType.Date) in CalcInterval()
1432 else if( inter <= 2.0 && valuesType != ChartValueType.Date) in CalcInterval()
1437 else if( inter <= 3.0 && valuesType != ChartValueType.Date) in CalcInterval()
1444 else if( inter <= 10 && valuesType != ChartValueType.Date) in CalcInterval()
1450 else if( inter <= 20 && valuesType != ChartValueType.Date) in CalcInterval()
1455 else if( inter <= 60 && valuesType != ChartValueType.Date) in CalcInterval()
1460 else if( inter <= 120 && valuesType != ChartValueType.Date) in CalcInterval()
1465 else if( inter <= 180 && valuesType != ChartValueType.Date) in CalcInterval()
1471 else if( inter <= 60*12 && valuesType != ChartValueType.Date) in CalcInterval()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/
H A DDirectoryAttribute.cs71 public object[] GetValues(Type valuesType) in GetValues() argument
74 if (valuesType == typeof(byte[])) in GetValues()
98 else if (valuesType == typeof(string)) in GetValues()
122 throw new ArgumentException(SR.ValidDirectoryAttributeType, nameof(valuesType)); in GetValues()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data/System/Data/
H A Dxmlsaver.cs2240 Type valuesType = columnValue.GetType(); in GenerateColumn()
2242 if(valuesType == typeof(char) || valuesType == typeof(string)) { in GenerateColumn()
2262 … throw ExceptionBuilder.PolymorphismNotSupported(valuesType.AssemblyQualifiedName); in GenerateColumn()
2273 … if (valuesType == typeof(Type) || valuesType == typeof(Guid)|| valuesType == typeof(Char) || in GenerateColumn()
2281 … string xsdTypeName = Keywords.XSD_PREFIXCOLON+ XmlTreeGen.XmlDataTypeName(valuesType); in GenerateColumn()
2285 if (!DataStorage.IsSqlType(valuesType)) { in GenerateColumn()
2613 Type valuesType = value.GetType(); in XmlDataRowWriter()
2615 if(valuesType == typeof(char) || valuesType == typeof(string)) { in XmlDataRowWriter()
2626 … if (!startElementSkipped && valuesType != col.DataType) { // for polymorphism. in XmlDataRowWriter()
2644 … if (valuesType == typeof(Type) || valuesType == typeof(Guid)|| valuesType == typeof(Char) || in XmlDataRowWriter()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Data.Common/src/System/Data/
H A Dxmlsaver.cs2562 Type valuesType = columnValue.GetType(); in GenerateColumn()
2565 if (valuesType == typeof(char) || valuesType == typeof(string)) in GenerateColumn()
2606 … if (valuesType == typeof(Type) || valuesType == typeof(Guid) || valuesType == typeof(char) || in GenerateColumn()
2607 DataStorage.IsSqlType(valuesType)) in GenerateColumn()
2621 if (!DataStorage.IsSqlType(valuesType)) in GenerateColumn()
2995 Type valuesType = value.GetType(); in XmlDataRowWriter()
2998 if (valuesType == typeof(char) || valuesType == typeof(string)) in XmlDataRowWriter()
3012 if (!startElementSkipped && valuesType != col.DataType) in XmlDataRowWriter()
3035 … if (valuesType == typeof(Type) || valuesType == typeof(Guid) || valuesType == typeof(char) || in XmlDataRowWriter()
3036 DataStorage.IsSqlType(valuesType)) in XmlDataRowWriter()
[all …]
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/mlir/lib/Parser/
H A DAttributeParser.cpp891 ShapedType valuesType = RankedTensorType::get({0}, type.getElementType()); in parseSparseElementsAttr() local
894 DenseElementsAttr::get(valuesType, ArrayRef<Attribute>())); in parseSparseElementsAttr()
938 ShapedType valuesType = in parseSparseElementsAttr() local
942 auto values = valuesParser.getAttr(valuesLoc, valuesType); in parseSparseElementsAttr()
945 if (valuesType.getRank() != 1) in parseSparseElementsAttr()
950 auto sameElementNum = indicesType.getDimSize(0) == valuesType.getDimSize(0); in parseSparseElementsAttr()
956 << valuesType.getShape() << "])"; in parseSparseElementsAttr()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/mlir/lib/Parser/
H A DAttributeParser.cpp939 ShapedType valuesType = RankedTensorType::get({0}, type.getElementType()); in parseSparseElementsAttr() local
942 DenseElementsAttr::get(valuesType, ArrayRef<Attribute>())); in parseSparseElementsAttr()
986 ShapedType valuesType = in parseSparseElementsAttr() local
990 auto values = valuesParser.getAttr(valuesLoc, valuesType); in parseSparseElementsAttr()
993 if (valuesType.getRank() != 1) in parseSparseElementsAttr()
998 auto sameElementNum = indicesType.getDimSize(0) == valuesType.getDimSize(0); in parseSparseElementsAttr()
1004 << valuesType.getShape() << "])"; in parseSparseElementsAttr()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/mlir/lib/Parser/
H A DAttributeParser.cpp912 ShapedType valuesType = RankedTensorType::get({0}, type.getElementType()); in parseSparseElementsAttr() local
915 DenseElementsAttr::get(valuesType, ArrayRef<Attribute>())); in parseSparseElementsAttr()
959 ShapedType valuesType = in parseSparseElementsAttr() local
963 auto values = valuesParser.getAttr(valuesLoc, valuesType); in parseSparseElementsAttr()
966 if (valuesType.getRank() != 1) in parseSparseElementsAttr()
971 auto sameElementNum = indicesType.getDimSize(0) == valuesType.getDimSize(0); in parseSparseElementsAttr()
977 << valuesType.getShape() << "])"; in parseSparseElementsAttr()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/mlir/lib/Parser/
H A DAttributeParser.cpp927 ShapedType valuesType = RankedTensorType::get({0}, type.getElementType()); in parseSparseElementsAttr() local
930 DenseElementsAttr::get(valuesType, ArrayRef<Attribute>())); in parseSparseElementsAttr()
974 ShapedType valuesType = in parseSparseElementsAttr() local
978 auto values = valuesParser.getAttr(valuesLoc, valuesType); in parseSparseElementsAttr()
981 if (valuesType.getRank() != 1) in parseSparseElementsAttr()
986 auto sameElementNum = indicesType.getDimSize(0) == valuesType.getDimSize(0); in parseSparseElementsAttr()
992 << valuesType.getShape() << "])"; in parseSparseElementsAttr()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/mlir/lib/Parser/
H A DAttributeParser.cpp912 ShapedType valuesType = RankedTensorType::get({0}, type.getElementType()); in parseSparseElementsAttr() local
915 DenseElementsAttr::get(valuesType, ArrayRef<Attribute>())); in parseSparseElementsAttr()
959 ShapedType valuesType = in parseSparseElementsAttr() local
963 auto values = valuesParser.getAttr(valuesLoc, valuesType); in parseSparseElementsAttr()
966 if (valuesType.getRank() != 1) in parseSparseElementsAttr()
971 auto sameElementNum = indicesType.getDimSize(0) == valuesType.getDimSize(0); in parseSparseElementsAttr()
977 << valuesType.getShape() << "])"; in parseSparseElementsAttr()
/dports/devel/llvm12/llvm-project-12.0.1.src/mlir/lib/Parser/
H A DAttributeParser.cpp939 ShapedType valuesType = RankedTensorType::get({0}, type.getElementType()); in parseSparseElementsAttr() local
942 DenseElementsAttr::get(valuesType, ArrayRef<Attribute>())); in parseSparseElementsAttr()
986 ShapedType valuesType = in parseSparseElementsAttr() local
990 auto values = valuesParser.getAttr(valuesLoc, valuesType); in parseSparseElementsAttr()
993 if (valuesType.getRank() != 1) in parseSparseElementsAttr()
998 auto sameElementNum = indicesType.getDimSize(0) == valuesType.getDimSize(0); in parseSparseElementsAttr()
1004 << valuesType.getShape() << "])"; in parseSparseElementsAttr()
/dports/devel/llvm13/llvm-project-13.0.1.src/mlir/lib/Parser/
H A DAttributeParser.cpp912 ShapedType valuesType = RankedTensorType::get({0}, type.getElementType());
915 DenseElementsAttr::get(valuesType, ArrayRef<Attribute>()));
959 ShapedType valuesType =
963 auto values = valuesParser.getAttr(valuesLoc, valuesType);
966 if (valuesType.getRank() != 1)
971 auto sameElementNum = indicesType.getDimSize(0) == valuesType.getDimSize(0);
977 << valuesType.getShape() << "])";
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/google/apiclient-services/src/Google/Service/DLP/
H A DGooglePrivacyDlpV2Row.php21 protected $valuesType = 'Google_Service_DLP_GooglePrivacyDlpV2Value'; variable in Google_Service_DLP_GooglePrivacyDlpV2Row
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/google/apiclient-services/src/Google/Service/CloudSearch/
H A DObjectValues.php21 protected $valuesType = 'Google_Service_CloudSearch_StructuredDataObject'; variable in Google_Service_CloudSearch_ObjectValues
H A DDateValues.php21 protected $valuesType = 'Google_Service_CloudSearch_Date'; variable in Google_Service_CloudSearch_DateValues
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/google/apiclient-services/src/Google/Service/Firestore/
H A DArrayValue.php21 protected $valuesType = 'Google_Service_Firestore_Value'; variable in Google_Service_Firestore_ArrayValue
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/google/apiclient-services/src/Google/Service/Script/
H A DListValue.php21 protected $valuesType = 'Google_Service_Script_Value'; variable in Google_Service_Script_ListValue
H A DGoogleAppsScriptTypeFunctionSet.php21 protected $valuesType = 'Google_Service_Script_GoogleAppsScriptTypeFunction'; variable in Google_Service_Script_GoogleAppsScriptTypeFunctionSet
/dports/www/owncloud/owncloud/apps/files_external/3rdparty/google/apiclient-services/src/Google/Service/ShoppingContent/
H A DTransitTableTransitTimeRow.php21 …protected $valuesType = 'Google_Service_ShoppingContent_TransitTableTransitTimeRowTransitTimeValue… variable in Google_Service_ShoppingContent_TransitTableTransitTimeRow
/dports/www/owncloud/owncloud/apps/files_external/3rdparty/google/apiclient-services/src/Google/Service/CloudSearch/
H A DDateValues.php21 protected $valuesType = 'Google_Service_CloudSearch_Date'; variable in Google_Service_CloudSearch_DateValues
H A DObjectValues.php21 protected $valuesType = 'Google_Service_CloudSearch_StructuredDataObject'; variable in Google_Service_CloudSearch_ObjectValues
/dports/www/owncloud/owncloud/apps/files_external/3rdparty/google/apiclient-services/src/Google/Service/Firestore/
H A DArrayValue.php21 protected $valuesType = 'Google_Service_Firestore_Value'; variable in Google_Service_Firestore_ArrayValue
/dports/www/owncloud/owncloud/apps/files_external/3rdparty/google/apiclient-services/src/Google/Service/DLP/
H A DGooglePrivacyDlpV2Row.php21 protected $valuesType = 'Google_Service_DLP_GooglePrivacyDlpV2Value'; variable in Google_Service_DLP_GooglePrivacyDlpV2Row
/dports/www/owncloud/owncloud/apps/files_external/3rdparty/google/apiclient-services/src/Google/Service/Sheets/
H A DRowData.php21 protected $valuesType = 'Google_Service_Sheets_CellData'; variable in Google_Service_Sheets_RowData

123456