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

  /external/parameter-framework/parameter/
ConfigurableElementWithMapping.h 49 * @param[in] strKey the mapping key
52 * @return true if @p strKey is found in the object's mapping, false if not
54 virtual bool getMappingData(const std::string& strKey, const std::string*& pStrValue) const = 0;
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...]
MappingContext.cpp 85 assert(_pstItemArray[uiIndex].strKey != pStrKey);
95 _pstItemArray[uiItemType].strKey = pStrKey;
121 const string* CMappingContext::getItem(const string& strKey) const
127 if (_pstItemArray[uiItemType].strKey != NULL &&
128 strKey == *_pstItemArray[uiItemType].strKey) {
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;
ComponentInstance.h 44 virtual bool getMappingData(const std::string& strKey, const std::string*& pStrValue) const;
ComponentType.h 47 virtual bool getMappingData(const std::string& strKey, const std::string*& pStrValue) const;
ComponentInstance.cpp 52 bool CComponentInstance::getMappingData(const std::string& strKey, const std::string*& pStrValue) const
55 return base::getMappingData(strKey, pStrValue) || (_pComponentType && _pComponentType->getMappingData(strKey, pStrValue));
ComponentType.cpp 52 bool CComponentType::getMappingData(const std::string& strKey, const std::string*& pStrValue) const
55 return base::getMappingData(strKey, pStrValue) || (_pExtendsComponentType && _pExtendsComponentType->getMappingData(strKey, pStrValue));
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...]
TypeElement.h 48 virtual bool getMappingData(const std::string& strKey, const std::string*& pStrValue) const;
TypeElement.cpp 62 bool CTypeElement::getMappingData(const std::string& strKey, const std::string*& pStrValue) const
66 return _pMappingData->getValue(strKey, pStrValue);
InstanceConfigurableElement.cpp 57 bool CInstanceConfigurableElement::getMappingData(const std::string& strKey, const std::string*& pStrValue) const
60 return getTypeElement()->getMappingData(strKey, pStrValue);
Subsystem.h 74 virtual bool getMappingData(const std::string& strKey, const std::string*& pStrValue) const;
137 * @param[in] strKey The key on which the error refers
144 const std::string& strKey,
InstanceConfigurableElement.h 59 virtual bool getMappingData(const std::string& strKey, const std::string*& pStrValue) const;
  /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...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
certadm.h 204 virtual HRESULT WINAPI ImportKey(const BSTR strConfig,LONG RequestId,const BSTR strCertHash,LONG Flags,const BSTR strKey) = 0;
236 HRESULT (WINAPI *ImportKey)(ICertAdmin2 *This,const BSTR strConfig,LONG RequestId,const BSTR strCertHash,LONG Flags,const BSTR strKey);
270 #define ICertAdmin2_ImportKey(This,strConfig,RequestId,strCertHash,Flags,strKey) (This)->lpVtbl->ImportKey(This,strConfig,RequestId,strCertHash,Flags,strKey)
291 HRESULT WINAPI ICertAdmin2_ImportKey_Proxy(ICertAdmin2 *This,const BSTR strConfig,LONG RequestId,const BSTR strCertHash,LONG Flags,const BSTR strKey);
  /cts/tests/tests/util/src/android/util/cts/
ArrayMapTest.java 344 String strKey = KEYS[i] < 0 ? null : Integer.toString(KEYS[i]);
350 bundle.putInt(strKey, i);
356 bundle.remove(strKey);
ArraySetTest.java 214 String strKey = KEYS[i] < 0 ? null : Integer.toString(KEYS[i]);

Completed in 331 milliseconds