OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:sb
(Results
51 - 75
of
2607
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/libcxx/test/std/input.output/iostreams.base/std.ios.manip/fmtflags.manip/
noskipws.pass.cpp
24
testbuf
sb
;
local
25
std::ios ios(&
sb
);
nounitbuf.pass.cpp
24
testbuf
sb
;
local
25
std::ios ios(&
sb
);
nouppercase.pass.cpp
24
testbuf
sb
;
local
25
std::ios ios(&
sb
);
showbase.pass.cpp
24
testbuf
sb
;
local
25
std::ios ios(&
sb
);
showpoint.pass.cpp
24
testbuf
sb
;
local
25
std::ios ios(&
sb
);
showpos.pass.cpp
24
testbuf
sb
;
local
25
std::ios ios(&
sb
);
skipws.pass.cpp
24
testbuf
sb
;
local
25
std::ios ios(&
sb
);
unitbuf.pass.cpp
24
testbuf
sb
;
local
25
std::ios ios(&
sb
);
uppercase.pass.cpp
24
testbuf
sb
;
local
25
std::ios ios(&
sb
);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.str.strstreams/depr.istrstream/depr.istrstream.members/
rdbuf.pass.cpp
24
std::strstreambuf*
sb
= in.rdbuf();
local
25
assert(
sb
->sgetc() == '1');
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.str.strstreams/depr.ostrstream/depr.ostrstream.members/
rdbuf.pass.cpp
24
std::strstreambuf*
sb
= out.rdbuf();
local
25
assert(
sb
->sputc('a') == 'a');
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.str.strstreams/depr.strstream/depr.strstream.dest/
rdbuf.pass.cpp
24
std::strstreambuf*
sb
= out.rdbuf();
local
25
assert(
sb
->sputc('a') == 'a');
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/input.streams/iostreamclass/iostream.cons/
streambuf.pass.cpp
15
// explicit basic_iostream(basic_streambuf<charT,traits>*
sb
);
30
testbuf<char>
sb
;
local
31
std::basic_iostream<char> is(&
sb
);
32
assert(is.rdbuf() == &
sb
);
43
testbuf<wchar_t>
sb
;
local
44
std::basic_iostream<wchar_t> is(&
sb
);
45
assert(is.rdbuf() == &
sb
);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/input.streams/istream/istream.cons/
streambuf.pass.cpp
15
// explicit basic_istream(basic_streambuf<charT,traits>*
sb
);
30
testbuf<char>
sb
;
local
31
std::basic_istream<char> is(&
sb
);
32
assert(is.rdbuf() == &
sb
);
43
testbuf<wchar_t>
sb
;
local
44
std::basic_istream<wchar_t> is(&
sb
);
45
assert(is.rdbuf() == &
sb
);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/output.streams/ostream.cons/
streambuf.pass.cpp
15
// explicit basic_ostream(basic_streambuf<charT,traits>*
sb
);
30
testbuf<char>
sb
;
local
31
std::basic_ostream<char> os(&
sb
);
32
assert(os.rdbuf() == &
sb
);
42
testbuf<wchar_t>
sb
;
local
43
std::basic_ostream<wchar_t> os(&
sb
);
44
assert(os.rdbuf() == &
sb
);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/std.manip/
resetiosflags.pass.cpp
27
testbuf<char>
sb
;
local
28
std::istream is(&
sb
);
34
testbuf<char>
sb
;
local
35
std::ostream os(&
sb
);
41
testbuf<wchar_t>
sb
;
local
42
std::wistream is(&
sb
);
48
testbuf<wchar_t>
sb
;
local
49
std::wostream os(&
sb
);
setbase.pass.cpp
27
testbuf<char>
sb
;
local
28
std::istream is(&
sb
);
39
testbuf<char>
sb
;
local
40
std::ostream os(&
sb
);
51
testbuf<wchar_t>
sb
;
local
52
std::wistream is(&
sb
);
63
testbuf<wchar_t>
sb
;
local
64
std::wostream os(&
sb
);
setfill.pass.cpp
27
testbuf<char>
sb
;
local
28
std::ostream os(&
sb
);
33
testbuf<wchar_t>
sb
;
local
34
std::wostream os(&
sb
);
setiosflags.pass.cpp
27
testbuf<char>
sb
;
local
28
std::istream is(&
sb
);
34
testbuf<char>
sb
;
local
35
std::ostream os(&
sb
);
41
testbuf<wchar_t>
sb
;
local
42
std::wistream is(&
sb
);
48
testbuf<wchar_t>
sb
;
local
49
std::wostream os(&
sb
);
setprecision.pass.cpp
27
testbuf<char>
sb
;
local
28
std::istream is(&
sb
);
33
testbuf<char>
sb
;
local
34
std::ostream os(&
sb
);
39
testbuf<wchar_t>
sb
;
local
40
std::wistream is(&
sb
);
45
testbuf<wchar_t>
sb
;
local
46
std::wostream os(&
sb
);
setw.pass.cpp
27
testbuf<char>
sb
;
local
28
std::istream is(&
sb
);
33
testbuf<char>
sb
;
local
34
std::ostream os(&
sb
);
39
testbuf<wchar_t>
sb
;
local
40
std::wistream is(&
sb
);
45
testbuf<wchar_t>
sb
;
local
46
std::wostream os(&
sb
);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios/basic.ios.members/
rdbuf_streambuf.pass.cpp
14
// basic_streambuf<charT,traits>* rdbuf(basic_streambuf<charT,traits>*
sb
);
25
std::streambuf*
sb
= (std::streambuf*)1;
local
26
std::streambuf* sb2 = ios.rdbuf(
sb
);
28
assert(ios.rdbuf() ==
sb
);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios/iostate.flags/
bad.pass.cpp
31
testbuf
sb
;
local
32
std::ios ios(&
sb
);
clear.pass.cpp
55
testbuf
sb
;
local
56
std::ios ios(&
sb
);
eof.pass.cpp
31
testbuf
sb
;
local
32
std::ios ios(&
sb
);
Completed in 126 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>