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

1 23 4 5

  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPNodeUtils.java 326 String strValue = serializeNodeValue(value);
329 node.setValue(strValue);
333 node.setValue(Utils.normalizeLangValue(strValue));
394 String strValue;
397 strValue = null;
401 strValue = XMPUtils.convertFromBoolean(((Boolean) value).booleanValue());
405 strValue = XMPUtils.convertFromInteger(((Integer) value).intValue());
409 strValue = XMPUtils.convertFromLong(((Long) value).longValue());
413 strValue = XMPUtils.convertFromDouble(((Double) value).doubleValue());
417 strValue = XMPUtils.convertFromDate((XMPDateTime) value)
    [all...]
XMPDateTimeImpl.java 116 * @param strValue an ISO 8601 string
119 public XMPDateTimeImpl(String strValue) throws XMPException
121 ISO8601Converter.parse(strValue, this);
  /external/libnfc-nci/halimpl/pn54x/utils/
phNxpConfig.cpp 203 string strValue;
245 strValue.erase();
335 strValue.push_back(c);
363 strValue.push_back(((numValue >> (n * 8)) & 0xFF));
365 if (strValue.length() > 0)
366 pParam = new CNfcParam(token.c_str(), strValue);
370 strValue.erase();
377 strValue.push_back('\0');
379 pParam = new CNfcParam(token.c_str(), strValue);
383 strValue.push_back(c)
    [all...]
  /external/parameter-framework/parameter/
