/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/optional/optional.object/optional.object.observe/ |
D | value_or.pass.cpp | 31 struct X struct 35 X(int i) : i_(i) {} in X() argument 36 X(X&& x) : i_(x.i_) {x.i_ = 0;} in X() function 37 X(const Y& y) : i_(y.i_) {} in X() argument 38 X(Y&& y) : i_(y.i_+1) {} in X() function
|
D | value_or_const.pass.cpp | 29 struct X struct 33 constexpr X(int i) : i_(i) {} in X() argument 34 constexpr X(const Y& y) : i_(y.i_) {} in X() function 35 constexpr X(Y&& y) : i_(y.i_+1) {} in X() function
|
D | value_const.fail.cpp | 22 struct X struct 34 constexpr optional<X> opt; in main() argument
|
D | value.pass.cpp | 23 struct X struct 37 optional<X> opt; in main() argument
|
D | value_const.pass.cpp | 25 struct X struct 39 constexpr optional<X> opt(in_place); in main() argument
|
D | dereference.pass.cpp | 26 struct X struct 38 optional<X> opt(X{}); in main() argument
|
D | op_arrow.pass.cpp | 26 struct X struct 38 optional<X> opt(X{}); in main() argument
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
D | new7.cpp | 11 struct X { struct 12 X() in X() argument 33 X* x = new X; // gcc 3.0 fails to call operator delete when X::X throws in main() argument
|
D | delete1.cpp | 6 struct X { struct 16 X (*px) [10]; in main() argument
|
D | new5.cpp | 10 struct X { struct 13 X() { in X() argument
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
D | new7.cpp | 11 struct X { struct 12 X() in X() function 33 X* x = new X; // gcc 3.0 fails to call operator delete when X::X throws in main() argument
|
D | delete1.cpp | 6 struct X { struct 16 X (*px) [10]; in main() argument
|
D | new5.cpp | 10 struct X { struct 13 X() { in X() function
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/ |
D | F_incomplete.pass.cpp | 20 struct X{ struct 21 typedef std::function<void(X&)> callback_type; argument 22 virtual ~X() {} in ~X() argument 24 callback_type _cb;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/ |
D | TupleFunction.pass.cpp | 17 struct X struct 19 X() {} in X() function 30 X x; in main() argument
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/bind/ |
D | mem_fn.hpp | 34 #define BOOST_MEM_FN_TYPEDEF(X) argument 44 #define BOOST_MEM_FN_NAME(X) inner_##X argument 54 #define BOOST_MEM_FN_NAME(X) inner_##X##_cdecl argument 66 #define BOOST_MEM_FN_NAME(X) inner_##X##_stdcall argument 78 #define BOOST_MEM_FN_NAME(X) inner_##X##_fastcall argument 97 #define BOOST_MEM_FN_NAME(X) inner_##X argument 107 #define BOOST_MEM_FN_NAME(X) inner_##X##_cdecl argument 119 #define BOOST_MEM_FN_NAME(X) inner_##X##_stdcall argument 131 #define BOOST_MEM_FN_NAME(X) inner_##X##_fastcall argument 148 #define BOOST_MEM_FN_NAME(X) X argument [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/optional/optional.object/optional.object.assign/ |
D | move.pass.cpp | 24 struct X struct 28 X() = default; argument 29 X(X&&) in X() argument 34 X& operator=(X&&) noexcept in operator =() argument
|
D | copy.pass.cpp | 22 struct X struct 26 X() = default; argument 27 X(const X&) in X() function
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/optional/optional.relops/ |
D | less_than.pass.cpp | 20 struct X struct 24 constexpr X(int i) : i_(i) {} in X() argument
|
D | equal.pass.cpp | 22 struct X struct 26 constexpr X(int i) : i_(i) {} in X() argument
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/optional/optional.comp_with_t/ |
D | equal.pass.cpp | 21 struct X struct 25 constexpr X(int i) : i_(i) {} in X() argument
|
D | less_than.pass.cpp | 21 struct X struct 25 constexpr X(int i) : i_(i) {} in X() argument
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.cons/ |
D | default_recursive.pass.cpp | 18 struct X struct 20 std::forward_list<X> q; argument
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/map.cons/ |
D | default_recursive.pass.cpp | 20 struct X struct 22 std::map<int, X> m; argument
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.cons/ |
D | default.recursive.pass.cpp | 16 struct X struct 18 std::vector<X> q; argument
|