HomeSort by relevance Sort by last modified time
    Searched defs:sb (Results 101 - 125 of 1988) sorted by null

1 2 3 45 6 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/std.ios.manip/fmtflags.manip/
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/tests/device/stat/jni/
stat.c 24 struct stat sb; local
31 if (stat(paths[i], &sb) != 0)
35 printf("%14s %6lld: %s%s%s %s %s %s %s\n", paths[i], sb.st_size,
36 ((sb.st_mode & S_IRUSR)? "r" : " "),
37 ((sb.st_mode & S_IWUSR)? "w" : " "),
38 ((sb.st_mode & S_IXUSR)? "x" : " "),
39 (((sb.st_mode & S_IFMT) == S_IFREG)? "REG" : " "),
40 (((sb.st_mode & S_IFMT) == S_IFDIR)? "DIR" : " "),
41 (((sb.st_mode & S_IFMT) == S_IFLNK)? "LNK" : " "),
42 (((sb.st_mode & S_IFMT) == S_IFCHR)? "CHR" : " "))
    [all...]
  /external/smali/util/src/test/java/org/jf/util/
ClassFileNameHandlerTest.java 40 StringBuilder sb = new StringBuilder(); local
42 sb.append((char)i);
45 String result = ClassFileNameHandler.shortenPathComponent(sb.toString(), 255);
  /external/clang/test/CodeGen/
2007-04-24-str-const.c 13 sb(void) function
  /external/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);
  /external/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);
  /external/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);
  /external/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);
  /external/libcxx/test/input.output/iostream.format/output.streams/ostream.unformatted/
flush.pass.cpp 45 testbuf<char> sb; local
46 std::ostream os(&sb);
  /external/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);
  /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))
62 else if (S_ISSOCK(sb.st_mode))
75 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);
  /bionic/tests/
sys_stat_test.cpp 40 struct stat sb; local
41 ASSERT_EQ(0, fstat(fd, &sb));
42 ASSERT_EQ(times[0].tv_sec, static_cast<long>(sb.st_atime));
43 ASSERT_EQ(times[1].tv_sec, static_cast<long>(sb.st_mtime));
68 struct stat sb; local
69 ASSERT_EQ(0, stat(path.c_str(), &sb));
70 ASSERT_TRUE(S_ISFIFO(sb.st_mode));
78 struct stat64 sb; local
79 ASSERT_EQ(0, stat64("/proc/version", &sb));
80 ASSERT_EQ(0, lstat64("/proc/version", &sb));
    [all...]
  /external/libcxx/test/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)) ==
find_first_of_pred.pass.cpp 29 const unsigned sb = sizeof(ib)/sizeof(ib[0]); local
33 forward_iterator<const int*>(ib + sb),

Completed in 1076 milliseconds

1 2 3 45 6 7 8 91011>>