Home
last modified time | relevance | path

Searched defs:value_of (Results 1 – 17 of 17) sorted by relevance

/aosp_15_r20/external/pytorch/c10/util/
H A Dstrong_type.h123 constexpr T& value_of() & noexcept { return val;} in value_of() function
125 constexpr const T& value_of() const & noexcept { return val;} in value_of() function
127 constexpr T&& value_of() && noexcept { return std::move(val);} in value_of() function
130 friend constexpr T& value_of(type& t) noexcept { return t.val;} in value_of() function
132 friend constexpr const T& value_of(const type& t) noexcept { return t.val;} in value_of() function
134 friend constexpr T&& value_of(type&& t) noexcept { return std::move(t).val;} in value_of() function
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/fusion/include/boost/fusion/container/map/
Dmap_iterator.hpp39 struct value_of struct
41 typedef typename Iterator::sequence sequence;
42 typedef typename Iterator::index index;
45 type;
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/fusion/include/boost/fusion/adapted/std_array/
Dstd_array_iterator.hpp42 struct value_of struct
44 typedef typename Iterator::array_type array_type;
45 typedef typename array_type::value_type type;
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/fusion/include/boost/fusion/adapted/boost_array/
Darray_iterator.hpp42 struct value_of struct
44 typedef typename Iterator::array_type array_type;
45 typedef typename array_type::value_type type;
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/fusion/example/extension/
Dtriple.cpp58 struct value_of<triple_iterator<Sq, 0> > struct
63 struct value_of<triple_iterator<Sq, 1> > struct
68 struct value_of<triple_iterator<Sq, 2> > struct
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/fusion/include/boost/fusion/iterator/
Dvalue_of.hpp51 struct value_of struct
Diterator_adapter.hpp76 struct value_of struct
Dbasic_iterator.hpp49 struct value_of struct
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/fusion/include/boost/fusion/adapted/mpl/
Dmpl_iterator.hpp32 struct value_of : mpl::deref<typename Iterator::iterator_type> {}; struct
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/fusion/include/boost/fusion/iterator/detail/
Dsegmented_iterator.hpp96 struct value_of struct
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/fusion/include/boost/fusion/container/deque/
Ddeque_iterator.hpp40 struct value_of struct
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/fusion/include/boost/fusion/adapted/std_tuple/
Dstd_tuple_iterator.hpp46 struct value_of struct
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/fusion/include/boost/fusion/adapted/boost_tuple/
Dboost_tuple_iterator.hpp63 struct value_of : mpl::identity<typename Iterator::cons_type::head_type> {}; struct
/aosp_15_r20/art/runtime/
H A Dart_method_test.cc48 void TestBoxUnbox(ArtMethod* value_of, const char* unbox_name, Type value) { in TestBoxUnbox()
/aosp_15_r20/system/keymint/hal/src/
H A Dhal.rs469 macro_rules! value_of { macro
/aosp_15_r20/packages/providers/MediaProvider/pdf/framework/libs/pdfClient/
Djni_conversion.cc94 static jmethodID value_of = in ToJavaInteger() local
/aosp_15_r20/external/rust/android-crates-io/extra_versions/crates/clap/src/parser/matches/
Darg_matches.rs421 pub fn value_of<T: Key>(&self, id: T) -> Option<&str> { in value_of() method