Lines Matching defs:fmt
174 inline std::ostream& operator<< (std::ostream& stream, const Enum<T, NumBytes>& fmt) { return fmt.toStream(stream); }
199 std::ostream& operator<< (std::ostream& str, const Array<Iterator>& fmt)
202 for (Iterator cur = fmt.begin; cur != fmt.end; ++cur)
204 if (cur != fmt.begin)
213 std::ostream& operator<< (std::ostream& str, const ArrayPointer<T>& fmt)
215 if (fmt.arr != DE_NULL)
216 return str << Array<const T*>(fmt.arr, fmt.arr+fmt.size);