Home
last modified time | relevance | path

Searched refs:get_fn (Results 1 – 5 of 5) sorted by relevance

/external/llvm-project/clang/test/SemaCXX/
Dcxx1z-noexcept-function-type.cpp46 template<bool B> auto get_fn() noexcept -> void (*)() noexcept(B) {} in get_fn() function
47 static_assert(noexcept(get_fn<true>()()));
48 static_assert(!noexcept(get_fn<false>()()));
/external/llvm-project/libcxx/test/libcxx/utilities/function.objects/func.require/
Dbullet_1_2_3.pass.cpp260 auto get_fn = &std::reference_wrapper<int>::get; in test_derived_from_ref_wrap() local
261 auto& ret = std::__invoke(get_fn, r); in test_derived_from_ref_wrap()
262 auto& cret = std::__invoke_constexpr(get_fn, r); in test_derived_from_ref_wrap()
265 auto& ret2 = std::__invoke(get_fn, d); in test_derived_from_ref_wrap()
266 auto& cret2 = std::__invoke_constexpr(get_fn, d); in test_derived_from_ref_wrap()
269 auto& ret3 = std::__invoke(get_fn, r2); in test_derived_from_ref_wrap()
/external/libcxx/test/libcxx/utilities/function.objects/func.require/
Dbullet_1_2_3.pass.cpp261 auto get_fn = &std::reference_wrapper<int>::get; in test_derived_from_ref_wrap() local
262 auto& ret = std::__invoke(get_fn, r); in test_derived_from_ref_wrap()
263 auto& cret = std::__invoke_constexpr(get_fn, r); in test_derived_from_ref_wrap()
266 auto& ret2 = std::__invoke(get_fn, d); in test_derived_from_ref_wrap()
267 auto& cret2 = std::__invoke_constexpr(get_fn, d); in test_derived_from_ref_wrap()
270 auto& ret3 = std::__invoke(get_fn, r2); in test_derived_from_ref_wrap()
/external/tensorflow/tensorflow/python/data/util/
Doptions.py92 def get_fn(option): function
104 return property(get_fn, set_fn, None, docstring)
/external/tensorflow/tensorflow/python/ops/
Ddata_flow_ops.py1935 def __internal_get(self, get_fn, name): argument
1937 ret = get_fn()