Lines Matching refs:TInfoSinkBase
68 class TInfoSinkBase {
70 TInfoSinkBase() : outputStream(4) {} in TInfoSinkBase() function
72 TInfoSinkBase& operator<<(const TPersistString& t) { append(t); return *this; }
73 TInfoSinkBase& operator<<(char c) { append(1, c); return *this; }
74 TInfoSinkBase& operator<<(const char* s) { append(s); return *this; }
75 TInfoSinkBase& operator<<(int n) { append(String(n)); return *this; }
76 TInfoSinkBase& operator<<(unsigned int n) { append(String(n)); return *this; }
77 TInfoSinkBase& operator<<(float n) { const int size = 40; char buf[size];
81 TInfoSinkBase& operator+(const TPersistString& t) { append(t); return *this; }
82 TInfoSinkBase& operator+(const TString& t) { append(t); return *this; }
83 TInfoSinkBase& operator<<(const TString& t) { append(t); return *this; }
84 TInfoSinkBase& operator+(const char* s) { append(s); return *this; }
140 glslang::TInfoSinkBase info;
141 glslang::TInfoSinkBase debug;