Home
last modified time | relevance | path

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

/external/parameter-framework/parameter/
DFormattedSubsystemObject.cpp95 string::size_type uiPercentPos = strFormattedValue.find('%', 0); in formatMappingValue() local
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()
117 - uiPercentPos - 2); in formatMappingValue()
125 strFormattedValue = strFormattedValue.substr(0, uiPercentPos) + strAmendValue in formatMappingValue()