Searched refs:get_impl (Results 1 – 3 of 3) sorted by relevance
/external/clang/test/CXX/temp/temp.decls/temp.variadic/ |
D | example-tuple.cpp | 177 template<int I, typename Tuple> class get_impl; 179 class get_impl<I, tuple<Head, Values...> > { class 183 typedef get_impl<I-1, tuple<Values...> > Next; 190 class get_impl<0, tuple<Head, Values...> > { class 201 return get_impl<I, tuple<Values...> >::get(t); in get() 207 return get_impl<I, tuple<Values...> >::get(t); in get()
|
D | example-bind.cpp | 134 template<int I, typename Tuple> class get_impl; 136 class get_impl<I, tuple<Head, Values...> > { class 140 typedef get_impl<I-1, tuple<Values...> > Next; 147 class get_impl<0, tuple<Head, Values...> > { class 158 return get_impl<I, tuple<Values...> >::get(t); in get() 164 return get_impl<I, tuple<Values...> >::get(t); in get()
|
/external/googletest/googlemock/test/ |
D | gmock-matchers_test.cc | 6705 return value.get_impl(static_cast<T*>(nullptr)); in get() 6709 const int& get_impl(int*) const { return i_; } in get_impl() function in testing::gmock_matchers_test::__anon67385ff30111::SampleVariantIntString 6710 const std::string& get_impl(std::string*) const { return s_; } in get_impl() function in testing::gmock_matchers_test::__anon67385ff30111::SampleVariantIntString 6764 return any->get_impl(static_cast<T*>(nullptr)); in any_cast() 6772 const int* get_impl(int*) const { return index_ == 0 ? &i_ : nullptr; } in get_impl() function in testing::gmock_matchers_test::__anon67385ff30111::SampleAnyType 6773 const std::string* get_impl(std::string*) const { in get_impl() function in testing::gmock_matchers_test::__anon67385ff30111::SampleAnyType
|