Home
last modified time | relevance | path

Searched refs:controlValue (Results 1 – 25 of 153) sorted by relevance

1234567

/dports/audio/libnoise/noise/src/module/
H A Dselect.cpp42 double controlValue = m_pSourceModule[2]->GetValue (x, y, z); in GetValue() local
45 if (controlValue < (m_lowerBound - m_edgeFalloff)) { in GetValue()
50 } else if (controlValue < (m_lowerBound + m_edgeFalloff)) { in GetValue()
57 (controlValue - lowerCurve) / (upperCurve - lowerCurve)); in GetValue()
62 } else if (controlValue < (m_upperBound - m_edgeFalloff)) { in GetValue()
67 } else if (controlValue < (m_upperBound + m_edgeFalloff)) { in GetValue()
74 (controlValue - lowerCurve) / (upperCurve - lowerCurve)); in GetValue()
85 if (controlValue < m_lowerBound || controlValue > m_upperBound) { in GetValue()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web.DynamicData/DynamicData/
H A DDynamicValidator.cs106 string controlValue = GetControlValidationValue(ControlToValidate); in EvaluateIsValid()
107 if (controlValue == null) { in EvaluateIsValid()
120 controlValue = (string)Column.ConvertEditedValue(controlValue); in EvaluateIsValid()
123 if (!TryConvertControlValue(controlValue, Column.ColumnType, out value)) { in EvaluateIsValid()
131 …internal static bool TryConvertControlValue(string controlValue, Type columnType, out object value… in TryConvertControlValue() argument
133 if (controlValue == null) { in TryConvertControlValue()
136 value = controlValue; in TryConvertControlValue()
137 } else if (controlValue.Length != 0) { in TryConvertControlValue()
138 value = Misc.ChangeType(controlValue, columnType); in TryConvertControlValue()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web/UI/WebControls/
H A DRegularExpressionValidator.cs84 string controlValue = GetControlValidationValue(ControlToValidate); in EvaluateIsValid()
85 Debug.Assert(controlValue != null, "Should have already been checked"); in EvaluateIsValid()
86 if (controlValue == null || controlValue.Trim().Length == 0) { in EvaluateIsValid()
93 … Match m = RegexUtil.Match(controlValue, ValidationExpression, RegexOptions.None, MatchTimeout); in EvaluateIsValid()
95 return(m.Success && m.Index == 0 && m.Length == controlValue.Length); in EvaluateIsValid()
H A DCustomValidator.cs129 string controlValue = String.Empty; in EvaluateIsValid()
132 controlValue = GetControlValidationValue(controlToValidate); in EvaluateIsValid()
133 Debug.Assert(controlValue != null, "Should have been caught be property check"); in EvaluateIsValid()
136 if ((controlValue == null || controlValue.Trim().Length == 0) && in EvaluateIsValid()
142 return OnServerValidate(controlValue); in EvaluateIsValid()
H A DRequiredFieldValidator.cs69 string controlValue = GetControlValidationValue(ControlToValidate); in EvaluateIsValid()
70 if (controlValue == null) { in EvaluateIsValid()
76 return(!controlValue.Trim().Equals(InitialValue.Trim())); in EvaluateIsValid()
/dports/audio/wolf-shaper-lv2/wolf-shaper-0.1.8-33-ge84de58/plugins/wolf-shaper/Libs/DSPFilters/include/DspFilters/
H A DParams.h174 double toNativeValue (double controlValue) const in toNativeValue() argument
176 return (this->*m_toNativeValue) (controlValue); in toNativeValue()
192 double Int_toNativeValue (double controlValue) const;
195 double Real_toNativeValue (double controlValue) const;
198 double Log_toNativeValue (double controlValue) const;
201 double Pow2_toNativeValue (double controlValue) const;
/dports/audio/wolf-shaper-lv2/wolf-shaper-0.1.8-33-ge84de58/plugins/wolf-shaper/Libs/DSPFilters/source/
H A DParam.cpp69 double ParamInfo::Int_toNativeValue (double controlValue) const in Int_toNativeValue()
71 return std::floor (m_arg1 + controlValue * (m_arg2 - m_arg1) + 0.5); in Int_toNativeValue()
81 double ParamInfo::Real_toNativeValue (double controlValue) const in Real_toNativeValue()
83 return m_arg1 + controlValue * (m_arg2 - m_arg1); in Real_toNativeValue()
96 double ParamInfo::Log_toNativeValue (double controlValue) const in Log_toNativeValue()
101 return pow (base, l0 + controlValue * (l1 - l0)); in Log_toNativeValue()
111 double ParamInfo::Pow2_toNativeValue (double controlValue) const in Pow2_toNativeValue()
113 return pow (2., (controlValue * (m_arg2 - m_arg1)) + m_arg1); in Pow2_toNativeValue()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.DirectoryServices.Protocols/tests/
H A DDirectoryControlTests.cs21 byte[] controlValue = control.GetValue(); in Ctor_Type_Value_IsCritical_ServerSide()
22 Assert.NotSame(controlValue, value); in Ctor_Type_Value_IsCritical_ServerSide()
23 Assert.Equal(value ?? Array.Empty<byte>(), controlValue); in Ctor_Type_Value_IsCritical_ServerSide()
/dports/lang/mono/mono-5.10.1.57/mcs/class/Novell.Directory.Ldap/Novell.Directory.Ldap.Rfc2251/
H A DRfcControl.cs162 …public RfcControl(RfcLdapOID controlType, Asn1Boolean criticality, Asn1OctetString controlValue):b… in RfcControl() argument
167 if (controlValue != null) in RfcControl()
168 add(controlValue); in RfcControl()
/dports/finance/quantlib/QuantLib-1.20/ql/models/marketmodels/callability/
H A Dcollectnodedata.cpp163 CashFlow controlValue = control.value(currentState); in collectNodeData() local
164 data.controlValue = in collectNodeData()
165 controlValue.amount * in collectNodeData()
166 controlDiscounters[controlValue.timeIndex] in collectNodeData()
204 data.exerciseValue = data.controlValue = 0.0; in collectNodeData()
/dports/net/py-ldap/python-ldap-3.4.0/Lib/ldap/controls/
H A D__init__.py98 def __init__(self,controlType=None,criticality=False,controlValue=None,encodedControlValue=None): argument
101 self.controlValue = controlValue
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/qmldesigner/components/timelineeditor/
H A Dtimelinecontrols.h47 virtual QVariant controlValue() const = 0;
69 QVariant controlValue() const override;
97 QVariant controlValue() const override;
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/clang/test/SemaCXX/
H A Dwarn-unreachable.cpp207 const bool controlValue = false; in test_treat_const_bool_local_as_config_value() local
208 if (!controlValue) in test_treat_const_bool_local_as_config_value()
215 bool controlValue = false; in test_treat_non_const_bool_local_as_non_config_value() local
216 if (!controlValue) in test_treat_non_const_bool_local_as_non_config_value()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/clang/test/SemaCXX/
H A Dwarn-unreachable.cpp207 const bool controlValue = false; in test_treat_const_bool_local_as_config_value() local
208 if (!controlValue) in test_treat_const_bool_local_as_config_value()
215 bool controlValue = false; in test_treat_non_const_bool_local_as_non_config_value() local
216 if (!controlValue) in test_treat_non_const_bool_local_as_non_config_value()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/clang/test/SemaCXX/
H A Dwarn-unreachable.cpp207 const bool controlValue = false; in test_treat_const_bool_local_as_config_value() local
208 if (!controlValue) in test_treat_const_bool_local_as_config_value()
215 bool controlValue = false; in test_treat_non_const_bool_local_as_non_config_value() local
216 if (!controlValue) in test_treat_non_const_bool_local_as_non_config_value()
/dports/devel/llvm11/llvm-11.0.1.src/tools/clang/test/SemaCXX/
H A Dwarn-unreachable.cpp207 const bool controlValue = false; in test_treat_const_bool_local_as_config_value() local
208 if (!controlValue) in test_treat_const_bool_local_as_config_value()
215 bool controlValue = false; in test_treat_non_const_bool_local_as_non_config_value() local
216 if (!controlValue) in test_treat_non_const_bool_local_as_non_config_value()
/dports/devel/llvm12/llvm-project-12.0.1.src/clang/test/SemaCXX/
H A Dwarn-unreachable.cpp207 const bool controlValue = false; in test_treat_const_bool_local_as_config_value() local
208 if (!controlValue) in test_treat_const_bool_local_as_config_value()
215 bool controlValue = false; in test_treat_non_const_bool_local_as_non_config_value() local
216 if (!controlValue) in test_treat_non_const_bool_local_as_non_config_value()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/clang/test/SemaCXX/
H A Dwarn-unreachable.cpp207 const bool controlValue = false; in test_treat_const_bool_local_as_config_value() local
208 if (!controlValue) in test_treat_const_bool_local_as_config_value()
215 bool controlValue = false; in test_treat_non_const_bool_local_as_non_config_value() local
216 if (!controlValue) in test_treat_non_const_bool_local_as_non_config_value()
/dports/devel/llvm90/llvm-9.0.1.src/tools/clang/test/SemaCXX/
H A Dwarn-unreachable.cpp207 const bool controlValue = false; in test_treat_const_bool_local_as_config_value() local
208 if (!controlValue) in test_treat_const_bool_local_as_config_value()
215 bool controlValue = false; in test_treat_non_const_bool_local_as_non_config_value() local
216 if (!controlValue) in test_treat_non_const_bool_local_as_non_config_value()
/dports/devel/llvm10/llvm-10.0.1.src/tools/clang/test/SemaCXX/
H A Dwarn-unreachable.cpp207 const bool controlValue = false; in test_treat_const_bool_local_as_config_value() local
208 if (!controlValue) in test_treat_const_bool_local_as_config_value()
215 bool controlValue = false; in test_treat_non_const_bool_local_as_non_config_value() local
216 if (!controlValue) in test_treat_non_const_bool_local_as_non_config_value()
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/clang/test/SemaCXX/
H A Dwarn-unreachable.cpp207 const bool controlValue = false; in test_treat_const_bool_local_as_config_value() local
208 if (!controlValue) in test_treat_const_bool_local_as_config_value()
215 bool controlValue = false; in test_treat_non_const_bool_local_as_non_config_value() local
216 if (!controlValue) in test_treat_non_const_bool_local_as_non_config_value()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/clang/test/SemaCXX/
H A Dwarn-unreachable.cpp207 const bool controlValue = false; in test_treat_const_bool_local_as_config_value() local
208 if (!controlValue) in test_treat_const_bool_local_as_config_value()
215 bool controlValue = false; in test_treat_non_const_bool_local_as_non_config_value() local
216 if (!controlValue) in test_treat_non_const_bool_local_as_non_config_value()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/clang/test/SemaCXX/
H A Dwarn-unreachable.cpp207 const bool controlValue = false; in test_treat_const_bool_local_as_config_value() local
208 if (!controlValue) in test_treat_const_bool_local_as_config_value()
215 bool controlValue = false; in test_treat_non_const_bool_local_as_non_config_value() local
216 if (!controlValue) in test_treat_non_const_bool_local_as_non_config_value()
/dports/lang/clang-mesa/clang-13.0.1.src/test/SemaCXX/
H A Dwarn-unreachable.cpp207 const bool controlValue = false; in test_treat_const_bool_local_as_config_value() local
208 if (!controlValue) in test_treat_const_bool_local_as_config_value()
215 bool controlValue = false; in test_treat_non_const_bool_local_as_non_config_value() local
216 if (!controlValue) in test_treat_non_const_bool_local_as_non_config_value()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/clang/test/SemaCXX/
H A Dwarn-unreachable.cpp207 const bool controlValue = false; in test_treat_const_bool_local_as_config_value() local
208 if (!controlValue) in test_treat_const_bool_local_as_config_value()
215 bool controlValue = false; in test_treat_non_const_bool_local_as_non_config_value() local
216 if (!controlValue) in test_treat_non_const_bool_local_as_non_config_value()

1234567