HomeSort by relevance Sort by last modified time
    Searched refs:iValue (Results 1 - 25 of 66) 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/xfa/fxfa/parser/
cxfa_font.cpp 46 int32_t iValue = 0;
47 m_pNode->TryInteger(XFA_ATTRIBUTE_LineThrough, iValue);
48 return iValue;
52 int32_t iValue = 0;
53 m_pNode->TryInteger(XFA_ATTRIBUTE_Underline, iValue);
54 return iValue;
cscript_eventpseudomodel.cpp 31 void InterProperty(CFXJSE_Value* pValue, int32_t& iValue, bool bSetting) {
33 iValue = pValue->ToInteger();
36 pValue->SetInteger(iValue);
  /external/swiftshader/src/OpenGL/compiler/preprocessor/
Token.cpp 64 bool Token::iValue(int* value) const
Token.h 91 bool iValue(int* value) const;
Preprocessor.cpp 108 if (!token->iValue(&val))
  /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/xfa/fde/css/
cfde_cssstyleselector.cpp 225 int32_t iValue =
227 if (iValue >= 1 && iValue <= 9) {
228 pComputedStyle->m_InheritedData.m_wFontWeight = iValue * 100;
  /external/pdfium/fpdfsdk/javascript/
JS_Value.cpp 41 CJS_Value::CJS_Value(CJS_Runtime* pRuntime, const int& iValue)
42 : m_pValue(pRuntime->NewNumber(iValue)) {}
200 void CJS_PropValue::operator<<(int iValue) {
202 m_Value = CJS_Value(m_pJSRuntime, iValue);
205 void CJS_PropValue::operator>>(int& iValue) const {
207 iValue = m_Value.ToInt(m_pJSRuntime);

Completed in 923 milliseconds

1 2 3