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

1 2 3 4 5 6 7 8 91011

  /external/libcxx/test/std/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);
  /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);
  /external/libcxx/test/std/input.output/iostream.objects/narrow.stream.objects/
cerr.pass.cpp 23 assert(std::cerr.tie() == NULL);
25 assert(std::cerr.tie() == &std::cout);
cin.pass.cpp 29 assert(std::cin.tie() == NULL);
31 assert(std::cin.tie() == &std::cout);
  /external/libcxx/test/std/input.output/iostream.objects/wide.stream.objects/
wcerr.pass.cpp 23 assert(std::wcerr.tie() == NULL);
25 assert(std::wcerr.tie() == &std::wcout);
wcin.pass.cpp 29 assert(std::wcin.tie() == NULL);
31 assert(std::wcin.tie() == &std::wcout);
  /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);
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.creation/
tie.pass.cpp 15 // tuple<Types&...> tie(Types&... t);
28 std::tie(i, std::ignore, s) = std::make_tuple(42, 3.14, "C++");
36 constexpr std::tuple<const int &, const double &> t = std::tie(i, f);
  /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++");
34 constexpr std::tuple<const int &, const double &> t = std::tie(i, f);
  /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}}
  /frameworks/base/tools/aapt2/
Resource.h 264 return std::tie(lhs.package, lhs.type, lhs.entry)
265 < std::tie(rhs.package, rhs.type, rhs.entry);
269 return std::tie(lhs.package, lhs.type, lhs.entry)
270 == std::tie(rhs.package, rhs.type, rhs.entry);
274 return std::tie(lhs.package, lhs.type, lhs.entry)
275 != std::tie(rhs.package, rhs.type, rhs.entry);
323 return std::tie(lhs.package, lhs.type, lhs.entry)
324 < std::tie(rhs.package, rhs.type, rhs.entry);
328 return std::tie(lhs.package, lhs.type, lhs.entry)
329 == std::tie(rhs.package, rhs.type, rhs.entry)
    [all...]
Resource.cpp 89 return std::tie(a.name, a.config) < std::tie(b.name, b.config);
93 return std::tie(a.name, a.config) < std::tie(b.name, b.config);
  /external/libcxx/src/
iostream.cpp 62 cin_ptr->tie(cout_ptr);
63 wcin_ptr->tie(wcout_ptr);
68 cerr_ptr->tie(cout_ptr);
69 wcerr_ptr->tie(wcout_ptr);
  /external/libcxx/test/std/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);
  /external/libcxx/test/std/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);
  /external/libcxx/test/std/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/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);

Completed in 677 milliseconds

1 2 3 4 5 6 7 8 91011