• Home
  • Raw
  • Download

Lines Matching refs:str

30 std::ostream& operator<< (std::ostream& str, const ConfigAttribValueFmt& attribFmt)  in operator <<()  argument
35 return str << getColorBufferTypeStr(attribFmt.value); in operator <<()
38 return str << getConfigCaveatStr(attribFmt.value); in operator <<()
42 return str << getAPIBitsStr(attribFmt.value); in operator <<()
45 return str << getSurfaceBitsStr(attribFmt.value); in operator <<()
49 return str << "EGL_NONE"; in operator <<()
51 return str << tcu::toHex(attribFmt.value); in operator <<()
54 return str << getTransparentTypeStr(attribFmt.value); in operator <<()
59 return str << getBoolDontCareStr(attribFmt.value); in operator <<()
79 return str << (int)attribFmt.value; in operator <<()
82 return str << tcu::toHex(attribFmt.value); in operator <<()
86 std::ostream& operator<< (std::ostream& str, const ContextAttribValueFmt& attribFmt) in operator <<() argument
92 return str << (int)attribFmt.value; in operator <<()
95 return str << getAPIStr(attribFmt.value); in operator <<()
98 return str << getRenderBufferStr(attribFmt.value); in operator <<()
101 return str << tcu::toHex(attribFmt.value); in operator <<()
105 std::ostream& operator<< (std::ostream& str, const SurfaceAttribValueFmt& attribFmt) in operator <<() argument
115 return str << (int)attribFmt.value; in operator <<()
119 return str << getBoolDontCareStr(attribFmt.value); in operator <<()
122 return str << getMultisampleResolveStr(attribFmt.value); in operator <<()
125 return str << getRenderBufferStr(attribFmt.value); in operator <<()
128 return str << getSwapBehaviorStr(attribFmt.value); in operator <<()
131 return str << getTextureFormatStr(attribFmt.value); in operator <<()
134 return str << getTextureTargetStr(attribFmt.value); in operator <<()
137 return str << getAlphaFormatStr(attribFmt.value); in operator <<()
140 return str << getColorspaceStr(attribFmt.value); in operator <<()
143 return str << tcu::toHex(attribFmt.value); in operator <<()
147 std::ostream& operator<< (std::ostream& str, const ConfigAttribListFmt& fmt) in operator <<() argument
151 str << "{ "; in operator <<()
158 str << ", "; in operator <<()
163 str << "EGL_NONE"; in operator <<()
172 str << attribName << ", " << getConfigAttribValueStr(attrib, fmt.attribs[pos+1]); in operator <<()
178 str << tcu::toHex(attrib) << ", ???"; in operator <<()
183 str << " }"; in operator <<()
184 return str; in operator <<()
187 std::ostream& operator<< (std::ostream& str, const SurfaceAttribListFmt& fmt) in operator <<() argument
191 str << "{ "; in operator <<()
198 str << ", "; in operator <<()
203 str << "EGL_NONE"; in operator <<()
212 str << attribName << ", " << getSurfaceAttribValueStr(attrib, fmt.attribs[pos+1]); in operator <<()
218 str << tcu::toHex(attrib) << ", ???"; in operator <<()
223 str << " }"; in operator <<()
224 return str; in operator <<()
227 std::ostream& operator<< (std::ostream& str, const ContextAttribListFmt& fmt) in operator <<() argument
231 str << "{ "; in operator <<()
238 str << ", "; in operator <<()
243 str << "EGL_NONE"; in operator <<()
252 str << attribName << ", " << getContextAttribValueStr(attrib, fmt.attribs[pos+1]); in operator <<()
258 str << tcu::toHex(attrib) << ", ???"; in operator <<()
263 str << " }"; in operator <<()
264 return str; in operator <<()