HomeSort by relevance Sort by last modified time
    Searched refs:ss (Results 26 - 50 of 1504) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/libcxx/test/std/input.output/string.streams/istringstream/istringstream.cons/
string.pass.cpp 24 std::istringstream ss(" 123 456");
25 assert(ss.rdbuf() != 0);
26 assert(ss.good());
27 assert(ss.str() == " 123 456");
29 ss >> i;
31 ss >> i;
35 std::istringstream ss(" 123 456", std::ios_base::out);
36 assert(ss.rdbuf() != 0);
37 assert(ss.good());
38 assert(ss.str() == " 123 456")
    [all...]
move.pass.cpp 25 std::istringstream ss(std::move(ss0));
26 assert(ss.rdbuf() != 0);
27 assert(ss.good());
28 assert(ss.str() == " 123 456");
30 ss >> i;
32 ss >> i;
37 std::wistringstream ss(std::move(ss0));
38 assert(ss.rdbuf() != 0);
39 assert(ss.good());
40 assert(ss.str() == L" 123 456")
    [all...]
  /external/libcxx/test/std/input.output/string.streams/ostringstream/ostringstream.cons/
string.pass.cpp 24 std::ostringstream ss(" 123 456");
25 assert(ss.rdbuf() != 0);
26 assert(ss.good());
27 assert(ss.str() == " 123 456");
29 ss << i << ' ' << 567;;
30 assert(ss.str() == "234 5676");
33 std::ostringstream ss(" 123 456", std::ios_base::in);
34 assert(ss.rdbuf() != 0);
35 assert(ss.good());
36 assert(ss.str() == " 123 456")
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
ServerSocketTest.java 27 final ServerSocket ss = new ServerSocket(0); local
28 ss.setReuseAddress(true);
31 ss.setSoTimeout(1234);
36 result[0] = ss.accept();
44 new Socket(ss.getInetAddress(), ss.getLocalPort());
50 ServerSocket ss = new ServerSocket(); local
52 assertFalse(ss.isBound());
53 assertFalse(ss.isClosed());
54 assertEquals(-1, ss.getLocalPort())
65 ServerSocket ss = new ServerSocket(); local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/string.streams/istringstream/istringstream.cons/
string.pass.cpp 24 std::istringstream ss(" 123 456");
25 assert(ss.rdbuf() != 0);
26 assert(ss.good());
27 assert(ss.str() == " 123 456");
29 ss >> i;
31 ss >> i;
35 std::istringstream ss(" 123 456", std::ios_base::out);
36 assert(ss.rdbuf() != 0);
37 assert(ss.good());
38 assert(ss.str() == " 123 456")
    [all...]
move.pass.cpp 25 std::istringstream ss(std::move(ss0));
26 assert(ss.rdbuf() != 0);
27 assert(ss.good());
28 assert(ss.str() == " 123 456");
30 ss >> i;
32 ss >> i;
37 std::wistringstream ss(std::move(ss0));
38 assert(ss.rdbuf() != 0);
39 assert(ss.good());
40 assert(ss.str() == L" 123 456")
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/string.streams/ostringstream/ostringstream.cons/
string.pass.cpp 24 std::ostringstream ss(" 123 456");
25 assert(ss.rdbuf() != 0);
26 assert(ss.good());
27 assert(ss.str() == " 123 456");
29 ss << i << ' ' << 567;;
30 assert(ss.str() == "234 5676");
33 std::ostringstream ss(" 123 456", std::ios_base::in);
34 assert(ss.rdbuf() != 0);
35 assert(ss.good());
36 assert(ss.str() == " 123 456")
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/preprocessor/seq/
fold_left.hpp 33 # define BOOST_PP_SEQ_FOLD_LEFT_257(op, st, ss) BOOST_PP_ERROR(0x0005)
34 # define BOOST_PP_SEQ_FOLD_LEFT_I_257(op, st, ss, sz) BOOST_PP_ERROR(0x0005)
38 # define BOOST_PP_SEQ_FOLD_LEFT_CHECK_BOOST_PP_SEQ_FOLD_LEFT_I_1(op, st, ss, sz) 0
39 # define BOOST_PP_SEQ_FOLD_LEFT_CHECK_BOOST_PP_SEQ_FOLD_LEFT_I_2(op, st, ss, sz) 0
40 # define BOOST_PP_SEQ_FOLD_LEFT_CHECK_BOOST_PP_SEQ_FOLD_LEFT_I_3(op, st, ss, sz) 0
41 # define BOOST_PP_SEQ_FOLD_LEFT_CHECK_BOOST_PP_SEQ_FOLD_LEFT_I_4(op, st, ss, sz) 0
42 # define BOOST_PP_SEQ_FOLD_LEFT_CHECK_BOOST_PP_SEQ_FOLD_LEFT_I_5(op, st, ss, sz) 0
43 # define BOOST_PP_SEQ_FOLD_LEFT_CHECK_BOOST_PP_SEQ_FOLD_LEFT_I_6(op, st, ss, sz) 0
44 # define BOOST_PP_SEQ_FOLD_LEFT_CHECK_BOOST_PP_SEQ_FOLD_LEFT_I_7(op, st, ss, sz) 0
45 # define BOOST_PP_SEQ_FOLD_LEFT_CHECK_BOOST_PP_SEQ_FOLD_LEFT_I_8(op, st, ss, sz)
    [all...]
  /external/libcxx/test/std/input.output/string.streams/istringstream/istringstream.assign/
