Searched refs:Invoke (Results 1 - 25 of 161) sorted by relevance

1234567

/external/webrtc/webrtc/modules/audio_coding/neteq/mock/
H A Dmock_external_decoder_pcm16b.h24 using ::testing::Invoke;
55 .WillByDefault(Invoke(&real_, &ExternalPcm16B::DecodeInternal));
57 .WillByDefault(Invoke(&real_, &ExternalPcm16B::HasDecodePlc));
59 .WillByDefault(Invoke(&real_, &ExternalPcm16B::DecodePlc));
61 .WillByDefault(Invoke(&real_, &ExternalPcm16B::Reset));
63 .WillByDefault(Invoke(&real_, &ExternalPcm16B::IncomingPacket));
65 .WillByDefault(Invoke(&real_, &ExternalPcm16B::ErrorCode));
/external/webrtc/talk/session/media/
H A Dchannelmanager.cc126 worker_thread_->Invoke<void>(Bind(
196 worker_thread_->Invoke<bool>(rtc::Bind(
200 initialized_ = worker_thread_->Invoke<bool>(Bind(
228 worker_thread_->Invoke<void>(Bind(&ChannelManager::Terminate_w, this));
256 return worker_thread_->Invoke<VoiceChannel*>(
289 worker_thread_->Invoke<void>(
314 return worker_thread_->Invoke<VideoChannel*>(
347 worker_thread_->Invoke<void>(
372 return worker_thread_->Invoke<DataChannel*>(
406 worker_thread_->Invoke<voi
[all...]
/external/libbrillo/brillo/message_loops/
H A Dmock_message_loop.h36 .WillByDefault(::testing::Invoke(
45 .WillByDefault(::testing::Invoke(
52 .WillByDefault(::testing::Invoke(&fake_loop_,
55 .WillByDefault(::testing::Invoke(&fake_loop_,
/external/webrtc/talk/app/webrtc/
H A Dproxy.h67 void Invoke(C* c, M m) { r_ = (c->*m)(); } function in class:webrtc::ReturnType
69 void Invoke(C* c, M m, T1 a1) { r_ = (c->*m)(a1); } function in class:webrtc::ReturnType
71 void Invoke(C* c, M m, T1 a1, T2 a2) { r_ = (c->*m)(a1, a2); } function in class:webrtc::ReturnType
73 void Invoke(C* c, M m, T1 a1, T2 a2, T3 a3) { r_ = (c->*m)(a1, a2, a3); } function in class:webrtc::ReturnType
76 void Invoke(C* c, M m, T1 a1, T2 a2, T3 a3, T4 a4) { function in class:webrtc::ReturnType
81 void Invoke(C* c, M m, T1 a1, T2 a2, T3 a3, T4 a4, T5 a5) { function in class:webrtc::ReturnType
95 void Invoke(C* c, M m) { (c->*m)(); } function in class:webrtc::ReturnType
97 void Invoke(C* c, M m, T1 a1) { (c->*m)(a1); } function in class:webrtc::ReturnType
99 void Invoke(C* c, M m, T1 a1, T2 a2) { (c->*m)(a1, a2); } function in class:webrtc::ReturnType
101 void Invoke( function in class:webrtc::ReturnType
116 void Invoke(rtc::Thread* t) { function in class:webrtc::internal::SynchronousMethodCall
[all...]
H A Dmediacontroller.cc48 worker_thread_->Invoke<void>(
53 worker_thread_->Invoke<void>(rtc::Bind(&MediaController::Destruct_w, this));
/external/libbrillo/brillo/dbus/
H A Ddbus_param_reader_unittest.cc24 EXPECT_TRUE(DBusParamReader<false>::Invoke(callback, &reader, nullptr));
39 (DBusParamReader<false, int>::Invoke(callback, &reader, nullptr)));
59 EXPECT_TRUE((DBusParamReader<false, bool, int, VariantDictionary>::Invoke(
80 (DBusParamReader<false, bool, int>::Invoke(callback, &reader, &error)));
100 (DBusParamReader<false, bool, int>::Invoke(callback, &reader, &error)));
121 DBusParamReader<false, bool, double>::Invoke(callback, &reader, &error)));
137 (DBusParamReader<true, int*>::Invoke(callback, &reader, nullptr)));
153 DBusParamReader<true, int, double*>::Invoke(callback, &reader, nullptr)));
169 DBusParamReader<true, double*, int>::Invoke(callback, &reader, nullptr)));
203 bool*>::Invoke(callbac
[all...]
H A Ddbus_param_reader.h11 // arguments to the back to the next call to DBusInvoke::Invoke's arguments as
47 // DBusParamReader::Invoke() is a member function that actually extracts the
55 static bool Invoke(const CallbackType& handler, function in struct:brillo::dbus_utils::DBusParamReader
100 // Call DBusParamReader::Invoke() to process the rest of parameters.
104 // all the parameters to the arguments of Invoke() and append the current
108 return DBusParamReader<allow_out_params, RestOfParams...>::Invoke(
128 // Call DBusParamReader::Invoke() to process the rest of parameters.
132 // all the parameters to the arguments of Invoke() and append the current
134 return DBusParamReader<allow_out_params, RestOfParams...>::Invoke(
147 static bool Invoke(cons function in struct:brillo::dbus_utils::DBusParamReader
[all...]
H A Ddbus_signal_handler.h47 // DBusParamReader::Invoke() needs a functor object, not a base::Callback.
56 DBusParamReader<false, Args...>::Invoke(
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DTypeExtensions.cs79 return method.Invoke( obj, parameters );
97 return type.GetConstructor( new Type[0] ).Invoke( new object[0] );
/external/google-breakpad/src/testing/test/
H A Dgmock-more-actions_test.cc58 using testing::Invoke;
75 // Sample functions and functors for testing Invoke() and etc.
233 // Tests using Invoke() with a nullary function.
235 Action<int()> a = Invoke(Nullary); // NOLINT
239 // Tests using Invoke() with a unary function.
241 Action<bool(int)> a = Invoke(Unary); // NOLINT
246 // Tests using Invoke() with a binary function.
248 Action<const char*(const char*, short)> a = Invoke(Binary); // NOLINT
253 // Tests using Invoke() with a ternary function.
255 Action<int(int, char, short)> a = Invoke(Ternar
[all...]
/external/googletest/googlemock/test/
H A Dgmock-more-actions_test.cc58 using testing::Invoke;
75 // Sample functions and functors for testing Invoke() and etc.
233 // Tests using Invoke() with a nullary function.
235 Action<int()> a = Invoke(Nullary); // NOLINT
239 // Tests using Invoke() with a unary function.
241 Action<bool(int)> a = Invoke(Unary); // NOLINT
246 // Tests using Invoke() with a binary function.
248 Action<const char*(const char*, short)> a = Invoke(Binary); // NOLINT
253 // Tests using Invoke() with a ternary function.
255 Action<int(int, char, short)> a = Invoke(Ternar
[all...]
/external/libese/esed/tests/
H A Dlibese.h27 using ::testing::Invoke;
41 return Invoke([response](const std::vector<uint8_t>& /* tx */, std::vector<uint8_t>& rx) {
/external/v8/testing/gmock/test/
H A Dgmock-more-actions_test.cc58 using testing::Invoke;
75 // Sample functions and functors for testing Invoke() and etc.
233 // Tests using Invoke() with a nullary function.
235 Action<int()> a = Invoke(Nullary); // NOLINT
239 // Tests using Invoke() with a unary function.
241 Action<bool(int)> a = Invoke(Unary); // NOLINT
246 // Tests using Invoke() with a binary function.
248 Action<const char*(const char*, short)> a = Invoke(Binary); // NOLINT
253 // Tests using Invoke() with a ternary function.
255 Action<int(int, char, short)> a = Invoke(Ternar
[all...]
/external/webrtc/webrtc/modules/audio_processing/
H A Daudio_processing_impl_unittest.cc19 using ::testing::Invoke;
39 .WillByDefault(Invoke(&mock, &MockInitialize::RealInitializeLocked));
/external/webrtc/webrtc/modules/remote_bitrate_estimator/
H A Dremote_estimator_proxy_unittest.cc21 using ::testing::Invoke;
66 .WillOnce(Invoke([this](rtcp::TransportFeedback* packet) {
92 .WillOnce(Invoke([this](rtcp::TransportFeedback* packet) {
128 .WillOnce(Invoke([kTooLargeDelta, this](rtcp::TransportFeedback* packet) {
147 .WillOnce(Invoke([kTooLargeDelta, this](rtcp::TransportFeedback* packet) {
174 .WillOnce(Invoke([this](rtcp::TransportFeedback* packet) {
192 .WillOnce(Invoke([this](rtcp::TransportFeedback* packet) {
216 .WillOnce(Invoke([kTimeoutTimeMs, this](rtcp::TransportFeedback* packet) {
232 .WillOnce(Invoke([kTimeoutTimeMs, this](rtcp::TransportFeedback* packet) {
252 .WillOnce(Invoke([kTimeoutTimeM
[all...]
/external/libchrome/base/strings/
H A Dstring_number_conversions.cc104 static bool Invoke(char c) { function in class:base::__anon9989::WhitespaceHelper
111 static bool Invoke(char16 c) { function in class:base::__anon9989::WhitespaceHelper
117 return WhitespaceHelper<CHAR>::Invoke(c);
135 static bool Invoke(const_iterator begin, function in class:base::__anon9989::IteratorRangeToNumber
149 } else if (!Negative::Invoke(begin + 1, end, output)) {
156 if (!Positive::Invoke(begin, end, output)) {
173 static bool Invoke(const_iterator begin, const_iterator end, function in class:base::__anon9989::IteratorRangeToNumber::Base
310 return IteratorRangeToNumber<StringPieceToNumberTraits<VALUE, 10> >::Invoke(
323 return IteratorRangeToNumber<StringPiece16ToNumberTraits<VALUE, 10> >::Invoke(
466 return IteratorRangeToNumber<HexIteratorRangeToIntTraits>::Invoke(
[all...]
/external/flatbuffers/tests/FlatBuffers.Test/
H A DProgram.cs45 method.Invoke(inst, new object[] { });
/external/libchrome/base/
H A Dbind_internal.h150 Invoke(const Functor& functor, RunArgs&&... args) { function in struct:base::internal::FunctorTraits
163 static R Invoke(R (*function)(Args...), RunArgs&&... args) { function in struct:base::internal::FunctorTraits
178 static R Invoke(R(__stdcall* function)(Args...), RunArgs&&... args) {
191 static R Invoke(R(__fastcall* function)(Args...), RunArgs&&... args) {
206 static R Invoke(R (Receiver::*method)(Args...),
226 static R Invoke(R (Receiver::*method)(Args...) const,
245 static void Invoke(IgnoreResultType&& ignore_result_helper, function in struct:base::internal::FunctorTraits
247 FunctorTraits<T>::Invoke(ignore_result_helper.functor_,
260 static R Invoke(CallbackType&& callback, RunArgs&&... args) { function in struct:base::internal::FunctorTraits
283 return Traits::Invoke(st
[all...]
/external/mdnsresponder/mDNSWindows/DLLX/
H A D_IDNSSDEvents_CP.h37 hr = pConnection->Invoke(1, IID_NULL, LOCALE_USER_DEFAULT, DISPATCH_METHOD, &params, NULL, NULL, NULL);
66 hr = pConnection->Invoke(2, IID_NULL, LOCALE_USER_DEFAULT, DISPATCH_METHOD, &params, NULL, NULL, NULL);
99 hr = pConnection->Invoke(3, IID_NULL, LOCALE_USER_DEFAULT, DISPATCH_METHOD, &params, NULL, NULL, NULL);
132 hr = pConnection->Invoke(4, IID_NULL, LOCALE_USER_DEFAULT, DISPATCH_METHOD, &params, NULL, NULL, NULL);
166 hr = pConnection->Invoke(5, IID_NULL, LOCALE_USER_DEFAULT, DISPATCH_METHOD, &params, NULL, NULL, NULL);
197 hr = pConnection->Invoke(6, IID_NULL, LOCALE_USER_DEFAULT, DISPATCH_METHOD, &params, NULL, NULL, NULL);
231 hr = pConnection->Invoke(7, IID_NULL, LOCALE_USER_DEFAULT, DISPATCH_METHOD, &params, NULL, NULL, NULL);
256 hr = pConnection->Invoke(8, IID_NULL, LOCALE_USER_DEFAULT, DISPATCH_METHOD, &params, NULL, NULL, NULL);
290 hr = pConnection->Invoke(9, IID_NULL, LOCALE_USER_DEFAULT, DISPATCH_METHOD, &params, NULL, NULL, NULL);
327 hr = pConnection->Invoke(1
[all...]
/external/webrtc/webrtc/modules/desktop_capture/
H A Dscreen_capturer_mac_unittest.cc80 .WillOnce(Invoke(this, &ScreenCapturerMacTest::CaptureDoneCallback1))
81 .WillOnce(Invoke(this, &ScreenCapturerMacTest::CaptureDoneCallback2));
/external/webrtc/webrtc/base/
H A Dthread_unittest.cc171 // Function objects to test Thread::Invoke.
267 TEST(ThreadTest, Invoke) {
272 EXPECT_EQ(42, thread.Invoke<int>(FunctorA()));
275 thread.Invoke<void>(f2);
282 EXPECT_EQ(999, thread.Invoke<int>(&LocalFuncs::Func1));
283 thread.Invoke<void>(&LocalFuncs::Func2);
286 // Verifies that two threads calling Invoke on each other at the same time does
299 thread->Invoke<void>(Bind(&Set, out));
304 other_thread.Invoke<void>(
342 thread->Invoke<voi
[all...]
/external/webrtc/webrtc/p2p/base/
H A Dtransportcontroller.cc48 worker_thread_->Invoke<void>(
55 return worker_thread_->Invoke<bool>(rtc::Bind(
60 worker_thread_->Invoke<void>(
65 worker_thread_->Invoke<void>(
71 return worker_thread_->Invoke<bool>(rtc::Bind(
77 return worker_thread_->Invoke<bool>(rtc::Bind(
84 return worker_thread_->Invoke<bool>(
92 return worker_thread_->Invoke<bool>(
102 return worker_thread_->Invoke<bool>(
112 return worker_thread_->Invoke<boo
[all...]
/external/clang/test/SemaCXX/
H A Dtypo-correction.cpp139 Invoke(); // expected-error{{use of undeclared identifier 'Invoke'}}
140 Invoke("foo"); // expected-error{{use of undeclared identifier 'Invoke'; did you mean 'revoke'?}}
141 Invoke("foo", "bar"); // expected-error{{use of undeclared identifier 'Invoke'}}
144 Invoke(); // expected-error{{use of undeclared identifier 'Invoke'}}
145 Invoke("foo"); // expected-error{{use of undeclared identifier 'Invoke'; di
[all...]
/external/google-breakpad/src/testing/include/gmock/
H A Dgmock-more-actions.h46 // Implements the Invoke(f) action. The template argument
48 // function pointer or a functor. Invoke(f) can be used as an
61 return InvokeHelper<Result, ArgumentTuple>::Invoke(function_impl_, args);
70 // Implements the Invoke(object_ptr, &Class::Method) action.
92 // Various overloads for Invoke().
97 PolymorphicAction<internal::InvokeAction<FunctionImpl> > Invoke( function in namespace:testing
106 PolymorphicAction<internal::InvokeMethodAction<Class, MethodPtr> > Invoke( function in namespace:testing
/external/googletest/googlemock/include/gmock/
H A Dgmock-more-actions.h46 // Implements the Invoke(f) action. The template argument
48 // function pointer or a functor. Invoke(f) can be used as an
61 return InvokeHelper<Result, ArgumentTuple>::Invoke(function_impl_, args);
70 // Implements the Invoke(object_ptr, &Class::Method) action.
109 // Various overloads for Invoke().
114 PolymorphicAction<internal::InvokeAction<FunctionImpl> > Invoke( function in namespace:testing
123 PolymorphicAction<internal::InvokeMethodAction<Class, MethodPtr> > Invoke( function in namespace:testing

Completed in 1716 milliseconds

1234567