HomeSort by relevance Sort by last modified time
    Searched refs:iValue (Results 1 - 25 of 68) sorted by null

1 2 3

  /external/parameter-framework/upstream/parameter/include/
SelectionCriterionTypeInterface.h 40 * @param[in] iValue integer value
45 virtual bool addValuePair(int iValue, const std::string &strValue, std::string &strError) = 0;
46 virtual bool getNumericalValue(const std::string &strValue, int &iValue) const = 0;
47 virtual bool getLiteralValue(int iValue, std::string &strValue) const = 0;
49 virtual std::string getFormattedState(int iValue) const = 0;
  /external/parameter-framework/upstream/parameter/
SelectionCriterionType.cpp 54 bool CSelectionCriterionType::addValuePair(int iValue, const std::string &strValue,
58 if (_bInclusive && (!iValue || (iValue & (iValue - 1)))) {
61 error << "Rejecting value pair association: 0x" << std::hex << iValue << " - " << strValue
73 << iValue << " - " << strValue << " for Selection Criterion Type " << getName();
79 if (it->second == iValue) {
82 << " 0x" << std::hex << iValue << " - " << strValue
88 _numToLitMap[strValue] = iValue;
93 bool CSelectionCriterionType::getNumericalValue(const std::string &strValue, int &iValue) cons
    [all...]
SelectionCriterionType.h 45 virtual bool addValuePair(int iValue, const std::string &strValue, std::string &strError);
52 * @param[out] iValue: criterion type value represented as an integer.
56 virtual bool getNumericalValue(const std::string &strValue, int &iValue) const;
57 virtual bool getLiteralValue(int iValue, std::string &strValue) const;
64 virtual std::string getFormattedState(int iValue) const;
84 * @param[out] iValue: criterion type value represented as an integer.
88 bool getAtomicNumericalValue(const std::string &strValue, int &iValue) const;
LinearParameterAdaptation.h 44 virtual double toUserValue(int64_t iValue) const;
LogarithmicParameterAdaptation.h 57 virtual double toUserValue(int64_t iValue) const;
ParameterAdaptation.h 49 virtual double toUserValue(int64_t iValue) const;
LinearParameterAdaptation.cpp 87 double CLinearParameterAdaptation::toUserValue(int64_t iValue) const
89 return base::toUserValue(iValue) * _dSlopeDenominator / _dSlopeNumerator;
LogarithmicParameterAdaptation.cpp 82 double CLogarithmicParameterAdaptation::toUserValue(int64_t iValue) const
84 return exp(base::toUserValue(iValue) * log(_dLogarithmBase));
ParameterAdaptation.cpp 81 double CParameterAdaptation::toUserValue(int64_t iValue) const
83 return (double)(iValue - _iOffset);
IntegerParameterType.cpp 202 int32_t iValue = value;
205 signExtend(iValue);
207 stream << iValue;
264 int32_t iValue = uiValue;
267 signExtend(iValue);
270 iUserValue = iValue;
333 int32_t iValue = uiValue;
335 signExtend(iValue);
337 iValueToConvert = iValue;
Parameter.cpp 127 bool CParameter::access(int32_t &iValue, bool bSet,
130 return doAccess(iValue, bSet, parameterAccessContext);
FixedPointParameterType.h 149 * @param[in] iValue the integer which contains the Qn.m number which should be converted.
151 * @return the double which contains the double representation of iValue.
153 double binaryQnmToDouble(int32_t iValue) const;
Parameter.h 63 bool access(int32_t &iValue, bool bSet,
BaseParameter.h 66 virtual bool access(int32_t &iValue, bool bSet,
FixedPointParameterType.cpp 354 double CFixedPointParameterType::binaryQnmToDouble(int32_t iValue) const
357 iValue >>= getSize() * 8 - getUtilSizeInBits();
358 return static_cast<double>(iValue) / double(1UL << _uiFractional);
  /external/apache-harmony/beans/src/test/support/java/org/apache/harmony/beans/tests/support/
SerializableBean.java 30 private Integer iValue = null;
48 return iValue;
51 public void setIValue(Integer iValue) {
52 this.iValue = iValue;
  /external/pdfium/fxjs/xfa/
cjx_boolean.cpp 36 int32_t iValue = FXSYS_atoi(newValue.c_str());
37 WideString wsNewValue(iValue == 0 ? L"0" : L"1");
cjx_eventpseudomodel.cpp 28 void InterProperty(CFXJSE_Value* pValue, int32_t& iValue, bool bSetting) {
30 iValue = pValue->ToInteger();
33 pValue->SetInteger(iValue);
cjx_object.cpp 91 int32_t iValue = ch - L'0';
92 if (iValue >= 0 && iValue <= 9) {
95 r = r * 10 + iValue;
98 g = g * 10 + iValue;
101 b = b * 10 + iValue;
293 Optional<int32_t> iValue = TryInteger(eAttr, bUseDefault);
294 if (!iValue)
296 return {WideString::Format(L"%d", *iValue)};
354 bool CJX_Object::SetInteger(XFA_Attribute eAttr, int32_t iValue, bool bNotify)
    [all...]
  /external/deqp/external/openglcts/modules/common/
glcTextureFilterAnisotropicTests.cpp 226 GLint iValue;
227 gl.getTexParameteriv(GL_TEXTURE_2D, GL_TEXTURE_MAX_ANISOTROPY_EXT, &iValue);
231 if (iValue != 1)
234 << "GetTexParameteriv failed. Expected value: 1, Queried value: " << iValue
247 << "GetTexParameterfv failed. Expected value: 1.0, Queried value: " << iValue
253 iValue = 2;
254 gl.texParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAX_ANISOTROPY_EXT, iValue);
257 gl.getTexParameteriv(GL_TEXTURE_2D, GL_TEXTURE_MAX_ANISOTROPY_EXT, &iValue);
260 if (iValue != 2)
263 << "texParameteri failed. Expected value: 2, Queried value: " << iValue
    [all...]
  /external/swiftshader/src/OpenGL/compiler/preprocessor/
Token.cpp 64 bool Token::iValue(int *value) const
Token.h 93 bool iValue(int *value) const;
  /libcore/ojluni/src/main/java/sun/misc/
FloatingDecimal.java 386 int ivalue = (int)lvalue; local
387 c = ivalue%10;
388 ivalue /= 10;
391 c = ivalue%10;
392 ivalue /= 10;
394 while ( ivalue != 0){
397 c = ivalue%10;
398 ivalue /= 10;
    [all...]
  /external/parameter-framework/upstream/bindings/python/
pfw.i 209 virtual bool addValuePair(int iValue, const std::string& strValue, std::string& strError) = 0;
210 virtual bool getNumericalValue(const std::string& strValue, int& iValue) const = 0;
211 virtual bool getLiteralValue(int iValue, std::string& strValue) const = 0;
213 virtual std::string getFormattedState(int iValue) const = 0;
  /external/pdfium/core/fxcrt/css/
cfx_cssstyleselector.cpp 220 int32_t iValue =
222 if (iValue >= 1 && iValue <= 9) {
223 pComputedStyle->m_InheritedData.m_wFontWeight = iValue * 100;

Completed in 1254 milliseconds

1 2 3