Home
last modified time | relevance | path

Searched defs:auto (Results 126 – 150 of 3985) sorted by relevance

12345678910>>...160

/dports/math/blaze/blaze-3.8/blaze/math/expressions/
H A DDVecMeanExpr.h72 inline decltype(auto) mean_backend( const DenseVector<VT,TF>& dv, FalseType ) in decltype() argument
94 inline decltype(auto) mean_backend( const DenseVector<VT,TF>& dv, TrueType ) in decltype() argument
128 inline decltype(auto) mean( const DenseVector<VT,TF>& dv ) in decltype() argument
H A DDVecVarExpr.h75 decltype(auto) var_backend( const DenseVector<VT,TF>& dv, FalseType ) in decltype() argument
101 decltype(auto) var_backend( const DenseVector<VT,TF>& dv, TrueType ) in decltype() argument
136 decltype(auto) var( const DenseVector<VT,TF>& dv ) in decltype() argument
H A DSVecMeanExpr.h73 inline decltype(auto) mean_backend( const SparseVector<VT,TF>& sv, FalseType ) in decltype() argument
95 inline decltype(auto) mean_backend( const SparseVector<VT,TF>& sv, TrueType ) in decltype() argument
132 inline decltype(auto) mean( const SparseVector<VT,TF>& sv ) in decltype() argument
H A DSVecVarExpr.h74 decltype(auto) var_backend( const SparseVector<VT,TF>& sv, FalseType ) in decltype() argument
108 decltype(auto) var_backend( const SparseVector<VT,TF>& sv, TrueType ) in decltype() argument
144 decltype(auto) var( const SparseVector<VT,TF>& sv ) in decltype() argument
/dports/lang/gcc12-devel/gcc-12-20211205/gcc/testsuite/g++.dg/cpp2a/
H A Dconcepts-placeholder7.C10 C1 auto [a,b] = x; in f() local
11 C1 auto [c] = y; // { dg-error "constraints" } in f() local
18 C1 auto [a,b] = x; in g() local
19 C1 auto [c] = y; // { dg-error "constraints" } in g() local
/dports/lang/gcc11-devel/gcc-11-20211009/gcc/testsuite/g++.dg/cpp2a/
H A Dconcepts-placeholder7.C10 C1 auto [a,b] = x; in f() local
11 C1 auto [c] = y; // { dg-error "constraints" } in f() local
18 C1 auto [a,b] = x; in g() local
19 C1 auto [c] = y; // { dg-error "constraints" } in g() local
/dports/misc/cxx_atomics_pic/gcc-11.2.0/gcc/testsuite/g++.dg/cpp2a/
H A Dconcepts-placeholder7.C10 C1 auto [a,b] = x; in f() local
11 C1 auto [c] = y; // { dg-error "constraints" } in f() local
18 C1 auto [a,b] = x; in g() local
19 C1 auto [c] = y; // { dg-error "constraints" } in g() local
/dports/lang/gcc11/gcc-11.2.0/gcc/testsuite/g++.dg/cpp2a/
H A Dconcepts-placeholder7.C10 C1 auto [a,b] = x; in f() local
11 C1 auto [c] = y; // { dg-error "constraints" } in f() local
18 C1 auto [a,b] = x; in g() local
19 C1 auto [c] = y; // { dg-error "constraints" } in g() local
/dports/textproc/R-cran-xtable/xtable/R/
H A Dxtable.R24 digits = NULL, display = NULL, auto = FALSE, ...) { argument
32 digits = NULL, display = NULL, auto = FALSE, argument
63 digits = NULL, display = NULL, auto = FALSE, ...) { argument
75 digits = NULL, display = NULL, auto = FALSE, ...) { argument
116 digits = NULL, display = NULL, auto = FALSE, ...) { argument
123 digits = NULL, display = NULL, auto = FALSE, argument
131 auto = FALSE, ...) { argument
160 digits = NULL, display = NULL, auto = FALSE, ...) { argument
167 digits = NULL, display = NULL, auto = FALSE, argument
186 digits = NULL, display = NULL, auto = FALSE, ...) { argument
[all …]
/dports/math/blaze/blaze-3.8/blaze/math/simd/
H A DReduce.h68 inline decltype(auto) reduce( const SIMDPack<T>& a, OP op ) in decltype() argument
94 inline decltype(auto) reduce( const SIMDPack<T>& a, const Add& /*op*/ ) in decltype() argument
111 inline decltype(auto) reduce( const SIMDPack<T>& a, const Mult& /*op*/ ) in decltype() argument
/dports/math/blaze/blaze-3.8/blaze/util/algorithms/
H A DMin.h79 constexpr decltype(auto) min( T1&& a, T2&& b ) in decltype() argument
102 constexpr decltype(auto) min( T1&& a, T2&& b, T3&& c ) in decltype() argument
126 constexpr decltype(auto) min( T1&& a, T2&& b, T3&& c, Ts&&... args ) in decltype() argument
H A DMax.h79 constexpr decltype(auto) max( T1&& a, T2&& b ) in decltype() argument
102 constexpr decltype(auto) max( T1&& a, T2&& b, T3&& c ) in decltype() argument
126 constexpr decltype(auto) max( T1&& a, T2&& b, T3&& c, Ts&&... args ) in decltype() argument
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/favicon/content/
H A Dcontent_favicon_driver_unittest.cc66 .WillByDefault([](auto, auto, auto, in ContentFaviconDriverTest() argument
68 base::CancelableTaskTracker* tracker) { in ContentFaviconDriverTest()
/dports/devel/boost-docs/boost_1_72_0/libs/histogram/test/
H A Ddetail_static_if_test.cpp18 BOOST_TEST_EQ(static_if<T>([](auto) { return 1; }, [] {}, 0), 1); in main() argument
19 BOOST_TEST_EQ(static_if<F>([] {}, [](auto) { return 1; }, 0), 1); in main() argument
21 BOOST_TEST_EQ(static_if_c<true>([](auto) { return 1; }, [] {}, 0), 1); in main() argument
22 BOOST_TEST_EQ(static_if_c<false>([] {}, [](auto) { return 1; }, 0), 1); in main() argument
/dports/devel/boost-python-libs/boost_1_72_0/libs/histogram/test/
H A Ddetail_static_if_test.cpp18 BOOST_TEST_EQ(static_if<T>([](auto) { return 1; }, [] {}, 0), 1); in main() argument
19 BOOST_TEST_EQ(static_if<F>([] {}, [](auto) { return 1; }, 0), 1); in main() argument
21 BOOST_TEST_EQ(static_if_c<true>([](auto) { return 1; }, [] {}, 0), 1); in main() argument
22 BOOST_TEST_EQ(static_if_c<false>([] {}, [](auto) { return 1; }, 0), 1); in main() argument
/dports/devel/boost-libs/boost_1_72_0/libs/histogram/test/
H A Ddetail_static_if_test.cpp18 BOOST_TEST_EQ(static_if<T>([](auto) { return 1; }, [] {}, 0), 1); in main() argument
19 BOOST_TEST_EQ(static_if<F>([] {}, [](auto) { return 1; }, 0), 1); in main() argument
21 BOOST_TEST_EQ(static_if_c<true>([](auto) { return 1; }, [] {}, 0), 1); in main() argument
22 BOOST_TEST_EQ(static_if_c<false>([] {}, [](auto) { return 1; }, 0), 1); in main() argument
/dports/devel/hyperscan/boost_1_75_0/libs/histogram/test/
H A Ddetail_static_if_test.cpp18 BOOST_TEST_EQ(static_if<T>([](auto) { return 1; }, [] {}, 0), 1); in main() argument
19 BOOST_TEST_EQ(static_if<F>([] {}, [](auto) { return 1; }, 0), 1); in main() argument
21 BOOST_TEST_EQ(static_if_c<true>([](auto) { return 1; }, [] {}, 0), 1); in main() argument
22 BOOST_TEST_EQ(static_if_c<false>([] {}, [](auto) { return 1; }, 0), 1); in main() argument
/dports/www/grafana8/grafana-8.3.6/public/app/features/variables/interval/
H A Dreducer.test.ts17 const auto = false; constant
45 const auto = true; constant
74 const auto = false; constant
100 const auto = false; constant
/dports/science/opensph/sph-7de6c044339f649e3d19e61f735a6a24572b792a/core/objects/containers/
H A DTuple.h85 INLINE constexpr decltype(auto) get() { in decltype() argument
90 INLINE constexpr decltype(auto) get() const { in decltype() argument
95 INLINE constexpr decltype(auto) forward() { in decltype() argument
247 INLINE constexpr decltype(auto) get() & { in decltype() argument
254 INLINE constexpr decltype(auto) get() const& { in decltype() argument
263 INLINE constexpr decltype(auto) get() && { in decltype() argument
271 INLINE constexpr decltype(auto) get() & { in decltype() argument
279 INLINE constexpr decltype(auto) get() const& { in decltype() argument
287 INLINE constexpr decltype(auto) get() && { in decltype() argument
/dports/math/blaze/blaze-3.8/blaze/math/views/
H A DSubmatrix.h551 inline decltype(auto) in decltype() argument
621 inline decltype(auto) in decltype() argument
653 inline decltype(auto) in decltype() argument
737 inline decltype(auto) in decltype() argument
820 inline decltype(auto) in decltype() argument
855 inline decltype(auto) in decltype() argument
1073 inline decltype(auto) in decltype() argument
1144 inline decltype(auto) in decltype() argument
1326 inline decltype(auto) in decltype() argument
1529 inline decltype(auto) in decltype() argument
[all …]
/dports/graphics/jogamp-jogl/jogl/src/test/com/jogamp/opengl/test/junit/jogl/demos/gl4/
H A DTessellationShader01bGL4.java63 public void init(final GLAutoDrawable auto) { in init()
90 public void display(final GLAutoDrawable auto) { in display()
105 public void dispose(final GLAutoDrawable auto) { in dispose()
115 …public void reshape(final GLAutoDrawable auto, final int x, final int y, final int width, final in… in reshape()
121 private ShaderProgram createProgram(final GLAutoDrawable auto) { in createProgram()
/dports/devel/boost-docs/boost_1_72_0/libs/hana/test/_include/auto/
H A Dfor_each.hpp47 hana::for_each(MAKE_TUPLE(ct_eq<0>{}), [](auto) { }); in __anonf78009a80102() argument
48 hana::for_each(MAKE_TUPLE(ct_eq<0>{}, ct_eq<1>{}), [](auto) { }); in __anonf78009a80102() argument
49 hana::for_each(MAKE_TUPLE(ct_eq<0>{}, ct_eq<1>{}, ct_eq<2>{}), [](auto) { }); in __anonf78009a80102() argument
50 hana::for_each(MAKE_TUPLE(ct_eq<0>{}, ct_eq<1>{}, ct_eq<2>{}, ct_eq<3>{}), [](auto) { }); in __anonf78009a80102() argument
/dports/devel/boost-python-libs/boost_1_72_0/libs/hana/test/_include/auto/
H A Dfor_each.hpp47 hana::for_each(MAKE_TUPLE(ct_eq<0>{}), [](auto) { }); in __anon6a23b6d80102() argument
48 hana::for_each(MAKE_TUPLE(ct_eq<0>{}, ct_eq<1>{}), [](auto) { }); in __anon6a23b6d80102() argument
49 hana::for_each(MAKE_TUPLE(ct_eq<0>{}, ct_eq<1>{}, ct_eq<2>{}), [](auto) { }); in __anon6a23b6d80102() argument
50 hana::for_each(MAKE_TUPLE(ct_eq<0>{}, ct_eq<1>{}, ct_eq<2>{}, ct_eq<3>{}), [](auto) { }); in __anon6a23b6d80102() argument
/dports/devel/boost-libs/boost_1_72_0/libs/hana/test/_include/auto/
H A Dfor_each.hpp47 hana::for_each(MAKE_TUPLE(ct_eq<0>{}), [](auto) { }); in __anonff5901e90102() argument
48 hana::for_each(MAKE_TUPLE(ct_eq<0>{}, ct_eq<1>{}), [](auto) { }); in __anonff5901e90102() argument
49 hana::for_each(MAKE_TUPLE(ct_eq<0>{}, ct_eq<1>{}, ct_eq<2>{}), [](auto) { }); in __anonff5901e90102() argument
50 hana::for_each(MAKE_TUPLE(ct_eq<0>{}, ct_eq<1>{}, ct_eq<2>{}, ct_eq<3>{}), [](auto) { }); in __anonff5901e90102() argument
/dports/devel/hyperscan/boost_1_75_0/libs/hana/test/_include/auto/
H A Dfor_each.hpp47 hana::for_each(MAKE_TUPLE(ct_eq<0>{}), [](auto) { }); in __anon1512b39b0102() argument
48 hana::for_each(MAKE_TUPLE(ct_eq<0>{}, ct_eq<1>{}), [](auto) { }); in __anon1512b39b0102() argument
49 hana::for_each(MAKE_TUPLE(ct_eq<0>{}, ct_eq<1>{}, ct_eq<2>{}), [](auto) { }); in __anon1512b39b0102() argument
50 hana::for_each(MAKE_TUPLE(ct_eq<0>{}, ct_eq<1>{}, ct_eq<2>{}, ct_eq<3>{}), [](auto) { }); in __anon1512b39b0102() argument

12345678910>>...160