member_swap.pass.cpp 24 std::istringstream ss(" 789 321");
25 ss.swap(ss0);
26 assert(ss.rdbuf() != 0);
27 assert(ss.good());
28 assert(ss.str() == " 123 456");
30 ss >> i;
32 ss >> i;
41 std::wistringstream ss(L" 789 321");
42 ss.swap(ss0);
43 assert(ss.rdbuf() != 0)
    [all...]
nonmember_swap.pass.cpp 27 std::istringstream ss(" 789 321");
28 swap(ss, ss0);
29 assert(ss.rdbuf() != 0);
30 assert(ss.good());
31 assert(ss.str() == " 123 456");
33 ss >> i;
35 ss >> i;
44 std::wistringstream ss(L" 789 321");
45 swap(ss, ss0);
46 assert(ss.rdbuf() != 0)
    [all...]
  /external/libcxx/test/std/input.output/string.streams/ostringstream/ostringstream.assign/
member_swap.pass.cpp 24 std::ostringstream ss; local
25 ss.swap(ss0);
26 assert(ss.rdbuf() != 0);
27 assert(ss.good());
28 assert(ss.str() == " 123 456");
30 ss << i << ' ' << 567;;
31 assert(ss.str() == "234 5676");
37 std::wostringstream ss; local
38 ss.swap(ss0);
39 assert(ss.rdbuf() != 0)
    [all...]
move.pass.cpp 25 std::ostringstream ss; local
26 ss = std::move(ss0);
27 assert(ss.rdbuf() != 0);
28 assert(ss.good());
29 assert(ss.str() == " 123 456");
31 ss << i << ' ' << 567;;
32 assert(ss.str() == "234 5676");
36 std::wostringstream ss; local
37 ss = std::move(ss0);
38 assert(ss.rdbuf() != 0)
    [all...]
nonmember_swap.pass.cpp 24 std::ostringstream ss; local
25 swap(ss, ss0);
26 assert(ss.rdbuf() != 0);
27 assert(ss.good());
28 assert(ss.str() == " 123 456");
30 ss << i << ' ' << 567;;
31 assert(ss.str() == "234 5676");
37 std::wostringstream ss; local
38 swap(ss, ss0);
39 assert(ss.rdbuf() != 0)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/string.streams/istringstream/istringstream.assign/
member_swap.pass.cpp 24 std::istringstream ss(" 789 321");
25 ss.swap(ss0);
26 assert(ss.rdbuf() != 0);
27 assert(ss.good());
28 assert(ss.str() == " 123 456");
30 ss >> i;
32 ss >> i;
41 std::wistringstream ss(L" 789 321");
42 ss.swap(ss0);
43 assert(ss.rdbuf() != 0)
    [all...]
move.pass.cpp 25 std::istringstream ss; local
26 ss = std::move(ss0);
27 assert(ss.rdbuf() != 0);
28 assert(ss.good());
29 assert(ss.str() == " 123 456");
31 ss >> i;
33 ss >> i;
38 std::wistringstream ss; local
39 ss = std::move(ss0);
40 assert(ss.rdbuf() != 0)
    [all...]
