/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/std.ios.manip/fmtflags.manip/ |
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/tests/device/stat/jni/ |
stat.c | 24 struct stat sb; local 31 if (stat(paths[i], &sb) != 0) 36 printf("%14s %6ld: %s%s%s %s %s %s %s\n", paths[i], sb.st_size, 38 printf("%14s %6lld: %s%s%s %s %s %s %s\n", paths[i], sb.st_size, 40 ((sb.st_mode & S_IRUSR)? "r" : " "), 41 ((sb.st_mode & S_IWUSR)? "w" : " "), 42 ((sb.st_mode & S_IXUSR)? "x" : " "), 43 (((sb.st_mode & S_IFMT) == S_IFREG)? "REG" : " "), 44 (((sb.st_mode & S_IFMT) == S_IFDIR)? "DIR" : " "), 45 (((sb.st_mode & S_IFMT) == S_IFLNK)? "LNK" : " ") [all...] |
/bionic/tests/ |
sys_statvfs_test.cpp | 27 template <typename StatVfsT> void Check(StatVfsT& sb) { 28 EXPECT_EQ(4096U, sb.f_bsize); 29 EXPECT_EQ(0U, sb.f_bfree); 30 EXPECT_EQ(0U, sb.f_ffree); 31 EXPECT_EQ(0U, sb.f_fsid); 32 EXPECT_EQ(255U, sb.f_namemax); 37 EXPECT_TRUE((sb.f_flag & ST_VALID) == 0) << sb.f_flag; 41 struct statvfs sb; local 42 ASSERT_EQ(0, statvfs("/proc", &sb)); 47 struct statvfs64 sb; local 53 struct statvfs sb; local 61 struct statvfs64 sb; local [all...] |
sys_vfs_test.cpp | 27 template <typename StatFsT> void Check(StatFsT& sb) { 28 EXPECT_EQ(4096, static_cast<int>(sb.f_bsize)); 29 EXPECT_EQ(0U, sb.f_bfree); 30 EXPECT_EQ(0U, sb.f_ffree); 31 EXPECT_EQ(0, sb.f_fsid.__val[0]); 32 EXPECT_EQ(0, sb.f_fsid.__val[1]); 33 EXPECT_EQ(255, static_cast<int>(sb.f_namelen)); 38 EXPECT_TRUE((sb.f_flags & ST_VALID) == 0) << sb.f_flags; 42 struct statfs sb; local 48 struct statfs64 sb; local 54 struct statfs sb; local 62 struct statfs64 sb; local [all...] |
/external/clang/test/CodeGen/ |
2007-04-24-str-const.c | 13 sb(void) function
|
/external/libcxx/test/std/input.output/iostream.format/input.streams/iostreamclass/iostream.cons/ |
move.pass.cpp | 34 test_iostream(testbuf<CharT>* sb) : base(sb) {} 46 testbuf<char> sb; local 47 test_iostream<char> is1(&sb); 49 assert(is1.rdbuf() == &sb); 62 testbuf<wchar_t> sb; local 63 test_iostream<wchar_t> is1(&sb); 67 assert(is1.rdbuf() == &sb);
|
/external/libcxx/test/std/input.output/iostream.format/input.streams/istream/istream.cons/ |
move.pass.cpp | 34 test_istream(testbuf<CharT>* sb) : base(sb) {} 46 testbuf<char> sb; local 47 test_istream<char> is1(&sb); 49 assert(is1.rdbuf() == &sb); 62 testbuf<wchar_t> sb; local 63 test_istream<wchar_t> is1(&sb); 67 assert(is1.rdbuf() == &sb);
|
/external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.cons/ |
move.pass.cpp | 34 test_ostream(testbuf<CharT>* sb) : base(sb) {} 46 testbuf<char> sb; local 47 test_ostream<char> os1(&sb); 49 assert(os1.rdbuf() == &sb); 60 testbuf<wchar_t> sb; local 61 test_ostream<wchar_t> os1(&sb); 63 assert(os1.rdbuf() == &sb);
|
/external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.manip/ |
flush.pass.cpp | 45 testbuf<char> sb; local 46 std::ostream os(&sb); 52 testbuf<wchar_t> sb; local 53 std::wostream os(&sb);
|
/external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.unformatted/ |
flush.pass.cpp | 45 testbuf<char> sb; local 46 std::ostream os(&sb);
|
/external/libcxx/test/std/input.output/iostream.format/output.streams/ostream_sentry/ |
destruct.pass.cpp | 46 testbuf1<char> sb; local 47 std::ostream os(&sb); 53 testbuf1<char> sb; local 54 std::ostream os(&sb); 61 testbuf1<char> sb; local 62 std::ostream os(&sb);
|
/frameworks/base/libs/androidfw/ |
misc.cpp | 38 struct stat sb; local 40 if (stat(fileName, &sb) < 0) { 49 if (S_ISREG(sb.st_mode)) 51 else if (S_ISDIR(sb.st_mode)) 53 else if (S_ISCHR(sb.st_mode)) 55 else if (S_ISBLK(sb.st_mode)) 57 else if (S_ISFIFO(sb.st_mode)) 60 else if (S_ISLNK(sb.st_mode)) 64 else if (S_ISSOCK(sb.st_mode)) 77 struct stat sb; local [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/input.streams/iostreamclass/iostream.cons/ |
move.pass.cpp | 34 test_iostream(testbuf<CharT>* sb) : base(sb) {} 46 testbuf<char> sb; local 47 test_iostream<char> is1(&sb); 49 assert(is1.rdbuf() == &sb); 62 testbuf<wchar_t> sb; local 63 test_iostream<wchar_t> is1(&sb); 67 assert(is1.rdbuf() == &sb);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/input.streams/istream/istream.cons/ |
move.pass.cpp | 34 test_istream(testbuf<CharT>* sb) : base(sb) {} 46 testbuf<char> sb; local 47 test_istream<char> is1(&sb); 49 assert(is1.rdbuf() == &sb); 62 testbuf<wchar_t> sb; local 63 test_istream<wchar_t> is1(&sb); 67 assert(is1.rdbuf() == &sb);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/output.streams/ostream.cons/ |
move.pass.cpp | 34 test_ostream(testbuf<CharT>* sb) : base(sb) {} 46 testbuf<char> sb; local 47 test_ostream<char> os1(&sb); 49 assert(os1.rdbuf() == &sb); 60 testbuf<wchar_t> sb; local 61 test_ostream<wchar_t> os1(&sb); 63 assert(os1.rdbuf() == &sb);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/output.streams/ostream.manip/ |
flush.pass.cpp | 45 testbuf<char> sb; local 46 std::ostream os(&sb); 52 testbuf<wchar_t> sb; local 53 std::wostream os(&sb);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/output.streams/ostream.unformatted/ |
flush.pass.cpp | 45 testbuf<char> sb; local 46 std::ostream os(&sb);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/output.streams/ostream_sentry/ |
destruct.pass.cpp | 46 testbuf1<char> sb; local 47 std::ostream os(&sb); 53 testbuf1<char> sb; local 54 std::ostream os(&sb); 61 testbuf1<char> sb; local 62 std::ostream os(&sb);
|
/system/extras/squashfs_utils/ |
squashfs_utils.c | 32 struct squashfs_super_block sb; local 41 if (TEMP_FAILURE_RETRY(read(data_device, &sb, sizeof(sb))) 42 != sizeof(sb)) { 47 if (sb.s_magic != SQUASHFS_MAGIC) { 53 info->block_size = sb.block_size; 54 info->inodes = sb.inodes; 55 info->bytes_used = sb.bytes_used; 58 sb.bytes_used + (4096 - (sb.bytes_used & (4096 - 1))) [all...] |
/bionic/libc/bionic/ |
pathconf.cpp | 143 struct statfs sb; local 144 if (statfs(path, &sb) == -1) { 147 return __pathconf(sb, name); 151 struct statfs sb; local 152 if (fstatfs(fd, &sb) == -1) { 155 return __pathconf(sb, name);
|
/external/jmonkeyengine/engine/src/core/com/jme3/shader/ |
ShaderUtils.java | 38 StringBuilder sb = new StringBuilder(); local 39 sb.append("#version 130\n"); 46 sb.append(input); 47 return sb.toString();
|
/external/libcxx/test/std/algorithms/alg.nonmodifying/alg.find.first.of/ |
find_first_of.pass.cpp | 27 const unsigned sb = sizeof(ib)/sizeof(ib[0]); local 31 forward_iterator<const int*>(ib + sb)) ==
|