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

1234

/external/chromium/chrome/browser/policy/
H A Dmock_configuration_policy_store.cc10 using ::testing::Invoke;
14 Invoke(this, &MockConfigurationPolicyStore::ApplyToMap));
H A Ddevice_management_service_browsertest.cc20 using testing::Invoke;
102 .WillOnce(DoAll(Invoke(this, &DeviceManagementServiceIntegrationTest
153 .WillOnce(DoAll(Invoke(this, &DeviceManagementServiceIntegrationTest
/external/webkit/Source/WebKit/mac/Plugins/Hosted/
H A DWebKitPluginHostTypes.h46 Invoke, enumerator in enum:InvokeType
/external/clang/test/SemaCXX/
H A Dtypo-correction.cpp134 Invoke(); // expected-error{{use of undeclared identifier 'Invoke'}}
135 Invoke("foo"); // expected-error{{use of undeclared identifier 'Invoke'; did you mean 'revoke'?}}
136 Invoke("foo", "bar"); // expected-error{{use of undeclared identifier 'Invoke'}}
139 Invoke(); // expected-error{{use of undeclared identifier 'Invoke'}}
140 Invoke("foo"); // expected-error{{use of undeclared identifier 'Invoke'; di
[all...]
/external/chromium/chrome/browser/chromeos/login/
H A Dmock_auth_response_handler.cc18 using ::testing::Invoke;
33 .WillByDefault(Invoke(this, &MockAuthResponseHandler::MockNetwork));
H A Dsigned_settings_helper_unittest.cc22 using ::testing::Invoke;
130 .WillOnce(WithArg<1>(Invoke(&SignedSettingsHelperTest::OnKeyOpComplete)));
138 .WillOnce(WithArg<1>(Invoke(&SignedSettingsHelperTest::OnKeyOpComplete)));
143 .WillOnce(WithArg<1>(Invoke(&SignedSettingsHelperTest::OnKeyOpComplete)));
181 .WillOnce(WithArg<1>(Invoke(&SignedSettingsHelperTest::OnKeyOpComplete)));
189 .WillOnce(WithArg<1>(Invoke(&SignedSettingsHelperTest::OnKeyOpComplete)));
197 .WillOnce(WithArg<1>(Invoke(&SignedSettingsHelperTest::OnKeyOpComplete)));
H A Donline_attempt_unittest.cc24 using ::testing::Invoke;
127 .WillOnce(Invoke(OnlineAttemptTest::Quit))
154 .WillOnce(Invoke(OnlineAttemptTest::Quit))
185 .WillOnce(Invoke(OnlineAttemptTest::Quit))
211 .WillOnce(Invoke(OnlineAttemptTest::Quit))
H A Dparallel_authenticator_unittest.cc38 using ::testing::Invoke;
155 .WillByDefault(Invoke(MockConsumer::OnFailQuitAndFail));
162 .WillByDefault(Invoke(MockConsumer::OnSuccessQuitAndFail));
169 .WillByDefault(Invoke(MockConsumer::OnGuestSuccessQuitAndFail));
174 .WillOnce(Invoke(MockConsumer::OnFailQuit))
183 .WillOnce(Invoke(MockConsumer::OnSuccessQuit))
189 .WillOnce(Invoke(MockConsumer::OnGuestSuccessQuit))
195 .WillOnce(Invoke(MockConsumer::OnMigrateQuit))
/external/chromium/base/
H A Dstring_number_conversions.cc145 static bool Invoke(char c) { function in class:base::__anon1733::WhitespaceHelper
152 static bool Invoke(char16 c) { function in class:base::__anon1733::WhitespaceHelper
158 return WhitespaceHelper<CHAR>::Invoke(c);
176 static bool Invoke(const_iterator begin, function in class:base::__anon1733::IteratorRangeToNumber
187 if (!Negative::Invoke(begin + 1, end, output)) {
194 if (!Positive::Invoke(begin, end, output)) {
211 static bool Invoke(const_iterator begin, const_iterator end, function in class:base::__anon1733::IteratorRangeToNumber::Base
392 return IteratorRangeToNumber<IteratorRangeToIntTraits>::Invoke(input.begin(),
401 return IteratorRangeToNumber<IteratorRangeToIntTraits>::Invoke(begin,
408 return IteratorRangeToNumber<CharBufferToIntTraits>::Invoke(begi
[all...]
/external/chromium/chrome/browser/chromeos/cros/
H A Dmock_cryptohome_library.h14 using ::testing::Invoke;
30 WithArgs<2>(Invoke(this, &MockCryptohomeLibrary::DoCallback)));
33 WithArgs<3>(Invoke(this, &MockCryptohomeLibrary::DoCallback)));
36 WithArgs<3>(Invoke(this, &MockCryptohomeLibrary::DoCallback)));
39 WithArgs<0>(Invoke(this, &MockCryptohomeLibrary::DoCallback)));
42 WithArgs<1>(Invoke(this, &MockCryptohomeLibrary::DoCallback)));
45 WithArgs<0>(Invoke(this, &MockCryptohomeLibrary::DoCallback)));
H A Dmock_mount_library.cc15 using testing::Invoke;
36 .WillByDefault(Invoke(this, &MockMountLibrary::AddObserverInternal));
38 .WillByDefault(Invoke(this, &MockMountLibrary::RemoveObserverInternal));
40 .WillByDefault(Invoke(this, &MockMountLibrary::disksInternal));
/external/chromium/chrome/browser/sync/engine/
H A Dsyncer_thread2_unittest.cc22 using testing::Invoke;
210 .WillOnce(DoAll(Invoke(sessions::test_util::SimulateSuccess),
228 .WillOnce(DoAll(Invoke(sessions::test_util::SimulateSuccess),
250 .WillOnce(DoAll(Invoke(sessions::test_util::SimulateSuccess),
277 .WillOnce(DoAll(Invoke(sessions::test_util::SimulateCommitFailed),
279 .WillOnce(DoAll(Invoke(sessions::test_util::SimulateSuccess),
310 .WillOnce(DoAll(Invoke(sessions::test_util::SimulateCommitFailed),
312 .WillOnce(DoAll(Invoke(sessions::test_util::SimulateCommitFailed),
314 .WillOnce(DoAll(Invoke(sessions::test_util::SimulateSuccess),
348 .WillOnce(DoAll(Invoke(session
[all...]
/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/chromium/testing/gmock/test/
H A Dgmock-more-actions_test.cc58 using testing::Invoke;
75 // Sample functions and functors for testing Invoke() and etc.
232 // Tests using Invoke() with a nullary function.
234 Action<int()> a = Invoke(Nullary); // NOLINT
238 // Tests using Invoke() with a unary function.
240 Action<bool(int)> a = Invoke(Unary); // NOLINT
245 // Tests using Invoke() with a binary function.
247 Action<const char*(const char*, short)> a = Invoke(Binary); // NOLINT
252 // Tests using Invoke() with a ternary function.
254 Action<int(int, char, short)> a = Invoke(Ternar
[all...]
H A Dgmock-nice-strict_test.cc128 .WillByDefault(Invoke(nice_foo, &MockFoo::Delete));
240 .WillByDefault(Invoke(strict_foo, &MockFoo::Delete));
H A Dgmock-generated-actions_test.cc58 using testing::Invoke;
286 Action<bool(double x, int n)> a = WithArgs<1>(Invoke(Unary)); // NOLINT
294 WithArgs<0, 2>(Invoke(Binary));
302 WithArgs<0, 2, 3>(Invoke(Ternary));
309 WithArgs<4, 3, 1, 0>(Invoke(Concat4));
318 WithArgs<4, 3, 2, 1, 0>(Invoke(Concat5));
327 WithArgs<0, 1, 2, 2, 1, 0>(Invoke(Concat6));
335 WithArgs<0, 1, 2, 3, 2, 1, 0>(Invoke(Concat7));
344 WithArgs<0, 1, 2, 3, 0, 1, 2, 3>(Invoke(Concat8));
353 WithArgs<0, 1, 2, 3, 1, 2, 3, 2, 3>(Invoke(Concat
[all...]
/external/chromium/chrome/browser/extensions/
H A Dextension_messages_browsertest.cc26 RendererExtensionBindings::Invoke(
33 RendererExtensionBindings::Invoke(
41 RendererExtensionBindings::Invoke(
H A Dsandboxed_extension_unpacker_unittest.cc24 using testing::Invoke;
51 .WillByDefault(Invoke(::OnUnpackSuccess));
/external/chromium/testing/gmock/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
H A Dgmock-generated-function-mockers.h71 R Invoke() { function in class:testing::internal::FunctionMocker
92 R Invoke(A1 a1) { function in class:testing::internal::FunctionMocker
113 R Invoke(A1 a1, A2 a2) { function in class:testing::internal::FunctionMocker
135 R Invoke(A1 a1, A2 a2, A3 a3) { function in class:testing::internal::FunctionMocker
157 R Invoke(A1 a1, A2 a2, A3 a3, A4 a4) { function in class:testing::internal::FunctionMocker
181 R Invoke(A1 a1, A2 a2, A3 a3, A4 a4, A5 a5) { function in class:testing::internal::FunctionMocker
206 R Invoke(A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6) { function in class:testing::internal::FunctionMocker
231 R Invoke(A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7) { function in class:testing::internal::FunctionMocker
256 R Invoke(A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7, A8 a8) { function in class:testing::internal::FunctionMocker
282 R Invoke(A function in class:testing::internal::FunctionMocker
309 R Invoke(A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7, A8 a8, A9 a9, function in class:testing::internal::FunctionMocker
[all...]
/external/chromium/webkit/glue/
H A Dcpp_variant.h102 // Invoke method of the given name on an object with the supplied arguments.
107 bool Invoke(const std::string& method, const CppVariant* args,
/external/chromium/webkit/glue/media/
H A Dbuffered_data_source_unittest.cc23 using ::testing::Invoke;
112 Invoke(this,
246 Invoke(this,
291 Invoke(this,
305 Invoke(this,
315 Invoke(this,
343 Invoke(this,
379 Invoke(this,
387 Invoke(this,
/external/chromium/chrome/browser/chromeos/
H A Dupdate_browsertest.cc21 using ::testing::Invoke;
108 .WillRepeatedly(Invoke(&observers,
/external/chromium/testing/gmock/scripts/
H A Dgmock_doctor.py96 'Invoke',
303 r'\'Invoke\(<unresolved overloaded function type>')
305 r'function for call to \'Invoke\'\r?\n'
311 Function you are passing to Invoke is overloaded. Please tell your compiler
317 Invoke(static_cast<bool (*)(int n, double x)>(MyFunction))"""
328 r'call to \'Invoke\(.+, <unresolved overloaded function '
331 r'for call to \'Invoke\'\r?\n'
337 The second argument you gave to Invoke() is an overloaded method. Please
346 Invoke(foo, static_cast<bool (Foo::*)(int n, double x)>(&Foo::Bar))"""
/external/chromium/chrome/browser/download/
H A Ddownload_manager_unittest.cc343 using ::testing::Invoke;
370 .WillOnce(testing::WithArgs<0>(Invoke(CreateFunctor(
373 .WillOnce(testing::WithArgs<0>(Invoke(CreateFunctor(
399 using ::testing::Invoke;
465 using ::testing::Invoke;
522 using ::testing::Invoke;

Completed in 391 milliseconds

1234