HomeSort by relevance Sort by last modified time
    Searched refs:iValue (Results 1 - 25 of 70) 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/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/src/fxbarcode/qrcode/
BC_QRGridSampler.cpp 119 FX_FLOAT iValue = (FX_FLOAT)(y + 0.5f);
123 points[x + 1] = iValue;
  /external/pdfium/xfa/src/fgas/include/
fx_sys.h 50 void FX_memset(void* pBuf, int32_t iValue, size_t size);
  /external/pdfium/xfa/src/fdp/src/css/
fde_cssstyleselector.h 182 FX_BOOL GetCounterIncrement(int32_t& iValue) {
183 iValue = m_iIncVal;
186 FX_BOOL GetCounterReset(int32_t& iValue) {
187 iValue = m_iResetVal;
211 FX_BOOL GetCounterIncrement(int32_t index, int32_t& iValue) {
213 return m_arrCounterData.ElementAt(index).GetCounterIncrement(iValue);
215 FX_BOOL GetCounterReset(int32_t index, int32_t& iValue) {
217 return m_arrCounterData.ElementAt(index).GetCounterReset(iValue);
458 virtual FX_BOOL GetCounterReset(int32_t index, int32_t& iValue) {
459 return m_NonInheritedData.m_pCounterStyle->GetCounterReset(index, iValue);
    [all...]
  /external/pdfium/xfa/src/fxfa/src/parser/
xfa_script_eventpseudomodel.cpp 35 int32_t& iValue,
38 iValue = FXJSE_Value_ToInteger(hValue);
40 FXJSE_Value_SetInteger(hValue, iValue);
  /libcore/ojluni/src/main/java/sun/misc/
FormattedFloatingDecimal.java 335 int ivalue = (int)lvalue; local
339 c = ivalue%10;
340 ivalue /= 10;
343 c = ivalue%10;
344 ivalue /= 10;
346 while ( ivalue != 0){
349 c = ivalue%10;
350 ivalue /= 10;
    [all...]
  /external/pdfium/fpdfsdk/src/javascript/
JS_Value.cpp 32 CJS_Value::CJS_Value(CJS_Runtime* pRuntime, const int& iValue)
34 operator=(iValue);
152 void CJS_Value::operator=(int iValue) {
153 m_pValue = FXJS_NewNumber(m_pJSRuntime->GetIsolate(), iValue);
292 void CJS_PropValue::operator<<(int iValue) {
294 CJS_Value::operator=(iValue);
297 void CJS_PropValue::operator>>(int& iValue) const {
299 iValue = CJS_Value::ToInt();
JS_Value.h 35 CJS_Value(CJS_Runtime* pRuntime, const int& iValue);
65 void operator=(int iValue);
  /external/pdfium/xfa/src/fgas/src/crt/
fx_system.cpp 136 void FX_memset(void* pBuf, int32_t iValue, size_t size) {
142 *pStart++ = iValue;

Completed in 267 milliseconds

1 2 3