Subsystem.cpp 199 bool CSubsystem::accessValue(CPathNavigator& pathNavigator, string& strValue, bool bSet, CParameterAccessContext& parameterAccessContext) const
204 return base::accessValue(pathNavigator, strValue, bSet, parameterAccessContext);
308 string strValue = formatMappingDataList(configurableElementPath);
311 strValue += getFormattedSubsystemMappingData(pInstanceConfigurableElement);
313 return strValue;
316 void CSubsystem::logValue(string& strValue, CErrorContext& errorContext) const
323 return base::logValue(strValue, errorContext);
ParameterMgrFullConnector.cpp 198 bool CParameterMgrFullConnector::accessParameterValue(const string& strPath, string& strValue,
201 return _pParameterMgr->accessParameterValue(strPath, strValue, bSet, strError);
206 const string& strPath, string& strValue,
209 return _pParameterMgr->accessConfigurationValue(strDomain, strConfiguration, strPath, strValue,
213 bool CParameterMgrFullConnector::getParameterMapping(const string& strPath, string& strValue) const
215 return _pParameterMgr->getParameterMapping(strPath, strValue);
ParameterType.h 63 virtual bool toBlackboard(const std::string& strValue, uint32_t& uiValue, CParameterAccessContext& parameterAccessContext) const = 0;
64 virtual bool fromBlackboard(std::string& strValue, const uint32_t& uiValue, CParameterAccessContext& parameterAccessContext) const = 0;
Subsystem.h 94 virtual bool accessValue(CPathNavigator& pathNavigator, std::string& strValue, bool bSet, CParameterAccessContext& parameterAccessContext) const;
95 virtual void logValue(std::string& strValue, CErrorContext& errorContext) const;
SubsystemObject.h 63 static uint32_t asInteger(const std::string& strValue);
Element.cpp 181 string strValue;
182 logValue(strValue, errorContext);
184 if (!strValue.empty()) {
186 strContent += " = " + strValue;
215 void CElement::logValue(string& strValue, CErrorContext& errorContext) const
217 (void)strValue;
SubsystemObject.cpp 79 uint32_t CSubsystemObject::asInteger(const string& strValue)
81 return strtoul(strValue.c_str(), NULL, 0);
ConfigurableElement.h 98 virtual bool accessValue(CPathNavigator& pathNavigator, std::string& strValue, bool bSet, CParameterAccessContext& parameterAccessContext) const;
ParameterHandle.cpp 395 bool CParameterHandle::setAsString(const string& strValue, string& strError)
415 string strUserValue = strValue;
420 bool CParameterHandle::getAsString(string& strValue, string& strError) const
433 return _pBaseParameter->accessAsString(strValue, false, parameterAccessContext);
ConfigurableDomain.cpp 85 void CConfigurableDomain::logValue(string& strValue, CErrorContext& errorContext) const
89 strValue = "{";
92 strValue += "Sequence aware: ";
93 strValue += _bSequenceAware ? "yes" : "no";
96 strValue += ", Last applied configuration: ";
97 strValue += _pLastAppliedConfiguration ? _pLastAppliedConfiguration->getName() : "<none>";
99 strValue += "}";
    [all...]
ParameterMgr.h 232 bool accessParameterValue(const std::string& strPath, std::string& strValue, bool bSet, std::string& strError);
237 * @param[out] strValue A sting containing the mapping
241 bool getParameterMapping(const std::string& strPath, std::string& strValue) const;
242 bool accessConfigurationValue(const std::string &strDomain, const std::string &stConfiguration, const std::string& strPath, std::string& strValue, bool bSet, std::string& strError);
531 bool accessValue(CParameterAccessContext& parameterAccessContext, const std::string& strPath, std::string& strValue, bool bSet, std::string& strError);
532 bool doSetValue(const std::string& strPath, const std::string& strValue, bool bRawValueSpace, bool bDynamicAccess, std::string& strError) const;
533 bool doGetValue(const std::string& strPath, std::string& strValue, bool bRawValueSpace, bool bHexOutputRawFormat, bool bDynamicAccess, std::string& strError) const;
    [all...]
Element.h 167 virtual void logValue(std::string& strValue, CErrorContext& errorContext) const;
ParameterMgr.cpp     [all...]
ConfigurableDomain.h 117 virtual void logValue(std::string& strValue, CErrorContext& errorContext) const;
ConfigurableElement.cpp 137 bool CConfigurableElement::accessValue(CPathNavigator& pathNavigator, std::string& strValue, bool bSet, CParameterAccessContext& parameterAccessContext) const
157 return pChild->accessValue(pathNavigator, strValue, bSet, parameterAccessContext);
  /external/pdfium/fpdfsdk/src/javascript/
PublicMethods.cpp 1070 CFX_ByteString strValue = StrTrim(CFX_ByteString::FromUnicode(Value));
1072 if (strValue.IsEmpty()) return TRUE;
1092 strValue.Replace(",", ".");
1093 double dValue = atof(strValue);
1100 strValue = fcvt(dValue,iDec,&iDec2,&bNegative);
1101 if (strValue.IsEmpty())
1104 strValue = fcvt(dValue,iDec,&iDec2,&bNegative);
1105 if (strValue.IsEmpty())
1107 strValue = "0";
1117 strValue = "0" + strValue
    [all...]
  /external/parameter-framework/test/test-platform/
TestPlatform.cpp 308 const std::string& strValue = remoteCommand.getArgument(uiState + 1);
310 if (!pCriterionType->addValuePair(uiState, strValue)) {
312 strResult = "Unable to add value: " + strValue;
348 const std::string& strValue = remoteCommand.getArgument(uiState + 1);
350 if (!pCriterionType->addValuePair(0x1 << uiState, strValue)) {
352 strResult = "Unable to add value: " + strValue;
  /external/parameter-framework/parameter/include/
ParameterHandle.h 88 bool setAsString(const std::string& strValue, std::string& strError);
89 bool getAsString(std::string& strValue, std::string& strError) const;
ParameterMgrFullConnector.h 161 bool accessParameterValue(const std::string& strPath, std::string& strValue, bool bSet, std::string& strError);
162 bool accessConfigurationValue(const std::string &strDomain, const std::string &strConfiguration, const std::string& strPath, std::string& strValue, bool bSet, std::string& strError);
168 * @param[out] strValue A sting containing the mapping
172 bool getParameterMapping(const std::string& strPath, std::string& strValue) const;
  /external/pdfium/fpdfsdk/src/formfiller/
FFL_Notify.cpp 97 FX_BOOL CFFL_Notify::OnKeyStroke(CPDF_FormField* pFormField, int nCommitKey, CFX_WideString& strValue, CFX_WideString& strChange,
105 FX_BOOL CFFL_Notify::OnValidate(CPDF_FormField* pFormField, CFX_WideString& strValue, CFX_WideString & strChange,
  /external/pdfium/fpdfsdk/include/javascript/
PublicMethods.h 76 static double MakeInterDate(CFX_WideString strValue);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
MessageFormat.java     [all...]

Completed in 996 milliseconds

1 23 4 5