HomeSort by relevance Sort by last modified time
    Searched refs:Invoke (Results 1 - 25 of 319) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium/chrome/browser/policy/
mock_configuration_policy_store.cc 10 using ::testing::Invoke;
14 Invoke(this, &MockConfigurationPolicyStore::ApplyToMap));
device_management_service_browsertest.cc 20 using testing::Invoke;
102 .WillOnce(DoAll(Invoke(this, &DeviceManagementServiceIntegrationTest
153 .WillOnce(DoAll(Invoke(this, &DeviceManagementServiceIntegrationTest
  /external/webkit/Source/WebKit/mac/Plugins/Hosted/
WebKitPluginHostTypes.h 46 Invoke,
  /external/clang/test/SemaCXX/
typo-correction.cpp 134 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'}}
138 void Test2(void (*invoke)(const char *, int)) { // expected-note{{'invoke' declared here}}
139 Invoke(); // expected-error{{use of undeclared identifier 'Invoke'}}
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
mock_auth_response_handler.cc 18 using ::testing::Invoke;
33 .WillByDefault(Invoke(this, &MockAuthResponseHandler::MockNetwork));
signed_settings_helper_unittest.cc 22 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)));
online_attempt_unittest.cc 24 using ::testing::Invoke;
127 .WillOnce(Invoke(OnlineAttemptTest::Quit))
154 .WillOnce(Invoke(OnlineAttemptTest::Quit))
185 .WillOnce(Invoke(OnlineAttemptTest::Quit))
211 .WillOnce(Invoke(OnlineAttemptTest::Quit))
parallel_authenticator_unittest.cc 38 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/
string_number_conversions.cc 145 static bool Invoke(char c) {
152 static bool Invoke(char16 c) {
158 return WhitespaceHelper<CHAR>::Invoke(c);
176 static bool Invoke(const_iterator begin,
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,
392 return IteratorRangeToNumber<IteratorRangeToIntTraits>::Invoke(input.begin(),
401 return IteratorRangeToNumber<IteratorRangeToIntTraits>::Invoke(begin,
408 return IteratorRangeToNumber<CharBufferToIntTraits>::Invoke(begin
    [all...]
  /external/chromium/chrome/browser/chromeos/cros/
mock_cryptohome_library.h 14 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)));
mock_mount_library.cc 15 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/
syncer_thread2_unittest.cc 22 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(sessions::test_util::SimulateCommitFailed)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
TypeExtensions.cs 77 public static object invoke( this MethodInfo method, object obj, params object[] parameters ) method in class:Antlr.Runtime.JavaExtensions.TypeExtensions
79 return method.Invoke( obj, parameters );
97 return type.GetConstructor( new Type[0] ).Invoke( new object[0] );
  /external/chromium/testing/gmock/test/
gmock-more-actions_test.cc 58 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(Ternary); // NOLIN
    [all...]
gmock-nice-strict_test.cc 128 .WillByDefault(Invoke(nice_foo, &MockFoo::Delete));
240 .WillByDefault(Invoke(strict_foo, &MockFoo::Delete));
  /frameworks/rs/
rsScriptIntrinsic.h 51 virtual void Invoke(Context *rsc, uint32_t slot, const void *data, size_t len);
rsScriptC.h 43 virtual void Invoke(Context *rsc, uint32_t slot, const void *data, size_t len);
rsScriptIntrinsic.cpp 66 void ScriptIntrinsic::Invoke(Context *rsc, uint32_t slot, const void *data, size_t len) {
  /external/chromium/chrome/browser/extensions/
extension_messages_browsertest.cc 26 RendererExtensionBindings::Invoke(
33 RendererExtensionBindings::Invoke(
41 RendererExtensionBindings::Invoke(
sandboxed_extension_unpacker_unittest.cc 24 using testing::Invoke;
51 .WillByDefault(Invoke(::OnUnpackSuccess));
  /external/chromium/testing/gmock/include/gmock/
gmock-more-actions.h 46 // 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(
106 PolymorphicAction<internal::InvokeMethodAction<Class, MethodPtr> > Invoke(
gmock-generated-function-mockers.h 71 R Invoke() {
92 R Invoke(A1 a1) {
113 R Invoke(A1 a1, A2 a2) {
135 R Invoke(A1 a1, A2 a2, A3 a3) {
157 R Invoke(A1 a1, A2 a2, A3 a3, A4 a4) {
181 R Invoke(A1 a1, A2 a2, A3 a3, A4 a4, A5 a5) {
206 R Invoke(A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6) {
231 R Invoke(A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7) {
256 R Invoke(A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7, A8 a8) {
282 R Invoke(A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7, A8 a8, A9 a9)
    [all...]
  /external/chromium/webkit/glue/
cpp_variant.h 102 // 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/
buffered_data_source_unittest.cc 23 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/
update_browsertest.cc 21 using ::testing::Invoke;
108 .WillRepeatedly(Invoke(&observers,

Completed in 529 milliseconds

1 2 3 4 5 6 7 8 91011>>