• Home
  • Raw
  • Download

Lines Matching refs:fmt

61 std::ostream& operator<< (std::ostream& str, PointerFmt<T> fmt)  in operator <<()  argument
63 if (fmt.arr != DE_NULL) in operator <<()
66 for (deUint32 ndx = 0; ndx < fmt.size; ndx++) in operator <<()
70 str << fmt.arr[ndx]; in operator <<()
98 inline std::ostream& operator<< (std::ostream& str, EnumPointerFmt fmt) in operator <<() argument
100 if (fmt.value) in operator <<()
101 return str << tcu::Format::Enum<int, 2>(fmt.getName, *fmt.value); in operator <<()
120 inline std::ostream& operator<< (std::ostream& str, StringFmt fmt) in operator <<() argument
122 return str << (fmt.str ? fmt.str : "NULL"); in operator <<()
139 inline std::ostream& operator<< (std::ostream& str, const ConfigAttribValuePointerFmt& fmt) in operator <<() argument
141 if (fmt.value) in operator <<()
142 return str << getConfigAttribValueStr(fmt.attrib, *fmt.value); in operator <<()
159 inline std::ostream& operator<< (std::ostream& str, const ContextAttribValuePointerFmt& fmt) in operator <<() argument
161 if (fmt.value) in operator <<()
162 return str << getContextAttribValueStr(fmt.attrib, *fmt.value); in operator <<()
179 inline std::ostream& operator<< (std::ostream& str, const SurfaceAttribValuePointerFmt& fmt) in operator <<() argument
181 if (fmt.value) in operator <<()
182 return str << getSurfaceAttribValueStr(fmt.attrib, *fmt.value); in operator <<()
198 inline std::ostream& operator<< (std::ostream& str, const EGLDisplayFmt& fmt) in operator <<() argument
200 if (fmt.display == EGL_NO_DISPLAY) in operator <<()
203 return str << toHex(fmt.display); in operator <<()
217 inline std::ostream& operator<< (std::ostream& str, const EGLSurfaceFmt& fmt) in operator <<() argument
219 if (fmt.surface == EGL_NO_SURFACE) in operator <<()
222 return str << toHex(fmt.surface); in operator <<()
236 inline std::ostream& operator<< (std::ostream& str, const EGLContextFmt& fmt) in operator <<() argument
238 if (fmt.context == EGL_NO_CONTEXT) in operator <<()
241 return str << toHex(fmt.context); in operator <<()