Home
last modified time | relevance | path

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

/external/parameter-framework/upstream/parameter/
DFormattedSubsystemObject.cpp86 string::size_type uiPercentPos = strFormattedValue.find('%', 0); in formatMappingValue() local
92 if (uiPercentPos != string::npos && uiPercentPos < strFormattedValue.size() - 1) { in formatMappingValue()
95 size_t uiAmendNumber = strFormattedValue[uiPercentPos + 1] - '0'; in formatMappingValue()
107 uiPercentPos + 2, strFormattedValue.size() - uiPercentPos - 2); in formatMappingValue()
116 strFormattedValue.substr(0, uiPercentPos) + strAmendValue + strEndOfLineAmended; in formatMappingValue()