Searched defs:get (Results 1 - 25 of 49) sorted by relevance

12

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/pairs/pair.astuple/
H A Dget_non_const.pass.cpp16 // get(pair<T1, T2>&);
25 constexpr S() : a{1,2}, k(std::get<0>(a)) {} function in struct:S
36 assert(std::get<0>(p) == 3);
37 assert(std::get<1>(p) == 4);
38 std::get<0>(p) = 5;
39 std::get<1>(p) = 6;
40 assert(std::get<0>(p) == 5);
41 assert(std::get<1>(p) == 6);
47 static_assert(std::get<1>(getP()) == 4, "");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/array/array.tuple/
H A Dget.pass.cpp12 // template <size_t I, class T, size_t N> T& get(array<T, N>& a);
21 constexpr S() : a{1,2,3}, k(std::get<2>(a)) {} function in struct:S
33 std::get<1>(c) = 5.5;
43 static_assert(std::get<0>(c) == 1, "");
44 static_assert(std::get<1>(c) == 2, "");
45 static_assert(std::get<2>(c) == 3.5, "");
49 static_assert(std::get<1>(getArr()) == 4, "");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/support/
H A Dprivate_constructor.hpp18 int get () const { return val; } function in struct:PrivateConstructor
24 bool operator < ( const PrivateConstructor &lhs, const PrivateConstructor &rhs ) { return lhs.get() < rhs.get(); }
26 bool operator < ( const PrivateConstructor &lhs, int rhs ) { return lhs.get() < rhs; }
27 bool operator < ( int lhs, const PrivateConstructor &rhs ) { return lhs < rhs.get(); }
29 std::ostream & operator << ( std::ostream &os, const PrivateConstructor &foo ) { return os << foo.get (); }
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.create/
H A Dmake_unique.array.pass.cpp19 int get () const { return val_; } function in class:foo
42 assert ( p3[i].get () == 3 );
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.elem/
H A Dget_non_const.pass.cpp16 // get(tuple<Types...>& t);
30 constexpr S() : a{1,Empty{}}, k(std::get<0>(a)), e(std::get<1>(a)) {} function in struct:S
41 assert(std::get<0>(t) == 3);
42 std::get<0>(t) = 2;
43 assert(std::get<0>(t) == 2);
48 assert(std::get<0>(t) == "high");
49 assert(std::get<1>(t) == 5);
50 std::get<0>(t) = "four";
51 std::get<
[all...]
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/exception/
H A Dget_error_info.hpp32 get( exception const & x ) function in struct:boost::exception_detail::get_info
34 if( exception_detail::error_info_container * c=x.data_.get() )
35 if( shared_ptr<exception_detail::error_info_base> eib = c->get(BOOST_EXCEPTION_STATIC_TYPEID(ErrorInfo)) )
38 BOOST_ASSERT( 0!=dynamic_cast<ErrorInfo *>(eib.get()) );
40 ErrorInfo * w = static_cast<ErrorInfo *>(eib.get());
53 get( exception const & x ) function in struct:boost::exception_detail::get_info
65 get( exception const & x ) function in struct:boost::exception_detail::get_info
77 get( exception const & x ) function in struct:boost::exception_detail::get_info
104 return exception_detail::get_info<ErrorInfo>::get(x);
111 return exception_detail::get_info<ErrorInfo>::get(
[all...]
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/
H A Dframework.hpp69 BOOST_TEST_DECL test_unit& get( test_unit_id, test_unit_type );
71 UnitType& get( test_unit_id id ) function in namespace:boost::unit_test::framework
73 return static_cast<UnitType&>( get( id, static_cast<test_unit_type>(UnitType::type) ) );
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/
H A DEmplaceable.h45 int get() const {return int_;} function in class:Emplaceable
54 std::size_t operator()(const Emplaceable& x) const {return x.get();}
H A DMoveOnly.h31 int get() const {return data_;} function in class:MoveOnly
43 std::size_t operator()(const MoveOnly& x) const {return x.get();}
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.observers/
H A Dindex.pass.cpp25 int get() const {return state_;} function in class:A
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.observers/
H A Dindex.fail.cpp25 int get() const {return state_;} function in class:A
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/
H A DMoveOnly.h31 int get() const {return data_;} function in class:MoveOnly
43 std::size_t operator()(const MoveOnly& x) const {return x.get();}
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.cnstr/
H A DUTypes.fail.cpp38 int get() const {return data_;} function in class:MoveOnly
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/detail/
H A Dreference_content.hpp66 RefT get() const function in class:boost::detail::reference_content
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/iterator/
H A Dinput_iterator_facade.hpp42 static bool get( Facade& f ) function in class:boost::unit_test::input_iterator_core_access
44 return f.get();
85 m_valid = input_iterator_core_access::get( *static_cast<Derived*>(this) );
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/env/
H A Denvironment.hpp131 get( cstring var_name ) function in namespace:boost::BOOST_RT_PARAM_NAMESPACE::environment
140 get( cstring var_name ) function in namespace:boost::BOOST_RT_PARAM_NAMESPACE::environment
149 get( cstring var_name, boost::optional<T>& res ) function in namespace:boost::BOOST_RT_PARAM_NAMESPACE::environment
/ndk/build/core/
H A Ddefinitions-graph.mk154 # you must call -ndk-mod-get-depends to set this.
180 -ndk-mod-get-depends = \
185 -ndk-mod-get-new-depends = \
186 $(call -ndk-mod-get-depends)\
200 # queue. For each item in the work queue, get the dependencies and
203 -ndk-mod-get-closure = $(strip \
216 # Used internally to visit a new node during -ndk-mod-get-closure.
225 $(call -ndk-mod-get-depends)\
233 -test-ndk-mod-get-closure.empty = \
235 $(call test-expect,,$(call -ndk-mod-get
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opref/
H A Dop_arrow.pass.cpp33 int get() const {return data_;} function in class:A
44 assert(r->get() == x.get());
54 int get() const {return data_;} function in class:B
75 assert ( i->get() == 0 ); ++i;
76 assert ( i->get() == 1 ); ++i;
77 assert ( i->get() == 2 ); ++i;
83 assert ( ri->get() == 2 ); ++ri;
84 assert ( ri->get() == 1 ); ++ri;
85 assert ( ri->get()
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/
H A Ddefault02.pass.cpp47 A* get() const {return a_.get();} function in struct:B
55 assert(s.get() == 0);
60 assert(s.get() == 0);
H A Dpointer02.pass.cpp47 A* get() const {return a_.get();} function in struct:B
51 A* get();
56 A* p = get();
59 assert(s.get() == p);
63 A* p = get();
66 assert(s.get() == p);
82 A* get() {return new A[3];} function
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/
H A Ddefault02.pass.cpp47 A* get() const {return a_.get();} function in struct:B
55 assert(s.get() == 0);
60 assert(s.get() == 0);
H A Dpointer02.pass.cpp47 A* get() const {return a_.get();} function in struct:B
51 A* get();
56 A* p = get();
59 assert(s.get() == p);
63 A* p = get();
66 assert(s.get() == p);
82 A* get() {return new A;} function
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/
H A Dref.hpp49 T& get() const { return *t_; } function in class:boost::reference_wrapper
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/smart_ptr/
H A Dscoped_array.hpp84 T * get() const // never throws function in class:boost::scoped_array
H A Dscoped_ptr.hpp101 T * get() const // never throws function in class:boost::scoped_ptr
122 // get_pointer(p) is a generic way to say p.get()
126 return p.get();

Completed in 9391 milliseconds

12