Lines Matching refs:s

54 ostream& __cdecl endl1( ostream& s ){  in endl1()  argument
56 s << endl; in endl1()
57 return s; in endl1()
60 ostream& __cdecl hex2( ostream& s ) { in hex2() argument
61 s.width( 2 ); s.fill( (const char)250 ); in hex2()
62 s << hex; in hex2()
63 return s; in hex2()
66 ostream& __cdecl hex4( ostream& s ) { in hex4() argument
67 s.width( 4 ); s.fill( (const char)250 ); in hex4()
68 s << hex ; in hex4()
69 return s; in hex4()
72 ostream& __cdecl hex6( ostream& s ) { in hex6() argument
73 s.width( 6 ); s.fill( (const char)250 ); in hex6()
74 s << hex ; in hex6()
75 return s; in hex6()
78 ostream& __cdecl hex8( ostream& s ) { in hex8() argument
79 s.width( 8 ); s.fill( (const char)250 ); in hex8()
80 s << hex ; in hex8()
81 return s; in hex8()
84 ostream& __cdecl dec2( ostream& s ) { in dec2() argument
85 s << dec; in dec2()
86 s.width( 0 ); s.fill( 0 ); in dec2()
87 return s; in dec2()
90 ostream& __cdecl filepos( ostream& s, SvStream& rSt ) { in filepos() argument
96 s << "D"; in filepos()
98 s << "T"; in filepos()
100 s.width( 6 ); in filepos()
101 s.fill( (const char)250 ); in filepos()
102 s << hex << pos << dec << ' '; in filepos()
103 s.width( 0 ); s.fill( 0 ); in filepos()
107 s << " "; in filepos()
109 s << " "; in filepos()
112 return s; in filepos()
115 ostream& __cdecl indent( ostream& s, SvStream& rSt ) { in indent() argument
116 filepos( s, rSt ); in indent()
117 for( int i = 0; i < level; i++ ) s << " "; in indent()
118 return s; in indent()
121 ostream& __cdecl indent1( ostream& s ) { in indent1() argument
122 for( int i = 0; i < level; i++ ) s << " "; in indent1()
123 return s; in indent1()
126 ostream& __cdecl indent2( ostream& s ) { in indent2() argument
128 s << " " << indent1; in indent2()
130 s << " " << indent1; in indent2()
132 return s; in indent2()
135 ostream& __cdecl begin( ostream& s, SvStream& rSt ) { indent( s, rSt ) << "BEGIN "; level++; retu… in begin() argument
138 ostream& __cdecl begin1( ostream& s ) { s << "BEGIN "; level++; return s; } in begin1() argument
141 ostream& __cdecl begin2( ostream& s ) { s << indent2 << "BEGIN "; level++; return s; } in begin2() argument
143 ostream& __cdecl end( ostream& s, SvStream& rSt ) { level--; return indent( s, rSt ) << "END "; } in end() argument
146 ostream& __cdecl end1( ostream& s ) { level--; return s << indent1 << "END "; } in end1() argument
149 ostream& __cdecl end2( ostream& s ) { level--; return s << indent2 << "END "; } in end2() argument