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

  /external/parameter-framework/parameter/
BitParameterType.cpp 90 std::ostringstream strStream;
92 strStream << "Pos and Size attributes inconsistent with maximum container element size (" << uiParentBlockBitSize << " bits) for " + getKind();
94 serializingContext.setError(strStream.str());
107 std::ostringstream strStream;
109 strStream << "Max attribute inconsistent with maximum encodable size (" << getMaxEncodableValue() << ") for " + getKind();
111 serializingContext.setError(strStream.str());
136 std::ostringstream strStream;
138 strStream << "Value " << strValue << " standing out of admitted range [";
142 strStream << "0x0, " << "0x" << std::hex << std::uppercase;
145 strStream << "0, "
    [all...]
FixedPointParameterType.cpp 142 std::ostringstream strStream;
144 strStream << "Value " << strValue << " standing out of admitted ";
153 strStream << std::fixed << std::setprecision(_uiFractional)
161 strStream << "raw range [";
166 strStream << "0x" << std::hex << std::uppercase <<
169 strStream << ", 0x" << std::hex << std::uppercase <<
174 strStream << iMin << ", " << iMax;
177 strStream << "]";
179 strStream << " for " << getKind();
181 parameterAccessContext.setError(strStream.str())
    [all...]
EnumParameterType.cpp 170 std::ostringstream strStream;
172 strStream << "Value " << strValue << " standing out of admitted range [";
177 strStream << "0x" << std::hex << std::uppercase << std::setw(getSize()*2) << std::setfill('0') << makeEncodable(minValue);
179 strStream << ", 0x" << std::hex << std::uppercase << std::setw(getSize()*2) << std::setfill('0') << makeEncodable(maxValue);
183 strStream << minValue << ", " << maxValue;
186 strStream << "] for " << getKind();
188 parameterAccessContext.setError(strStream.str());
201 std::ostringstream strStream;
207 strStream << "0x" << std::hex << std::uppercase << std::setw(getSize()*2) << std::setfill('0') << makeEncodable(uiValue);
209 strValue = strStream.str()
    [all...]
IntegerParameterType.cpp 196 ostringstream strStream;
202 strStream << "0x" << std::hex << std::uppercase << std::setw(getSize()*2) << std::setfill('0') << uiValue;
212 strStream << iValue;
215 strStream << uiValue;
219 strValue = strStream.str();
403 ostringstream strStream;
405 strStream << "Value " << strValue << " standing out of admitted range [";
410 strStream << "0x" << std::hex << std::uppercase << std::setw(getSize()*2) << std::setfill('0') << makeEncodable(minValue);
412 strStream << ", 0x" << std::hex << std::uppercase << std::setw(getSize()*2) << std::setfill('0') << makeEncodable(maxValue);
416 strStream << minValue << ", " << maxValue
    [all...]
  /external/parameter-framework/test/test-subsystem/
TESTSubsystemBinary.cpp 45 std::ostringstream strStream;
52 strStream << "0x" << std::hex << uiValue;
54 return strStream.str();
  /external/parameter-framework/xmlserializer/
XmlElement.cpp 219 ostringstream strStream;
220 strStream << uiValue;
221 setAttributeString(strAttributeName, strStream.str());
226 ostringstream strStream;
227 strStream << iValue;
228 setAttributeString(strAttributeName, strStream.str());
  /external/deqp/modules/egl/
teglInfoTests.cpp 48 std::istringstream strStream(str);
51 strStream >> out;

Completed in 401 milliseconds