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

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
remove.c 59 struct stat sb; local
63 if (lstat(file, &sb) < 0)
70 if (S_ISDIR(sb.st_mode))
  /external/libcxx/test/libcxx/input.output/string.streams/
traits_mismatch.fail.cpp 22 std::basic_stringbuf<char, std::char_traits<wchar_t> > sb; local
  /external/libcxx/test/std/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);
30 sb.freeze(false);
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"));
26 sb.freeze(false);
  /external/libcxx/test/std/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);
  /external/libcxx/test/std/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);
  /external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.cons/
copy.fail.cpp 24 std::streambuf sb = get(); // expected-error {{calling a protected constructor}} local
default.fail.cpp 21 std::basic_streambuf<char> sb; local
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/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);
30 sb.freeze(false);
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"));
26 sb.freeze(false);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/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);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/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);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/stream.buffers/streambuf/streambuf.cons/
copy.fail.cpp 24 std::streambuf sb = get(); // expected-error {{calling a protected constructor}} local
default.fail.cpp 21 std::basic_streambuf<char> sb; local
  /external/libcxx/test/std/depr/depr.str.strstreams/depr.istrstream/depr.istrstream.members/
rdbuf.pass.cpp 24 std::strstreambuf* sb = in.rdbuf(); local
25 assert(sb->sgetc() == '1');
  /external/libcxx/test/std/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');
  /external/libcxx/test/std/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');
  /external/libcxx/test/std/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);
  /external/libcxx/test/std/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);
  /external/libcxx/test/std/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);
  /external/libcxx/test/std/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);

Completed in 349 milliseconds

1 2 3 4 5 6 7 8 91011>>