HomeSort by relevance Sort by last modified time
    Searched full:alloc_first (Results 1 - 20 of 20) sorted by null

  /external/libcxx/test/utilities/tuple/tuple.tuple/tuple.cnstr/
alloc_const_Types.pass.cpp 21 #include "../alloc_first.h"
31 assert(!alloc_first::allocator_constructed);
32 std::tuple<alloc_first> t(std::allocator_arg, A1<int>(5), alloc_first(3));
33 assert(alloc_first::allocator_constructed);
34 assert(std::get<0>(t) == alloc_first(3));
43 alloc_first::allocator_constructed = false;
44 std::tuple<int, alloc_first> t(std::allocator_arg, A1<int>(5),
45 10, alloc_first(15));
47 assert(alloc_first::allocator_constructed)
    [all...]
alloc.pass.cpp 22 #include "../alloc_first.h"
39 assert(!alloc_first::allocator_constructed);
40 std::tuple<alloc_first> t(std::allocator_arg, A1<int>(5));
41 assert(alloc_first::allocator_constructed);
42 assert(std::get<0>(t) == alloc_first());
51 alloc_first::allocator_constructed = false;
52 std::tuple<DefaultOnly, alloc_first> t(std::allocator_arg, A1<int>(5));
54 assert(alloc_first::allocator_constructed);
55 assert(std::get<1>(t) == alloc_first());
58 alloc_first::allocator_constructed = false
    [all...]
alloc_const_pair.pass.cpp 22 #include "../alloc_first.h"
37 typedef std::tuple<alloc_first, double> T1;
39 alloc_first::allocator_constructed = false;
41 assert(alloc_first::allocator_constructed);
47 typedef std::tuple<alloc_first, alloc_last> T1;
49 alloc_first::allocator_constructed = false;
52 assert(alloc_first::allocator_constructed);
alloc_convert_copy.pass.cpp 21 #include "../alloc_first.h"
35 typedef std::tuple<alloc_first> T1;
37 alloc_first::allocator_constructed = false;
39 assert(alloc_first::allocator_constructed);
44 typedef std::tuple<alloc_first, alloc_last> T1;
46 alloc_first::allocator_constructed = false;
49 assert(alloc_first::allocator_constructed);
56 typedef std::tuple<int, alloc_first, alloc_last> T1;
58 alloc_first::allocator_constructed = false;
61 assert(alloc_first::allocator_constructed)
    [all...]
alloc_convert_move.pass.cpp 23 #include "../alloc_first.h"
45 typedef std::tuple<alloc_first> T1;
47 alloc_first::allocator_constructed = false;
49 assert(alloc_first::allocator_constructed);
61 typedef std::tuple<alloc_first, std::unique_ptr<B>> T1;
63 alloc_first::allocator_constructed = false;
65 assert(alloc_first::allocator_constructed);
71 typedef std::tuple<alloc_last, alloc_first, std::unique_ptr<B>> T1;
73 alloc_first::allocator_constructed = false;
76 assert(alloc_first::allocator_constructed)
    [all...]
alloc_copy.pass.cpp 21 #include "../alloc_first.h"
38 typedef std::tuple<alloc_first> T;
40 alloc_first::allocator_constructed = false;
42 assert(alloc_first::allocator_constructed);
54 typedef std::tuple<alloc_first, alloc_last> T;
56 alloc_first::allocator_constructed = false;
59 assert(alloc_first::allocator_constructed);
65 typedef std::tuple<int, alloc_first, alloc_last> T;
67 alloc_first::allocator_constructed = false;
70 assert(alloc_first::allocator_constructed)
    [all...]
alloc_move.pass.cpp 22 #include "../alloc_first.h"
39 typedef std::tuple<alloc_first> T;
41 alloc_first::allocator_constructed = false;
43 assert(alloc_first::allocator_constructed);
55 typedef std::tuple<MoveOnly, alloc_first> T;
57 alloc_first::allocator_constructed = false;
59 assert(alloc_first::allocator_constructed);
64 typedef std::tuple<MoveOnly, alloc_first, alloc_last> T;
66 alloc_first::allocator_constructed = false;
69 assert(alloc_first::allocator_constructed)
    [all...]
