HomeSort by relevance Sort by last modified time
    Searched refs:strValue (Results 26 - 50 of 101) sorted by null

12 3 4 5

  /external/parameter-framework/parameter/
EnumValuePair.cpp 72 void CEnumValuePair::logValue(string& strValue, CErrorContext& errorContext) const
76 strValue = getNumericalAsString();
CompoundRule.h 60 virtual void logValue(std::string& strValue, CErrorContext& errorContext) const;
ComponentInstance.cpp 67 std::string strValue = base::getFormattedMapping();
70 strValue += _pComponentType->getFormattedMapping();
73 return strValue;
ComponentType.cpp 67 std::string strValue = base::getFormattedMapping();
70 strValue += _pExtendsComponentType->getFormattedMapping();
73 return strValue;
BitParameterType.cpp 125 bool CBitParameterType::toBlackboard(const string& strValue, uint64_t& uiValue, CParameterAccessContext& parameterAccessContext) const
128 bool bValueProvidedAsHexa = !strValue.compare(0, 2, "0x");
131 uint64_t uiConvertedValue = strtoull(strValue.c_str(), NULL, 0);
138 strStream << "Value " << strValue << " standing out of admitted range [";
160 void CBitParameterType::fromBlackboard(string& strValue, const uint64_t& uiValue, CParameterAccessContext& parameterAccessContext) const
175 strValue = strStream.str();
ArrayParameter.h 59 virtual bool accessValue(CPathNavigator& pathNavigator, std::string& strValue, bool bSet, CParameterAccessContext& parameterAccessContext) const;
60 virtual void logValue(std::string& strValue, CErrorContext& errorContext) const;
70 bool setValues(uint32_t uiStartIndex, uint32_t uiBaseOffset, const std::string& strValue, CParameterAccessContext& parameterAccessContext) const;
BitParameter.cpp 66 bool CBitParameter::doSetValue(const string& strValue, uint32_t uiOffset, CParameterAccessContext& parameterAccessContext) const
68 return doSet(strValue, uiOffset, parameterAccessContext);
71 void CBitParameter::doGetValue(string& strValue, uint32_t uiOffset, CParameterAccessContext& parameterAccessContext) const
73 doGet(strValue, uiOffset, parameterAccessContext);
MappingData.h 56 bool addValue(const std::string& strkey, const std::string& strValue);
ArrayParameter.cpp 87 string strValue;
90 getValues(configurationAccessContext.getBaseOffset(), strValue, configurationAccessContext);
93 xmlConfigurationSettingsElementContent.setTextContent(strValue);
101 bool CArrayParameter::accessValue(CPathNavigator& pathNavigator, string& strValue, bool bSet, CParameterAccessContext& parameterAccessContext) const
119 if (!setValues(uiIndex, parameterAccessContext.getBaseOffset(), strValue, parameterAccessContext)) {
135 getValues(parameterAccessContext.getBaseOffset(), strValue, parameterAccessContext);
139 doGetValue(strValue, getOffset() + uiIndex * getSize(), parameterAccessContext);
177 void CArrayParameter::logValue(string& strValue, CErrorContext& errorContext) const
183 getValues(0, strValue, parameterAccessContext);
258 bool CArrayParameter::setValues(uint32_t uiStartIndex, uint32_t uiBaseOffset, const string& strValue, CParameterAccessContext& parameterAccessContext) cons
    [all...]
BitParameterType.h 52 bool toBlackboard(const std::string& strValue, uint64_t& uiValue, CParameterAccessContext& parameterAccessContext) const;
53 void fromBlackboard(std::string& strValue, const uint64_t& uiValue, CParameterAccessContext& parameterAccessContext) const;
CompoundRule.cpp 60 void CCompoundRule::logValue(string& strValue, CErrorContext& errorContext) const
65 strValue = _apcTypes[_bTypeAll];
Parameter.h 68 virtual bool doSetValue(const std::string& strValue, uint32_t uiOffset, CParameterAccessContext& parameterAccessContext) const;
69 virtual void doGetValue(std::string& strValue, uint32_t uiOffset, CParameterAccessContext& parameterAccessContext) const;
Parameter.cpp 91 bool CParameter::doSetValue(const string& strValue, uint32_t uiOffset, CParameterAccessContext& parameterAccessContext) const
93 return doSet(strValue, uiOffset, parameterAccessContext);
96 void CParameter::doGetValue(string& strValue, uint32_t uiOffset, CParameterAccessContext& parameterAccessContext) const
98 doGet(strValue, uiOffset, parameterAccessContext);
SelectionCriterionRule.h 78 virtual void logValue(std::string& strValue, CErrorContext& errorContext) const;
  /external/parameter-framework/test/test-subsystem/
TESTSubsystemBinary.cpp 57 void CTESTSubsystemBinary::fromString(const std::string& strValue, void* pvValue, uint32_t uiSize)
59 uint32_t uiValue = strtoul(strValue.c_str(), NULL, 0);
TESTSubsystemObject.h 51 virtual void fromString(const std::string& strValue, void* pvValue, uint32_t uiSize) = 0;
  /external/parameter-framework/bindings/python/
pfw.i 122 %apply std::string &INOUT { std::string& strValue };
123 bool accessParameterValue(const std::string& strPath, std::string& strValue, bool bSet, std::string& strError);
124 bool accessConfigurationValue(const std::string &strDomain, const std::string &strConfiguration, const std::string& strPath, std::string& strValue, bool bSet, std::string& strError);
125 %clear std::string& strValue;
127 bool getParameterMapping(const std::string& strPath, std::string& strValue) const;
202 virtual bool addValuePair(int iValue, const std::string& strValue) = 0;
203 virtual bool getNumericalValue(const std::string& strValue, int& iValue) const = 0;
204 virtual bool getLiteralValue(int iValue, std::string& strValue) const = 0;
  /frameworks/base/drm/java/android/drm/
DrmUtils.java 168 String strValue = readMultipleBytes(constraintData, valueLength, index);
169 if (strValue.equals(" ")) {
170 strValue = "";
173 mMap.put(strKey, strValue);
  /external/libnfc-nci/halimpl/bcm2079x/adaptation/
config.cpp 165 string strValue;
206 strValue.erase();
285 strValue.push_back(c);
302 strValue.push_back(((numValue >> (n * 8)) & 0xFF));
304 if (strValue.length() > 0)
305 pParam = new CNfcParam(token.c_str(), strValue);
309 strValue.erase();
316 strValue.push_back('\0');
318 pParam = new CNfcParam(token.c_str(), strValue);
322 strValue.push_back(c)
    [all...]
  /external/libnfc-nci/src/adaptation/
config.cpp 165 string strValue;
217 strValue.erase();
296 strValue.push_back(c);
313 strValue.push_back(((numValue >> (n * 8)) & 0xFF));
315 if (strValue.length() > 0)
316 pParam = new CNfcParam(token.c_str(), strValue);
320 strValue.erase();
327 strValue.push_back('\0');
329 pParam = new CNfcParam(token.c_str(), strValue);
333 strValue.push_back(c)
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
GraphReader.java 410 String strValue = null;
411 if ((strValue = attributes.getValue("stringValue")) != null) {
412 return strValue;
413 } else if ((strValue = attributes.getValue("booleanValue")) != null) {
414 return Boolean.parseBoolean(strValue);
415 } else if ((strValue = attributes.getValue("intValue")) != null) {
416 return Integer.parseInt(strValue);
417 } else if ((strValue = attributes.getValue("floatValue")) != null) {
418 return Float.parseFloat(strValue);
419 } else if ((strValue = attributes.getValue("floatsValue")) != null)
    [all...]
  /external/parameter-framework/xmlserializer/
XmlElement.h 69 void setAttributeString(const std::string& strAttributeName, const std::string& strValue);
70 void setNameAttribute(const std::string& strValue);
XmlElement.cpp 96 string strValue((const char*)pucXmlValue);
100 return strValue;
212 void CXmlElement::setAttributeString(const string& strAttributeName, const string& strValue)
214 xmlNewProp(_pXmlElement, BAD_CAST strAttributeName.c_str(), BAD_CAST strValue.c_str());
231 void CXmlElement::setNameAttribute(const string& strValue)
233 setAttributeString("Name", strValue);
  /external/pdfium/fpdfsdk/include/formfiller/
FFL_Notify.h 32 FX_BOOL OnValidate(CPDF_FormField* pFormField, CFX_WideString& strValue, CFX_WideString & strChange,
35 FX_BOOL OnKeyStroke(CPDF_FormField* pFormField, int nCommitKey, CFX_WideString& strValue, CFX_WideString& strChange,
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/
XMPDateTimeFactory.java 82 * @param strValue The ISO 8601 string representation of the date/time.
86 public static XMPDateTime createFromISO8601(String strValue) throws XMPException
88 return new XMPDateTimeImpl(strValue);

Completed in 3265 milliseconds

12 3 4 5