Home
last modified time | relevance | path

Searched defs:is_function (Results 1 – 25 of 34) sorted by relevance

12

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/type_traits/include/boost/type_traits/detail/
Dis_function_cxx_11.hpp19 struct is_function : public false_type {}; struct
37 struct is_function<Ret BOOST_TT_DEF_CALL(Args...)BOOST_TT_NOEXCEPT_DECL> : public true_type {}; struct
40 struct is_function<Ret(Args..., ...)BOOST_TT_NOEXCEPT_DECL> : public true_type {}; struct
45 …struct is_function<Ret BOOST_TT_DEF_CALL(Args...)const BOOST_TT_NOEXCEPT_DECL> : public true_type … struct
48 struct is_function<Ret(Args..., ...)const BOOST_TT_NOEXCEPT_DECL> : public true_type {}; struct
53 …struct is_function<Ret BOOST_TT_DEF_CALL(Args...)volatile BOOST_TT_NOEXCEPT_DECL> : public true_ty… struct
56 struct is_function<Ret(Args..., ...)volatile BOOST_TT_NOEXCEPT_DECL> : public true_type {}; struct
60 …struct is_function<Ret BOOST_TT_DEF_CALL(Args...)const volatile BOOST_TT_NOEXCEPT_DECL> : public t… struct
63 struct is_function<Ret(Args..., ...)const volatile BOOST_TT_NOEXCEPT_DECL> : public true_type {}; struct
69 struct is_function<Ret BOOST_TT_DEF_CALL(Args...)& BOOST_TT_NOEXCEPT_DECL> : public true_type {}; struct
[all …]
Dis_function_msvc10_fix.hpp14 template <class R> struct is_function<R(&&)()> : public false_type {}; struct
15 template <class R> struct is_function<R(&&)(...)> : public false_type {}; struct
16 template <class R, class Arg1> struct is_function<R(&&)(Arg1)> : public false_type {}; struct
17 template <class R, class Arg1> struct is_function<R(&&)(Arg1, ...)> : public false_type {}; struct
18 template <class R, class Arg1, class Arg2> struct is_function<R(&&)(Arg1, Arg2)> : public false_typ… struct
19 template <class R, class Arg1, class Arg2> struct is_function<R(&&)(Arg1, Arg2, ...)> : public fals… struct
20 template <class R, class Arg1, class Arg2, class Arg3> struct is_function<R(&&)(Arg1, Arg2, Arg3)> … struct
21 template <class R, class Arg1, class Arg2, class Arg3> struct is_function<R(&&)(Arg1, Arg2, Arg3, .… struct
22 template <class R, class Arg1, class Arg2, class Arg3, class Arg4> struct is_function<R(&&)(Arg1, A… struct
23 template <class R, class Arg1, class Arg2, class Arg3, class Arg4> struct is_function<R(&&)(Arg1, A… struct
[all …]
Dis_function_cxx_03.hpp92 template <class T> struct is_function : integral_constant<bool, __is_function(T)> {}; struct
94 template <class T> struct is_function : integral_constant<bool, ::boost::detail::is_function_impl<T… struct
96 template <class T> struct is_function<T&&> : public false_type {}; struct
99 template <class T> struct is_function<T&> : public false_type {}; struct
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/multi_index/include/boost/multi_index/detail/
Dis_function.hpp36 struct is_function:boost::is_function<T>{}; struct
47 struct is_function:std::is_function<T>{}; struct
/aosp_15_r20/external/cronet/third_party/libc++/src/include/__type_traits/
H A Dis_function.h26 struct _LIBCPP_TEMPLATE_VIS is_function : integral_constant<bool, __is_function(_Tp)> {}; struct
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/c++/v1/__type_traits/
Dis_function.h26 struct _LIBCPP_TEMPLATE_VIS is_function : integral_constant<bool, __is_function(_Tp)> {}; struct
/aosp_15_r20/prebuilts/clang/host/linux-x86/embedded-sysroots/pigweed_riscv32_sysroot/include/c++/v1/__type_traits/
Dis_function.h22 struct _LIBCPP_TEMPLATE_VIS is_function : integral_constant<bool, __is_function(_Tp)> {}; struct
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/c++/v1/__type_traits/
Dis_function.h26 struct _LIBCPP_TEMPLATE_VIS is_function : integral_constant<bool, __is_function(_Tp)> {}; struct
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/c++/v1/__type_traits/
Dis_function.h26 struct _LIBCPP_TEMPLATE_VIS is_function : integral_constant<bool, __is_function(_Tp)> {}; struct
/aosp_15_r20/external/llvm-libc/src/__support/CPP/type_traits/
H A Dis_function.h23 struct is_function : integral_constant<bool, __is_function(T)> {}; struct
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/c++/v1/__type_traits/
Dis_function.h26 struct _LIBCPP_TEMPLATE_VIS is_function : integral_constant<bool, __is_function(_Tp)> {}; struct
/aosp_15_r20/frameworks/native/include/ftl/
H A Dfunction.h147 struct is_function : public std::false_type {}; struct
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/function_types/include/boost/function_types/
Dis_function.hpp20 struct is_function struct
/aosp_15_r20/external/tensorflow/tensorflow/python/framework/
H A Dfunction_def_to_graph.py134 def is_function(fname): function
/aosp_15_r20/external/rust/android-crates-io/crates/bindgen/ir/
Ditem_kind.rs63 pub(crate) fn is_function(&self) -> bool { in is_function() method
/aosp_15_r20/external/tensorflow/tensorflow/core/common_runtime/eager/
H A Dattr_builder_test.cc43 bool is_function = false; in TEST() local
H A Dexecute_node.cc99 const bool is_function = kernel->IsFunction(); in Init() local
H A Deager_operation.h146 bool is_function() const { return is_function_; } in is_function() function
H A Dattr_builder.cc67 bool* is_function) { in AttrTypeMapForOp()
H A Dexecute.cc218 const bool is_function = kernel->IsFunction(); in ValidateInputTypeAndPlacement() local
1560 const bool is_function = op->is_function(); in EagerRemoteExecute() local
H A Deager_operation.cc318 bool is_function = false; in Reset() local
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/asio/example/cpp11/executors/
Dactor.cpp71 bool is_function(void (Actor::* mf)(Message, actor_address)) const in is_function() function in mf_message_handler
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/asio/example/cpp14/executors/
Dactor.cpp71 bool is_function(void (Actor::* mf)(Message, actor_address)) const in is_function() function in mf_message_handler
/aosp_15_r20/external/tensorflow/tensorflow/core/protobuf/
H A Deager_service.proto52 bool is_function = 9; field
/aosp_15_r20/external/sandboxed-api/sandboxed_api/tools/generator2/
H A Dcode.py226 def is_function(self): member in Type

12