Searched refs:iValue (Results 1 - 25 of 48) sorted by relevance

12

/external/parameter-framework/upstream/parameter/include/
H A DSelectionCriterionTypeInterface.h40 * @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/
H A DSelectionCriterionType.cpp54 bool CSelectionCriterionType::addValuePair(int iValue, const std::string &strValue, argument
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
132 getLiteralValue(int iValue, std::string &strValue) const argument
[all...]
H A DSelectionCriterionType.h45 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;
H A DLinearParameterAdaptation.cpp87 double CLinearParameterAdaptation::toUserValue(int64_t iValue) const
89 return base::toUserValue(iValue) * _dSlopeDenominator / _dSlopeNumerator;
H A DLogarithmicParameterAdaptation.cpp82 double CLogarithmicParameterAdaptation::toUserValue(int64_t iValue) const
84 return exp(base::toUserValue(iValue) * log(_dLogarithmBase));
H A DParameterAdaptation.cpp81 double CParameterAdaptation::toUserValue(int64_t iValue) const
83 return (double)(iValue - _iOffset);
H A DLinearParameterAdaptation.h44 virtual double toUserValue(int64_t iValue) const;
H A DLogarithmicParameterAdaptation.h57 virtual double toUserValue(int64_t iValue) const;
H A DParameterAdaptation.h49 virtual double toUserValue(int64_t iValue) const;
H A DIntegerParameterType.cpp202 int32_t iValue = value; local
205 signExtend(iValue);
207 stream << iValue; local
264 int32_t iValue = uiValue; local
267 signExtend(iValue);
270 iUserValue = iValue;
333 int32_t iValue = uiValue; local
335 signExtend(iValue);
337 iValueToConvert = iValue;
H A DParameter.cpp127 bool CParameter::access(int32_t &iValue, bool bSet, argument
130 return doAccess(iValue, bSet, parameterAccessContext);
H A DFixedPointParameterType.h149 * @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;
H A DParameter.h63 bool access(int32_t &iValue, bool bSet,
H A DBaseParameter.h66 virtual bool access(int32_t &iValue, bool bSet,
H A DFixedPointParameterType.cpp354 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/
H A DSerializableBean.java30 private Integer iValue = null; field in class:SerializableBean
48 return iValue;
51 public void setIValue(Integer iValue) { argument
52 this.iValue = iValue;
/external/pdfium/fxjs/xfa/
H A Dcjx_boolean.cpp36 int32_t iValue = FXSYS_atoi(newValue.c_str()); local
37 WideString wsNewValue(iValue == 0 ? L"0" : L"1");
H A Dcjx_eventpseudomodel.cpp28 void InterProperty(CFXJSE_Value* pValue, int32_t& iValue, bool bSetting) { argument
30 iValue = pValue->ToInteger();
33 pValue->SetInteger(iValue);
H A Dcjx_object.cpp91 int32_t iValue = ch - L'0'; local
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); local
294 if (!iValue)
296 return {WideString::Format(L"%d", *iValue)};
354 bool CJX_Object::SetInteger(XFA_Attribute eAttr, int32_t iValue, boo argument
[all...]
/external/deqp/external/openglcts/modules/common/
H A DglcTextureFilterAnisotropicTests.cpp226 GLint iValue; local
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
341 GLint iValue; local
[all...]
/external/swiftshader/src/OpenGL/compiler/preprocessor/
H A DToken.cpp64 bool Token::iValue(int *value) const function in class:pp::Token
H A DToken.h93 bool iValue(int *value) const;
/external/parameter-framework/upstream/bindings/python/
H A Dpfw.i209 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/
H A Dcfx_cssstyleselector.cpp220 int32_t iValue = local
222 if (iValue >= 1 && iValue <= 9) {
223 pComputedStyle->m_InheritedData.m_wFontWeight = iValue * 100;
/external/pdfium/xfa/fgas/font/
H A Dcfgas_fontmgr.cpp89 int32_t iValue = 0; local
92 iValue += 64;
96 iValue += 32;
99 iValue += 16;
101 iValue += 8;
102 return iValue;

Completed in 573 milliseconds

12