HomeSort by relevance Sort by last modified time
    Searched refs:tie (Results 1 - 25 of 165) sorted by null

1 2 3 4 5 6 7

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios/basic.ios.members/
tie.pass.cpp 14 // basic_ostream<charT,traits>* tie() const;
22 assert(ios.tie() == 0);
tie_ostream.pass.cpp 14 // basic_ostream<charT,traits>* tie(basic_ostream<charT,traits>* tiestr);
23 std::ostream* r = ios.tie(os);
25 assert(ios.tie() == os);
move.pass.cpp 102 ios2.tie((std::ostream*)2);
127 assert(ios1.tie() == (std::ostream*)2);
137 assert(ios2.tie() == 0);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.objects/narrow.stream.objects/
cerr.pass.cpp 22 assert(std::cerr.tie() == &std::cout);
cin.pass.cpp 26 assert(std::cin.tie() == &std::cout);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.objects/wide.stream.objects/
wcerr.pass.cpp 22 assert(std::wcerr.tie() == &std::wcout);
wcin.pass.cpp 26 assert(std::wcin.tie() == &std::wcout);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.creation/
tie.pass.cpp 15 // tuple<Types&...> tie(Types&... t);
26 std::tie(i, std::ignore, s) = std::make_tuple(42, 3.14, "C++");
  /external/clang/test/Parser/
cxx0x-for-range.cpp 14 pair<T,U> &tie(T &, U &);
24 for (tie(p, n) : m) { // expected-error {{for range declaration must declare a variable}}
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
iostream.cpp 42 cin_ptr->tie(cout_ptr);
44 cerr_ptr->tie(cout_ptr);
50 wcin_ptr->tie(wcout_ptr);
52 wcerr_ptr->tie(wcout_ptr);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/input.streams/iostreamclass/iostream.assign/
member_swap.pass.cpp 46 assert(is1.tie() == 0);
54 assert(is2.tie() == 0);
69 assert(is1.tie() == 0);
77 assert(is2.tie() == 0);
move_assign.pass.cpp 52 assert(is1.tie() == 0);
60 assert(is2.tie() == 0);
75 assert(is1.tie() == 0);
83 assert(is2.tie() == 0);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/input.streams/istream/istream.assign/
member_swap.pass.cpp 46 assert(is1.tie() == 0);
54 assert(is2.tie() == 0);
69 assert(is1.tie() == 0);
77 assert(is2.tie() == 0);
move_assign.pass.cpp 52 assert(is1.tie() == 0);
60 assert(is2.tie() == 0);
75 assert(is1.tie() == 0);
83 assert(is2.tie() == 0);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/output.streams/ostream.assign/
member_swap.pass.cpp 46 assert(os1.tie() == 0);
54 assert(os2.tie() == 0);
69 assert(os1.tie() == 0);
77 assert(os2.tie() == 0);
move_assign.pass.cpp 52 assert(os1.tie() == 0);
60 assert(os2.tie() == 0);
75 assert(os1.tie() == 0);
83 assert(os2.tie() == 0);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/input.streams/iostreamclass/iostream.cons/
streambuf.pass.cpp 33 assert(is.tie() == 0);
46 assert(is.tie() == 0);
move.pass.cpp 53 assert(is.tie() == 0);
69 assert(is.tie() == 0);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/input.streams/istream/istream.cons/
streambuf.pass.cpp 33 assert(is.tie() == 0);
46 assert(is.tie() == 0);
move.pass.cpp 53 assert(is.tie() == 0);
69 assert(is.tie() == 0);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/output.streams/ostream.cons/
streambuf.pass.cpp 33 assert(os.tie() == 0);
45 assert(os.tie() == 0);
move.pass.cpp 51 assert(os.tie() == 0);
65 assert(os.tie() == 0);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios/basic.ios.cons/
ctor_streambuf.pass.cpp 26 assert(ios.tie() == 0);
39 assert(ios.tie() == 0);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/output.streams/ostream_sentry/
construct.pass.cpp 55 os.tie(&os2);
  /external/clang/lib/StaticAnalyzer/Checkers/
BoolAssignmentChecker.cpp 99 llvm::tie(stateGE, stateLT) = CM.assumeDual(state, *greaterThanEqualToZero);
135 llvm::tie(stateLE, stateGT) = CM.assumeDual(state, *lessThanEqToOne);

Completed in 133 milliseconds

1 2 3 4 5 6 7