OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ReturnT
(Results
1 - 6
of
6
) sorted by null
/external/webrtc/webrtc/base/
messagehandler.h
38
template <class
ReturnT
, class FunctorT>
46
const
ReturnT
& result() const { return result_; }
50
ReturnT
result_;
53
// Specialization for rtc::scoped_ptr<
ReturnT
>.
54
template <class
ReturnT
, class FunctorT>
55
class FunctorMessageHandler<class rtc::scoped_ptr<
ReturnT
>, FunctorT>
60
rtc::scoped_ptr<
ReturnT
> result() { return std::move(result_); }
64
rtc::scoped_ptr<
ReturnT
> result_;
67
// Specialization for
ReturnT
of void.
asyncinvoker.h
76
template <class
ReturnT
, class FunctorT>
85
template <class
ReturnT
, class FunctorT>
96
template <class
ReturnT
, class FunctorT, class HostT>
99
void (HostT::*callback)(
ReturnT
),
103
new RefCountedObject<NotifyingAsyncClosure<
ReturnT
, FunctorT, HostT> >(
110
template <class
ReturnT
, class FunctorT, class HostT>
165
template <class
ReturnT
, class FunctorT>
170
invoker_.AsyncInvoke<
ReturnT
, FunctorT>(thread_, functor, id);
176
template <class
ReturnT
, class FunctorT>
183
invoker_.AsyncInvokeDelayed<
ReturnT
, FunctorT>(thread_, functor, delay_ms
[
all
...]
asyncinvoker-inl.h
79
template <class
ReturnT
, class FunctorT, class HostT>
85
void (HostT::*callback)(
ReturnT
),
92
ReturnT
result = functor_();
101
void (HostT::*callback_)(
ReturnT
);
thread.h
152
// provide the |
ReturnT
| template argument, which cannot (easily) be deduced.
158
template <class
ReturnT
, class FunctorT>
159
ReturnT
Invoke(const FunctorT& functor) {
161
FunctorMessageHandler<
ReturnT
, FunctorT> handler(functor);
/external/llvm/unittests/ExecutionEngine/Orc/
OrcTestCommon.h
159
template <typename
ReturnT
>
162
DoNothingAndReturn(
ReturnT
Val) : Val(Val) {}
165
ReturnT
operator()(Args...) const { return Val; }
167
ReturnT
Val;
/external/clang/lib/Sema/
SemaOverload.cpp
[
all
...]
Completed in 4486 milliseconds