HomeSort by relevance Sort by last modified time
    Searched defs:strKey (Results 1 - 5 of 5) sorted by null

  /external/parameter-framework/parameter/
MappingContext.h 39 const std::string* strKey;
71 * @param[in] strKey Mapping item key name.
75 const std::string* getItem(const std::string& strKey) const;
MappingData.cpp 53 std::string strKey, strValue;
59 strKey = strMappingElement;
65 strKey = strMappingElement.substr(0, iFistDelimiterOccurrence);
72 if (!addValue(strKey, strValue)) {
74 serializingContext.setError("Duplicate Mapping data: Unable to process Mapping element key = " + strKey + ", value = " + strValue + " from XML element " + xmlElement.getPath());
82 bool CMappingData::getValue(const std::string& strkey, const std::string*& pStrValue) const
84 KeyToValueMapConstIterator it = _keyToValueMap.find(strkey);
104 bool CMappingData::addValue(const std::string& strkey, const std::string& strValue)
106 if (_keyToValueMap.find(strkey) != _keyToValueMap.end()) {
110 _keyToValueMap[strkey] = strValue
    [all...]
Subsystem.cpp 355 const string& strKey,
360 "mapping:\n" + strKey + " " +
366 bool CSubsystem::getMappingData(const std::string& strKey, const std::string*& pStrValue) const
370 return _pMappingData->getValue(strKey, pStrValue);
386 const string& strKey = _contextMappingKeyArray[uiItem];
389 if (pConfigurableElementWithMapping->getMappingData(strKey, pStrValue)) {
391 if (!context.setItem(uiItem, &strKey, pStrValue)) {
393 strError = getMappingError(strKey, "Already set", pConfigurableElementWithMapping);
416 string strKey = pSubsystemObjectCreator->getMappingKey();
420 if (pInstanceConfigurableElement->getMappingData(strKey, pStrValue))
    [all...]
  /frameworks/base/drm/java/android/drm/
DrmUtils.java 164 String strKey = readMultipleBytes(constraintData, keyLength, index);
173 mMap.put(strKey, strValue);
  /packages/apps/MusicFX/src/com/android/musicfx/
ControlPanelEffect.java 556 String strKey = key.toString();
594 strKey = strKey + band;
657 strKey = strKey + band;
    [all...]

Completed in 2270 milliseconds