nonmember_swap.pass.cpp 27 std::istringstream ss(" 789 321");
28 swap(ss, ss0);
29 assert(ss.rdbuf() != 0);
30 assert(ss.good());
31 assert(ss.str() == " 123 456");
33 ss >> i;
35 ss >> i;
44 std::wistringstream ss(L" 789 321");
45 swap(ss, ss0);
46 assert(ss.rdbuf() != 0)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/string.streams/ostringstream/ostringstream.assign/
member_swap.pass.cpp 24 std::ostringstream ss; local
25 ss.swap(ss0);
26 assert(ss.rdbuf() != 0);
27 assert(ss.good());
28 assert(ss.str() == " 123 456");
30 ss << i << ' ' << 567;;
31 assert(ss.str() == "234 5676");
37 std::wostringstream ss; local
38 ss.swap(ss0);
39 assert(ss.rdbuf() != 0)
    [all...]
move.pass.cpp 25 std::ostringstream ss; local
26 ss = std::move(ss0);
27 assert(ss.rdbuf() != 0);
28 assert(ss.good());
29 assert(ss.str() == " 123 456");
31 ss << i << ' ' << 567;;
32 assert(ss.str() == "234 5676");
36 std::wostringstream ss; local
37 ss = std::move(ss0);
38 assert(ss.rdbuf() != 0)
    [all...]
nonmember_swap.pass.cpp 24 std::ostringstream ss; local
25 swap(ss, ss0);
26 assert(ss.rdbuf() != 0);
27 assert(ss.good());
28 assert(ss.str() == " 123 456");
30 ss << i << ' ' << 567;;
31 assert(ss.str() == "234 5676");
37 std::wostringstream ss; local
38 swap(ss, ss0);
39 assert(ss.rdbuf() != 0)
    [all...]
  /external/webrtc/webrtc/
config.cc 17 std::stringstream ss; local
18 ss << "{ulpfec_payload_type: " << ulpfec_payload_type;
19 ss << ", red_payload_type: " << red_payload_type;
20 ss << '}';
21 return ss.str();
25 std::stringstream ss; local
26 ss << "{name: " << name;
27 ss << ", id: " << id;
28 ss << '}';
29 return ss.str()
66 std::stringstream ss; local
96 std::stringstream ss; local
    [all...]
  /external/clang/test/CodeGen/
arm-be-result-return.c 23 extern struct Ss { short s; } ss;
24 struct Ss callee_ss() { return ss; }
31 ss = callee_ss();
x86_64-arguments-darwin.c 13 str ss; variable
16 func(ss);
  /external/strace/tests/
sigaltstack.c 6 stack_t ss = { local
11 return sigaltstack(&ss, (stack_t *) 0) ? 77 : 0;
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
ServiceStateTest.java 33 ServiceState ss = new ServiceState(); local
35 ss.setCdmaDefaultRoamingIndicator(1);
36 assertEquals(1, ss.getCdmaDefaultRoamingIndicator());
38 ss.setCdmaEriIconIndex(2);
39 assertEquals(2, ss.getCdmaEriIconIndex());
41 ss.setCdmaEriIconMode(3);
42 assertEquals(3, ss.getCdmaEriIconMode());
44 ss.setCdmaRoamingIndicator(4);
45 assertEquals(4, ss.getCdmaRoamingIndicator());
47 ss.setDataRoamingType(ServiceState.ROAMING_TYPE_DOMESTIC)
61 ServiceState ss = new ServiceState(); local
72 ServiceState ss = new ServiceState(); local
119 ServiceState ss = new ServiceState(); local
138 ServiceState ss = new ServiceState(); local
157 ServiceState ss = new ServiceState(); local
    [all...]
  /art/runtime/
thread_linux.cc 50 stack_t ss;
51 ss.ss_sp = new uint8_t[kHostAltSigStackSize];
52 ss.ss_size = kHostAltSigStackSize;
53 ss.ss_flags = 0;
54 CHECK(ss.ss_sp != nullptr);
55 SigAltStack(&ss, nullptr);
58 ss.ss_sp = nullptr;
59 SigAltStack(nullptr, &ss);
60 VLOG(threads) << "Alternate signal stack is " << PrettySize(ss.ss_size) << " at " << ss.ss_sp
    [all...]

Completed in 2027 milliseconds

12 3 4 5 6 7 8 91011>>