Searched refs:ConstMethodCall (Results 1 – 1 of 1) sorted by relevance
/external/webrtc/api/ |
D | proxy.h | 147 class ConstMethodCall : public rtc::Message, public rtc::MessageHandler { 150 ConstMethodCall(const C* c, Method m, Args&&... args) in ConstMethodCall() function 301 ConstMethodCall<C, r> call(c_, &C::method); \ 313 ConstMethodCall<C, r, t1> call(c_, &C::method, std::move(a1)); \ 356 ConstMethodCall<C, r> call(c_, &C::method); \ 368 ConstMethodCall<C, r, t1> call(c_, &C::method, std::move(a1)); \ 381 ConstMethodCall<C, r, t1, t2> call(c_, &C::method, std::move(a1), \ 395 ConstMethodCall<C, r, t1, t2, t3> call(c_, &C::method, std::move(a1), \
|