Home
last modified time | relevance | path

Searched defs:X (Results 1 – 25 of 80) sorted by relevance

1234

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/optional/optional.object/optional.object.observe/
Dvalue_or.pass.cpp31 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
Dvalue_or_const.pass.cpp29 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
Dvalue_const.fail.cpp22 struct X struct
34 constexpr optional<X> opt; in main() argument
Dvalue.pass.cpp23 struct X struct
37 optional<X> opt; in main() argument
Dvalue_const.pass.cpp25 struct X struct
39 constexpr optional<X> opt(in_place); in main() argument
Ddereference.pass.cpp26 struct X struct
38 optional<X> opt(X{}); in main() argument
Dop_arrow.pass.cpp26 struct X struct
38 optional<X> opt(X{}); in main() argument
/ndk/tests/device/test-stlport_shared-exception/jni/
Dnew7.cpp11 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
Ddelete1.cpp6 struct X { struct
16 X (*px) [10]; in main() argument
Dnew5.cpp10 struct X { struct
13 X() { in X() argument
/ndk/tests/device/test-stlport_static-exception/jni/
Dnew7.cpp11 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
Ddelete1.cpp6 struct X { struct
16 X (*px) [10]; in main() argument
Dnew5.cpp10 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/
DF_incomplete.pass.cpp20 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/
DTupleFunction.pass.cpp17 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/
Dmem_fn.hpp34 #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/
Dmove.pass.cpp24 struct X struct
28 X() = default; argument
29 X(X&&) in X() argument
34 X& operator=(X&&) noexcept in operator =() argument
Dcopy.pass.cpp22 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/
Dless_than.pass.cpp20 struct X struct
24 constexpr X(int i) : i_(i) {} in X() argument
Dequal.pass.cpp22 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/
Dequal.pass.cpp21 struct X struct
25 constexpr X(int i) : i_(i) {} in X() argument
Dless_than.pass.cpp21 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/
Ddefault_recursive.pass.cpp18 struct X struct
20 std::forward_list<X> q; argument
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/map.cons/
Ddefault_recursive.pass.cpp20 struct X struct
22 std::map<int, X> m; argument
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.cons/
Ddefault.recursive.pass.cpp16 struct X struct
18 std::vector<X> q; argument

1234