Home
last modified time | relevance | path

Searched refs:strFormattedValue (Results 1 – 1 of 1) sorted by relevance

/external/parameter-framework/parameter/
DFormattedSubsystemObject.cpp92 string strFormattedValue = strMappingValue; in formatMappingValue() local
95 string::size_type uiPercentPos = strFormattedValue.find('%', 0); in formatMappingValue()
101 if (uiPercentPos != string::npos && uiPercentPos < strFormattedValue.size() - 1) { in formatMappingValue()
104 uint32_t uiAmendNumber = strFormattedValue[uiPercentPos + 1] - '0'; in formatMappingValue()
115 string strEndOfLine = strFormattedValue.substr(uiPercentPos + 2, in formatMappingValue()
116 strFormattedValue.size() in formatMappingValue()
125 strFormattedValue = strFormattedValue.substr(0, uiPercentPos) + strAmendValue in formatMappingValue()
131 return strFormattedValue; in formatMappingValue()