Home
last modified time | relevance | path

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

/external/parameter-framework/upstream/test/test-platform/
DTestPlatform.cpp318 std::ostringstream ostrValue; in createExclusiveSelectionCriterion() local
320 ostrValue << "State_"; in createExclusiveSelectionCriterion()
321 ostrValue << state; in createExclusiveSelectionCriterion()
324 if (!pCriterionType->addValuePair(int(state), ostrValue.str(), strResult)) { in createExclusiveSelectionCriterion()
326 strResult = "Unable to add value: " + ostrValue.str() + ": " + strResult; in createExclusiveSelectionCriterion()
345 std::ostringstream ostrValue; in createInclusiveSelectionCriterion() local
347 ostrValue << "State_0x"; in createInclusiveSelectionCriterion()
348 ostrValue << (0x1 << state); in createInclusiveSelectionCriterion()
350 if (!pCriterionType->addValuePair(0x1 << state, ostrValue.str(), strResult)) { in createInclusiveSelectionCriterion()
352 strResult = "Unable to add value: " + ostrValue.str() + ": " + strResult; in createInclusiveSelectionCriterion()