HomeSort by relevance Sort by last modified time
    Searched defs:sb (Results 1 - 25 of 1356) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/test/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.members/
freeze.pass.cpp 22 std::strstreambuf sb; local
23 sb.freeze(true);
24 assert(sb.sputc('a') == EOF);
25 sb.freeze(false);
26 assert(sb.sputc('a') == 'a');
pcount.pass.cpp 22 std::strstreambuf sb; local
23 assert(sb.pcount() == 0);
24 assert(sb.sputc('a') == 'a');
25 assert(sb.pcount() == 1);
26 assert(sb.sputc(0) == 0);
27 assert(sb.pcount() == 2);
28 assert(sb.str() == std::string("a"));
29 assert(sb.pcount() == 2);
str.pass.cpp 22 std::strstreambuf sb; local
23 assert(sb.sputc('a') == 'a');
24 assert(sb.sputc(0) == 0);
25 assert(sb.str() == std::string("a"));
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostreams.base/ios/basic.ios.cons/
ctor_streambuf.pass.cpp 14 // explicit basic_ios(basic_streambuf<charT,traits>* sb);
23 std::streambuf* sb = 0; local
24 std::basic_ios<char> ios(sb);
25 assert(ios.rdbuf() == sb);
36 std::streambuf* sb = (std::streambuf*)1; local
37 std::basic_ios<char> ios(sb);
38 assert(ios.rdbuf() == sb);
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostreams.base/ios/basic.ios.members/
rdbuf.pass.cpp 27 std::streambuf* sb = (std::streambuf*)1; local
28 const std::ios ios(sb);
29 assert(ios.rdbuf() == sb);
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++/test/input.output/stream.buffers/streambuf/streambuf.cons/
copy.fail.cpp 24 std::streambuf sb = get(); local
default.fail.cpp 21 std::basic_streambuf<char> sb; local
  /external/dropbear/libtommath/
bn_mp_add.c 21 int sa, sb, res; local
25 sb = b->sign;
28 if (sa == sb) {
39 c->sign = sb;
bn_mp_sub.c 22 int sa, sb, res; local
25 sb = b->sign;
27 if (sa != sb) {
  /ndk/sources/cxx-stl/llvm-libc++/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++/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++/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++/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++/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++/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++/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++/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 814 milliseconds

1 2 3 4 5 6 7 8 91011>>