alloc_move_pair.pass.cpp 23 #include "../alloc_first.h"
45 typedef std::tuple<alloc_first, std::unique_ptr<B>> T1;
47 alloc_first::allocator_constructed = false;
49 assert(alloc_first::allocator_constructed);
alloc_UTypes.pass.cpp 22 #include "../alloc_first.h"
46 alloc_first::allocator_constructed = false;
48 std::tuple<int, alloc_first, alloc_last> t(std::allocator_arg,
51 assert(alloc_first::allocator_constructed);
52 assert(std::get<1>(t) == alloc_first(2));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.cnstr/
alloc_const_Types.pass.cpp 21 #include "../alloc_first.h"
31 assert(!alloc_first::allocator_constructed);
32 std::tuple<alloc_first> t(std::allocator_arg, A1<int>(5), alloc_first(3));
33 assert(alloc_first::allocator_constructed);
34 assert(std::get<0>(t) == alloc_first(3));
43 alloc_first::allocator_constructed = false;
44 std::tuple<int, alloc_first> t(std::allocator_arg, A1<int>(5),
45 10, alloc_first(15));
47 assert(alloc_first::allocator_constructed)
    [all...]
alloc.pass.cpp 22 #include "../alloc_first.h"
39 assert(!alloc_first::allocator_constructed);
40 std::tuple<alloc_first> t(std::allocator_arg, A1<int>(5));
41 assert(alloc_first::allocator_constructed);
42 assert(std::get<0>(t) == alloc_first());
51 alloc_first::allocator_constructed = false;
52 std::tuple<DefaultOnly, alloc_first> t(std::allocator_arg, A1<int>(5));
54 assert(alloc_first::allocator_constructed);
55 assert(std::get<1>(t) == alloc_first());
58 alloc_first::allocator_constructed = false
    [all...]
alloc_const_pair.pass.cpp 22 #include "../alloc_first.h"
37 typedef std::tuple<alloc_first, double> T1;
39 alloc_first::allocator_constructed = false;
41 assert(alloc_first::allocator_constructed);
47 typedef std::tuple<alloc_first, alloc_last> T1;
49 alloc_first::allocator_constructed = false;
52 assert(alloc_first::allocator_constructed);
alloc_convert_copy.pass.cpp 21 #include "../alloc_first.h"
35 typedef std::tuple<alloc_first> T1;
37 alloc_first::allocator_constructed = false;
39 assert(alloc_first::allocator_constructed);
44 typedef std::tuple<alloc_first, alloc_last> T1;
46 alloc_first::allocator_constructed = false;
49 assert(alloc_first::allocator_constructed);
56 typedef std::tuple<int, alloc_first, alloc_last> T1;
58 alloc_first::allocator_constructed = false;
61 assert(alloc_first::allocator_constructed)
    [all...]
alloc_convert_move.pass.cpp 23 #include "../alloc_first.h"
45 typedef std::tuple<alloc_first> T1;
47 alloc_first::allocator_constructed = false;
49 assert(alloc_first::allocator_constructed);
61 typedef std::tuple<alloc_first, std::unique_ptr<B>> T1;
63 alloc_first::allocator_constructed = false;
65 assert(alloc_first::allocator_constructed);
71 typedef std::tuple<alloc_last, alloc_first, std::unique_ptr<B>> T1;
73 alloc_first::allocator_constructed = false;
76 assert(alloc_first::allocator_constructed)
    [all...]
alloc_copy.pass.cpp 21 #include "../alloc_first.h"
38 typedef std::tuple<alloc_first> T;
40 alloc_first::allocator_constructed = false;
42 assert(alloc_first::allocator_constructed);
54 typedef std::tuple<alloc_first, alloc_last> T;
56 alloc_first::allocator_constructed = false;
59 assert(alloc_first::allocator_constructed);
65 typedef std::tuple<int, alloc_first, alloc_last> T;
67 alloc_first::allocator_constructed = false;
70 assert(alloc_first::allocator_constructed)
    [all...]
alloc_move.pass.cpp 22 #include "../alloc_first.h"
39 typedef std::tuple<alloc_first> T;
41 alloc_first::allocator_constructed = false;
43 assert(alloc_first::allocator_constructed);
55 typedef std::tuple<MoveOnly, alloc_first> T;
57 alloc_first::allocator_constructed = false;
59 assert(alloc_first::allocator_constructed);
64 typedef std::tuple<MoveOnly, alloc_first, alloc_last> T;
66 alloc_first::allocator_constructed = false;
69 assert(alloc_first::allocator_constructed)
    [all...]
alloc_move_pair.pass.cpp 23 #include "../alloc_first.h"
45 typedef std::tuple<alloc_first, std::unique_ptr<B>> T1;
47 alloc_first::allocator_constructed = false;
49 assert(alloc_first::allocator_constructed);
alloc_UTypes.pass.cpp 22 #include "../alloc_first.h"
46 alloc_first::allocator_constructed = false;
48 std::tuple<int, alloc_first, alloc_last> t(std::allocator_arg,
51 assert(alloc_first::allocator_constructed);
52 assert(std::get<1>(t) == alloc_first(2));
  /external/libcxx/test/utilities/tuple/tuple.tuple/
alloc_first.h 17 struct alloc_first struct
25 alloc_first() : data_(0) {} function in struct:alloc_first
26 alloc_first(int d) : data_(d) {} function in struct:alloc_first
27 alloc_first(std::allocator_arg_t, const A1<int>& a) function in struct:alloc_first
34 alloc_first(std::allocator_arg_t, const A1<int>& a, int d) function in struct:alloc_first
41 alloc_first(std::allocator_arg_t, const A1<int>& a, const alloc_first& d) function in struct:alloc_first
48 ~alloc_first() {data_ = -1;}
50 friend bool operator==(const alloc_first& x, const alloc_first& y
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/
alloc_first.h 17 struct alloc_first struct
25 alloc_first() : data_(0) {} function in struct:alloc_first
26 alloc_first(int d) : data_(d) {} function in struct:alloc_first
27 alloc_first(std::allocator_arg_t, const A1<int>& a) function in struct:alloc_first
34 alloc_first(std::allocator_arg_t, const A1<int>& a, int d) function in struct:alloc_first
41 alloc_first(std::allocator_arg_t, const A1<int>& a, const alloc_first& d) function in struct:alloc_first
48 ~alloc_first() {data_ = -1;}
50 friend bool operator==(const alloc_first& x, const alloc_first& y
    [all...]

Completed in 217 milliseconds