Home
last modified time | relevance | path

Searched refs:F2 (Results 1 – 22 of 22) sorted by relevance

/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
Deval_if.hpp29 , typename BOOST_MPL_AUX_NA_PARAM(F2)
37 typedef typename if_<C,F1,F2>::type f_;
40 : if_<C,F1,F2>::type
43 BOOST_MPL_AUX_LAMBDA_SUPPORT(3,eval_if,(C,F1,F2))
51 , typename F2
59 typedef typename if_c<C,F1,F2>::type f_;
62 : if_c<C,F1,F2>::type
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/arithmetic.operations/
Dplus.pass.cpp25 typedef std::plus<> F2; in main() typedef
26 const F2 f2 = F2(); in main()
Dnegate.pass.cpp25 typedef std::negate<> F2; in main() typedef
26 const F2 f2 = F2(); in main()
Dminus.pass.cpp25 typedef std::minus<> F2; in main() typedef
26 const F2 f2 = F2(); in main()
Dmultiplies.pass.cpp25 typedef std::multiplies<> F2; in main() typedef
26 const F2 f2 = F2(); in main()
Ddivides.pass.cpp25 typedef std::divides<> F2; in main() typedef
26 const F2 f2 = F2(); in main()
Dmodulus.pass.cpp25 typedef std::modulus<> F2; in main() typedef
26 const F2 f2 = F2(); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/comparisons/
Dequal_to.pass.cpp26 typedef std::equal_to<> F2; in main() typedef
27 const F2 f2 = F2(); in main()
Dnot_equal_to.pass.cpp26 typedef std::not_equal_to<> F2; in main() typedef
27 const F2 f2 = F2(); in main()
Dless_equal.pass.cpp27 typedef std::less_equal<> F2; in main() typedef
28 const F2 f2 = F2(); in main()
Dless.pass.cpp27 typedef std::less<> F2; in main() typedef
28 const F2 f2 = F2(); in main()
Dgreater_equal.pass.cpp27 typedef std::greater_equal<> F2; in main() typedef
28 const F2 f2 = F2(); in main()
Dgreater.pass.cpp27 typedef std::greater<> F2; in main() typedef
28 const F2 f2 = F2(); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/logical.operations/
Dlogical_not.pass.cpp26 typedef std::logical_not<> F2; in main() typedef
27 const F2 f2 = F2(); in main()
Dlogical_or.pass.cpp28 typedef std::logical_or<> F2; in main() typedef
29 const F2 f2 = F2(); in main()
Dlogical_and.pass.cpp28 typedef std::logical_and<> F2; in main() typedef
29 const F2 f2 = F2(); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/bitwise.operations/
Dbit_not.pass.cpp29 typedef std::bit_not<> F2; in main() typedef
30 const F2 f2 = F2(); in main()
Dbit_and.pass.cpp29 typedef std::bit_and<> F2; in main() typedef
30 const F2 f2 = F2(); in main()
Dbit_xor.pass.cpp29 typedef std::bit_xor<> F2; in main() typedef
30 const F2 f2 = F2(); in main()
Dbit_or.pass.cpp29 typedef std::bit_or<> F2; in main() typedef
30 const F2 f2 = F2(); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.time/locale.time.get.byname/
Dget_monthname_wide.pass.cpp36 typedef std::time_put_byname<wchar_t, wchar_t*> F2; typedef
38 : public F2
42 : F2(nm, refs) {} in my_facet2()
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/bind/
Dbind.hpp151 template<class F2> static inline F2 & unwrap( reference_wrapper<F2> rf, int ) in unwrap()