Home
last modified time | relevance | path

Searched refs:Return (Results 1 – 25 of 2248) sorted by relevance

12345678910>>...90

/third_party/boost/libs/callable_traits/doc/
Dhideous_template.snippet.cpp8 template<class Return, class... Args> struct foo<Return(Args...)> {};
9 template<class Return, class... Args> struct foo<Return(Args...) &> {};
10 template<class Return, class... Args> struct foo<Return(Args...) &&> {};
11 template<class Return, class... Args> struct foo<Return(Args...) const> {};
12 template<class Return, class... Args> struct foo<Return(Args...) const &> {};
13 template<class Return, class... Args> struct foo<Return(Args...) const &&> {};
14 template<class Return, class... Args> struct foo<Return(Args...) volatile> {};
15 template<class Return, class... Args> struct foo<Return(Args...) volatile &> {};
16 template<class Return, class... Args> struct foo<Return(Args...) volatile &&> {};
17 template<class Return, class... Args> struct foo<Return(Args...) const volatile> {};
[all …]
/third_party/boost/boost/callable_traits/detail/
Dset_function_qualifiers.hpp15 template<typename Return, typename... Args> \
17 flag_map<int QUAL>::value, false, false, Return, Args...> { \
18 using type = Return(Args...) QUAL; \
21 template<typename Return, typename... Args> \
23 flag_map<int QUAL>::value, true, false, Return, Args...> { \
24 using type = Return(Args...) QUAL \
28 template<typename Return, typename... Args> \
30 flag_map<int QUAL>::value, false, true, Return, Args...> { \
31 using type = Return(Args...) QUAL \
35 template<typename Return, typename... Args> \
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/random/
Dmocking_bit_gen_test.cc33 using ::testing::Return;
40 .WillOnce(Return(20)); in TEST()
45 .WillOnce(Return(5.0)); in TEST()
50 .WillOnce(Return(42)); in TEST()
54 EXPECT_CALL(absl::MockPoisson<int>(), Call(gen, 1.0)).WillOnce(Return(500)); in TEST()
59 .WillOnce(Return(true)); in TEST()
64 .WillOnce(Return(1221)); in TEST()
69 .WillOnce(Return(0.001)); in TEST()
74 .WillOnce(Return(500000)); in TEST()
83 .WillByDefault(Return(20)); in TEST()
[all …]
Dmock_distributions_test.cc22 using ::testing::Return;
29 .WillOnce(Return(20)); in TEST()
34 .WillOnce(Return(5.0)); in TEST()
39 .WillOnce(Return(42)); in TEST()
43 EXPECT_CALL(absl::MockPoisson<int>(), Call(gen, 1.0)).WillOnce(Return(500)); in TEST()
48 .WillOnce(Return(true)); in TEST()
53 .WillOnce(Return(0.567)); in TEST()
58 .WillOnce(Return(1221)); in TEST()
63 .WillOnce(Return(0.001)); in TEST()
68 .WillOnce(Return(2040)); in TEST()
/third_party/boost/boost/callable_traits/detail/unguarded/
Dfunction_3.hpp35 template<typename Return, typename... Args>
36 struct function<Return(Args...)
46 using return_type = Return;
51 using type = Return(Args...)
56 using function_type = Return(Args...);
58 using qualified_function_type = Return(Args...)
65 using add_varargs = Return (Args..., ...)
72 using remove_noexcept = Return(Args...)
76 using add_noexcept = Return(Args...)
83 using remove_transaction_safe = Return(Args...)
[all …]
Dpmf_varargs_2.hpp12 template<typename T, typename Return, typename... Args>
17 BOOST_CLBL_TRTS_CC_TAG, T, Return, Args...> {
20 Return(BOOST_CLBL_TRTS_VARARGS_CC T::*)(Args..., ...)
24 template<typename T, typename Return, typename... Args>
29 BOOST_CLBL_TRTS_CC_TAG, T, Return, Args...> {
32 Return(BOOST_CLBL_TRTS_VARARGS_CC T::*)(Args..., ...)
36 template<typename T, typename Return, typename... Args>
41 BOOST_CLBL_TRTS_CC_TAG, T, Return, Args...> {
44 Return(BOOST_CLBL_TRTS_VARARGS_CC T::*)(Args..., ...)
49 template<typename T, typename Return, typename... Args>
[all …]
Dpmf_2.hpp12 template<typename Return, typename T, typename... Args>
17 BOOST_CLBL_TRTS_CC_TAG, T, Return, Args...> {
19 using type = Return(BOOST_CLBL_TRTS_CC T::*)(Args...)
23 template<typename Return, typename T, typename... Args>
28 BOOST_CLBL_TRTS_CC_TAG, T, Return, Args...> {
30 using type = Return(BOOST_CLBL_TRTS_CC T::*)(Args...)
35 template<typename Return, typename T, typename... Args>
40 BOOST_CLBL_TRTS_CC_TAG, T, Return, Args...> {
42 using type = Return(BOOST_CLBL_TRTS_CC T::*)(Args...)
47 template<typename Return, typename T, typename... Args>
[all …]
Dfunction_ptr_3.hpp31 template<typename Return, typename... Args>
33 BOOST_CLBL_TRTS_ST Return(BOOST_CLBL_TRTS_CC *)(Args...)
42 using return_type = Return;
47 using type = BOOST_CLBL_TRTS_ST Return(BOOST_CLBL_TRTS_CC *)(Args...)
50 using function_type = Return(Args...);
55 BOOST_CLBL_TRTS_ST Return (BOOST_CLBL_TRTS_VARARGS_CC *)(Args..., ...)
61 using remove_noexcept = Return(BOOST_CLBL_TRTS_CC *)(Args...)
64 using add_noexcept = Return(BOOST_CLBL_TRTS_CC *)(Args...)
70 using remove_transaction_safe = Return(BOOST_CLBL_TRTS_CC *)(Args...)
73 using add_transaction_safe = Return(BOOST_CLBL_TRTS_CC *)(Args...)
[all …]
Dfunction_ptr_varargs_3.hpp31 template<typename Return, typename... Args>
32 struct function<BOOST_CLBL_TRTS_ST Return(BOOST_CLBL_TRTS_VARARGS_CC *)(Args..., ...)
43 using return_type = Return;
49 BOOST_CLBL_TRTS_ST Return(BOOST_CLBL_TRTS_VARARGS_CC *)(Args..., ...)
53 using function_type = Return(Args..., ...);
58 BOOST_CLBL_TRTS_ST Return(BOOST_CLBL_TRTS_CC *)(Args...)
65 using remove_noexcept = BOOST_CLBL_TRTS_ST Return(BOOST_CLBL_TRTS_CC *)(Args..., ...)
68 using add_noexcept = BOOST_CLBL_TRTS_ST Return(BOOST_CLBL_TRTS_CC *)(Args..., ...)
74 using remove_transaction_safe = Return(BOOST_CLBL_TRTS_VARARGS_CC *)(Args..., ...)
77 using add_transaction_safe = Return(BOOST_CLBL_TRTS_VARARGS_CC *)(Args..., ...)
[all …]
Dpmf_4.hpp32 template<typename Return, typename T, typename... Args>
33 struct pmf<Return(BOOST_CLBL_TRTS_CC T::*)(Args...)
43 using return_type = Return;
45 using type = Return(BOOST_CLBL_TRTS_CC T::*)(Args...)
59 using function_object_signature = Return(Args...);
61 using function_type = Return(invoke_type, Args...);
63 using qualified_function_type = Return(Args...)
71 Return(BOOST_CLBL_TRTS_VARARGS_CC T::*)(Args..., ...)
78 using remove_noexcept = Return(BOOST_CLBL_TRTS_CC T::*)(Args...)
82 using add_noexcept = Return(BOOST_CLBL_TRTS_CC T::*)(Args...)
[all …]
Dpmf_varargs_4.hpp32 template<typename Return, typename T, typename... Args>
33 struct pmf<Return(BOOST_CLBL_TRTS_VARARGS_CC T::*)(Args..., ...)
45 using return_type = Return;
47 using type = Return(BOOST_CLBL_TRTS_VARARGS_CC T::*)(Args..., ...)
61 using function_object_signature = Return(Args..., ...);
63 using function_type = Return(invoke_type, Args..., ...);
65 using qualified_function_type = Return(Args..., ...)
71 Return(BOOST_CLBL_TRTS_CC T::*)(Args...)
80 using remove_noexcept = Return(BOOST_CLBL_TRTS_CC T::*)(Args..., ...)
84 using add_noexcept = Return(BOOST_CLBL_TRTS_CC T::*)(Args..., ...)
[all …]
/third_party/boost/boost/dll/detail/
Dget_mem_fn_type.hpp17 template<typename Class, typename Return, typename ...Args>
18 struct get_mem_fn_type<Class, Return(Args...)> {
19 typedef Return (Class::*mem_fn)(Args...);
22 template<typename Class, typename Return, typename ...Args>
23 struct get_mem_fn_type<const Class, Return(Args...)> {
24 typedef Return (Class::*mem_fn)(Args...) const ;
27 template<typename Class, typename Return, typename ...Args>
28 struct get_mem_fn_type<volatile Class, Return(Args...)> {
29 typedef Return (Class::*mem_fn)(Args...) volatile;
32 template<typename Class, typename Return, typename ...Args>
[all …]
Dimport_mangled_helpers.hpp73 template <class Return, class...Args, class T2, class ...Ts>
74 struct function_tuple<Return(Args...), T2, Ts...>
77 Return(*f_)(Args...);
79 constexpr function_tuple(Return(* t)(Args...), T2* t2, Ts* ... ts) in function_tuple()
84 Return operator()(Args...args) const { in operator ()()
90 template <class Return, class...Args>
91 struct function_tuple<Return(Args...)> {
92 Return(*f_)(Args...);
94 constexpr function_tuple(Return(* t)(Args...)) in function_tuple()
98 Return operator()(Args...args) const { in operator ()()
[all …]
/third_party/abseil-cpp/absl/random/
Dmocking_bit_gen_test.cc30 using ::testing::Return;
37 .WillOnce(Return(20)); in TEST()
42 .WillOnce(Return(5.0)); in TEST()
47 .WillOnce(Return(42)); in TEST()
51 EXPECT_CALL(absl::MockPoisson<int>(), Call(gen, 1.0)).WillOnce(Return(500)); in TEST()
56 .WillOnce(Return(true)); in TEST()
61 .WillOnce(Return(1221)); in TEST()
66 .WillOnce(Return(0.001)); in TEST()
71 .WillOnce(Return(500000)); in TEST()
80 .WillByDefault(Return(20)); in TEST()
[all …]
Dmock_distributions_test.cc22 using ::testing::Return;
29 .WillOnce(Return(20)); in TEST()
34 .WillOnce(Return(5.0)); in TEST()
39 .WillOnce(Return(42)); in TEST()
43 EXPECT_CALL(absl::MockPoisson<int>(), Call(gen, 1.0)).WillOnce(Return(500)); in TEST()
48 .WillOnce(Return(true)); in TEST()
53 .WillOnce(Return(0.567)); in TEST()
58 .WillOnce(Return(1221)); in TEST()
63 .WillOnce(Return(0.001)); in TEST()
68 .WillOnce(Return(2040)); in TEST()
/third_party/python/Doc/library/
Dsymtable.rst26 Return the toplevel :class:`SymbolTable` for the Python source *code*.
40 Return the type of the symbol table. Possible values are ``'class'``,
45 Return the table's identifier.
49 Return the table's name. This is the name of the class if the table is
55 Return the number of the first line in the block this table represents.
59 Return ``True`` if the locals in this table can be optimized.
63 Return ``True`` if the block is a nested class or function.
67 Return ``True`` if the block has nested namespaces within it. These can
72 Return a list of names of symbols in this table.
80 Return a list of :class:`Symbol` instances for names in the table.
[all …]
/third_party/abseil-cpp/absl/base/internal/
Dperiodic_sampler_test.cc30 using testing::Return;
44 EXPECT_CALL(sampler, period()).Times(3).WillRepeatedly(Return(16)); in TEST()
46 .WillOnce(Return(2)) in TEST()
47 .WillOnce(Return(3)) in TEST()
48 .WillOnce(Return(4)); in TEST()
65 EXPECT_CALL(sampler, period()).Times(2).WillRepeatedly(Return(16)); in TEST()
67 .WillOnce(Return(1)) in TEST()
68 .WillOnce(Return(2)) in TEST()
69 .WillOnce(Return(3)); in TEST()
83 EXPECT_CALL(sampler, period()).Times(3).WillRepeatedly(Return(0)); in TEST()
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/base/internal/
Dperiodic_sampler_test.cc30 using testing::Return;
44 EXPECT_CALL(sampler, period()).Times(3).WillRepeatedly(Return(16)); in TEST()
46 .WillOnce(Return(2)) in TEST()
47 .WillOnce(Return(3)) in TEST()
48 .WillOnce(Return(4)); in TEST()
65 EXPECT_CALL(sampler, period()).Times(2).WillRepeatedly(Return(16)); in TEST()
67 .WillOnce(Return(1)) in TEST()
68 .WillOnce(Return(2)) in TEST()
69 .WillOnce(Return(3)); in TEST()
83 EXPECT_CALL(sampler, period()).Times(3).WillRepeatedly(Return(0)); in TEST()
[all …]
/third_party/googletest/googlemock/test/
Dgmock-spec-builders_test.cc92 using testing::Return;
214 ON_CALL(cc, Method()).WillByDefault(Return(42)); in TEST()
228 EXPECT_CALL(cc, Method()).WillOnce(Return(42)); in TEST()
258 .WillByDefault(Return()); in TEST()
261 .WillByDefault(Return()); in TEST()
271 .WillByDefault(Return(Result())); in TEST()
289 .WillByDefault(Return()) in TEST()
290 .WillByDefault(Return()); in TEST()
351 .WillOnce(Return()) in TEST()
362 .WillOnce(Return()); in TEST()
[all …]
Dgmock_link_test.h169 using testing::Return;
250 EXPECT_CALL(mock, VoidFromString(_)).WillOnce(Return()); in TEST()
259 EXPECT_CALL(mock, StringFromString(_)).WillOnce(Return(&ch)); in TEST()
267 EXPECT_CALL(mock, VoidFromString(_)).WillOnce(Return()); in TEST()
379 EXPECT_CALL(mock, VoidFromString(_)).WillOnce(WithoutArgs(Return())); in TEST()
389 .WillOnce(DoAll(SetArgPointee<0>('y'), Return())); in TEST()
398 ON_CALL(mock, VoidFromString(_)).WillByDefault(Return()); in TEST()
407 EXPECT_CALL(mock, VoidFromString(_)).WillOnce(IgnoreResult(Return(42))); in TEST()
479 ON_CALL(mock, VoidFromString(_)).WillByDefault(Return()); in TEST()
486 ON_CALL(mock, VoidFromString(A<char*>())).WillByDefault(Return()); in TEST()
[all …]
Dgmock-function-mocker_test.cc64 using testing::Return;
306 .WillOnce(Return(1)); in TYPED_TEST()
314 EXPECT_CALL(this->mock_foo_, Unary(Eq(2))).Times(2).WillOnce(Return(true)); in TYPED_TEST()
322 EXPECT_CALL(this->mock_foo_, Binary(2, _)).WillOnce(Return(3)); in TYPED_TEST()
331 .WillOnce(Return(5)); in TYPED_TEST()
340 .WillOnce(Return(true)); in TYPED_TEST()
349 .WillOnce(Return("Hello")); in TYPED_TEST()
364 .WillOnce(Return(1)); in TYPED_TEST()
366 .WillOnce(Return(2)); in TYPED_TEST()
375 .WillOnce(Return(1)); in TYPED_TEST()
[all …]
/third_party/python/Doc/c-api/
Ddatetime.rst30 Return true if *ob* is of type :c:data:`PyDateTime_DateType` or a subtype of
37 Return true if *ob* is of type :c:data:`PyDateTime_DateType`. *ob* must not be
43 Return true if *ob* is of type :c:data:`PyDateTime_DateTimeType` or a subtype of
50 Return true if *ob* is of type :c:data:`PyDateTime_DateTimeType`. *ob* must not
56 Return true if *ob* is of type :c:data:`PyDateTime_TimeType` or a subtype of
63 Return true if *ob* is of type :c:data:`PyDateTime_TimeType`. *ob* must not be
69 Return true if *ob* is of type :c:data:`PyDateTime_DeltaType` or a subtype of
76 Return true if *ob* is of type :c:data:`PyDateTime_DeltaType`. *ob* must not be
82 Return true if *ob* is of type :c:data:`PyDateTime_TZInfoType` or a subtype of
89 Return true if *ob* is of type :c:data:`PyDateTime_TZInfoType`. *ob* must not be
[all …]
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
DCoroutine.hpp114 template<typename Return, typename... Arguments>
115 class Coroutine<Return(Arguments...)>
147 std::unique_ptr<Stream<Return>> operator()(Arguments...);
155 template<typename Return, typename... Arguments>
156 Coroutine<Return(Arguments...)>::Coroutine() in Coroutine()
168 Nucleus::createCoroutine(CToReactorT<Return>::type(), arguments); in Coroutine()
171 template<typename Return, typename... Arguments>
172 void Coroutine<Return(Arguments...)>::finalize(const char *name /*= "coroutine"*/, const Config::Ed… in finalize()
181 template<typename Return, typename... Arguments>
182 std::unique_ptr<Stream<Return>>
[all …]
/third_party/glslang/Test/baseResults/
Dhlsl.logicalConvert.frag.out13 0:4 Branch: Return with expression
24 0:6 Branch: Return with expression
35 0:8 Branch: Return with expression
46 0:10 Branch: Return with expression
57 0:12 Branch: Return with expression
68 0:14 Branch: Return with expression
79 0:16 Branch: Return with expression
90 0:18 Branch: Return with expression
101 0:20 Branch: Return with expression
112 0:22 Branch: Return with expression
[all …]
/third_party/protobuf/src/google/protobuf/util/internal/
Dexpecting_objectwriter.h67 using testing::Return;
105 .WillOnce(Return(mock_)) in StartObject()
112 .WillOnce(Return(mock_)) in EndObject()
120 .WillOnce(Return(mock_)) in StartList()
127 .WillOnce(Return(mock_)) in EndList()
137 .WillOnce(Return(mock_)) in RenderBool()
147 .WillOnce(Return(mock_)) in RenderInt32()
157 .WillOnce(Return(mock_)) in RenderUint32()
167 .WillOnce(Return(mock_)) in RenderInt64()
177 .WillOnce(Return(mock_)) in RenderUint64()
[all …]

12345678910>>...90